From 25ae70ffa11f2f93a6090b1bb29b218abfe2c6b2 Mon Sep 17 00:00:00 2001 From: Abdulhakim Ajetunmobi Date: Fri, 24 Jan 2025 17:21:26 +0000 Subject: [PATCH 1/2] add terminal image --- .../.astro/collections/docs.schema.json | 628 ++++++++++++++++++ .../.astro/content-assets.mjs | 1 + .../.astro/content-modules.mjs | 4 + .../messages_api-node-sms/.astro/content.d.ts | 183 +++++ .../.astro/data-store.json | 1 + .../.astro/settings.json | 2 +- .../messages_api-node-sms/.astro/types.d.ts | 2 +- .../messages_api-node-sms/public/terminal.png | Bin 0 -> 42309 bytes .../src/content/docs/02-install-server-sdk.md | 8 +- .../tutorial-config.json | 2 +- 10 files changed, 826 insertions(+), 5 deletions(-) create mode 100644 tutorials/messages_api-node-sms/.astro/collections/docs.schema.json create mode 100644 tutorials/messages_api-node-sms/.astro/content-assets.mjs create mode 100644 tutorials/messages_api-node-sms/.astro/content-modules.mjs create mode 100644 tutorials/messages_api-node-sms/.astro/content.d.ts create mode 100644 tutorials/messages_api-node-sms/.astro/data-store.json create mode 100644 tutorials/messages_api-node-sms/public/terminal.png diff --git a/tutorials/messages_api-node-sms/.astro/collections/docs.schema.json b/tutorials/messages_api-node-sms/.astro/collections/docs.schema.json new file mode 100644 index 0000000..5d3f7ec --- /dev/null +++ b/tutorials/messages_api-node-sms/.astro/collections/docs.schema.json @@ -0,0 +1,628 @@ +{ + "$ref": "#/definitions/docs", + "definitions": { + "docs": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "editUrl": { + "anyOf": [ + { + "type": "string", + "format": "uri" + }, + { + "type": "boolean" + } + ], + "default": true + }, + "head": { + "type": "array", + "items": { + "type": "object", + "properties": { + "tag": { + "type": "string", + "enum": [ + "title", + "base", + "link", + "style", + "meta", + "script", + "noscript", + "template" + ] + }, + "attrs": { + "type": "object", + "additionalProperties": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "boolean" + }, + { + "not": {} + } + ] + }, + "default": {} + }, + "content": { + "type": "string", + "default": "" + } + }, + "required": [ + "tag" + ], + "additionalProperties": false + }, + "default": [] + }, + "tableOfContents": { + "anyOf": [ + { + "type": "object", + "properties": { + "minHeadingLevel": { + "type": "integer", + "minimum": 1, + "maximum": 6, + "default": 2 + }, + "maxHeadingLevel": { + "type": "integer", + "minimum": 1, + "maximum": 6, + "default": 3 + } + }, + "additionalProperties": false + }, + { + "type": "boolean" + } + ], + "default": { + "minHeadingLevel": 2, + "maxHeadingLevel": 3 + } + }, + "template": { + "type": "string", + "enum": [ + "doc", + "splash" + ], + "default": "doc" + }, + "hero": { + "type": "object", + "properties": { + "title": { + "type": "string" + }, + "tagline": { + "type": "string" + }, + "image": { + "anyOf": [ + { + "type": "object", + "properties": { + "alt": { + "type": "string", + "default": "" + }, + "file": { + "type": "string" + } + }, + "required": [ + "file" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "alt": { + "type": "string", + "default": "" + }, + "dark": { + "type": "string" + }, + "light": { + "type": "string" + } + }, + "required": [ + "dark", + "light" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "html": { + "type": "string" + } + }, + "required": [ + "html" + ], + "additionalProperties": false + } + ] + }, + "actions": { + "type": "array", + "items": { + "type": "object", + "properties": { + "text": { + "type": "string" + }, + "link": { + "type": "string" + }, + "variant": { + "type": "string", + "enum": [ + "primary", + "secondary", + "minimal" + ], + "default": "primary" + }, + "icon": { + "anyOf": [ + { + "type": "string", + "enum": [ + "up-caret", + "down-caret", + "right-caret", + "right-arrow", + "left-arrow", + "bars", + "translate", + "pencil", + "pen", + "document", + "add-document", + "setting", + "external", + "moon", + "sun", + "laptop", + "open-book", + "information", + "magnifier", + "forward-slash", + "close", + "error", + "warning", + "approve-check-circle", + "approve-check", + "rocket", + "star", + "puzzle", + "list-format", + "random", + "comment", + "comment-alt", + "heart", + "github", + "gitlab", + "bitbucket", + "codePen", + "farcaster", + "discord", + "gitter", + "twitter", + "x.com", + "mastodon", + "codeberg", + "youtube", + "threads", + "linkedin", + "twitch", + "azureDevOps", + "microsoftTeams", + "instagram", + "stackOverflow", + "telegram", + "rss", + "facebook", + "email", + "phone", + "reddit", + "patreon", + "signal", + "slack", + "matrix", + "hackerOne", + "openCollective", + "blueSky", + "discourse", + "zulip", + "pinterest", + "tiktok", + "astro", + "alpine", + "pnpm", + "biome", + "bun", + "mdx", + "apple", + "linux", + "homebrew", + "nix", + "starlight", + "pkl", + "node", + "cloudflare", + "vercel", + "netlify", + "deno", + "jsr", + "nostr", + "backstage", + "seti:folder", + "seti:bsl", + "seti:mdo", + "seti:salesforce", + "seti:asm", + "seti:bicep", + "seti:bazel", + "seti:c", + "seti:c-sharp", + "seti:html", + "seti:cpp", + "seti:clojure", + "seti:coldfusion", + "seti:config", + "seti:crystal", + "seti:crystal_embedded", + "seti:json", + "seti:css", + "seti:csv", + "seti:xls", + "seti:cu", + "seti:cake", + "seti:cake_php", + "seti:d", + "seti:word", + "seti:elixir", + "seti:elixir_script", + "seti:hex", + "seti:elm", + "seti:favicon", + "seti:f-sharp", + "seti:git", + "seti:go", + "seti:godot", + "seti:gradle", + "seti:grails", + "seti:graphql", + "seti:hacklang", + "seti:haml", + "seti:mustache", + "seti:haskell", + "seti:haxe", + "seti:jade", + "seti:java", + "seti:javascript", + "seti:jinja", + "seti:julia", + "seti:karma", + "seti:kotlin", + "seti:dart", + "seti:liquid", + "seti:livescript", + "seti:lua", + "seti:markdown", + "seti:argdown", + "seti:info", + "seti:clock", + "seti:maven", + "seti:nim", + "seti:github", + "seti:notebook", + "seti:nunjucks", + "seti:npm", + "seti:ocaml", + "seti:odata", + "seti:perl", + "seti:php", + "seti:pipeline", + "seti:pddl", + "seti:plan", + "seti:happenings", + "seti:powershell", + "seti:prisma", + "seti:pug", + "seti:puppet", + "seti:purescript", + "seti:python", + "seti:react", + "seti:rescript", + "seti:R", + "seti:ruby", + "seti:rust", + "seti:sass", + "seti:spring", + "seti:slim", + "seti:smarty", + "seti:sbt", + "seti:scala", + "seti:ethereum", + "seti:stylus", + "seti:svelte", + "seti:swift", + "seti:db", + "seti:terraform", + "seti:tex", + "seti:default", + "seti:twig", + "seti:typescript", + "seti:tsconfig", + "seti:vala", + "seti:vite", + "seti:vue", + "seti:wasm", + "seti:wat", + "seti:xml", + "seti:yml", + "seti:prolog", + "seti:zig", + "seti:zip", + "seti:wgt", + "seti:illustrator", + "seti:photoshop", + "seti:pdf", + "seti:font", + "seti:image", + "seti:svg", + "seti:sublime", + "seti:code-search", + "seti:shell", + "seti:video", + "seti:audio", + "seti:windows", + "seti:jenkins", + "seti:babel", + "seti:bower", + "seti:docker", + "seti:code-climate", + "seti:eslint", + "seti:firebase", + "seti:firefox", + "seti:gitlab", + "seti:grunt", + "seti:gulp", + "seti:ionic", + "seti:platformio", + "seti:rollup", + "seti:stylelint", + "seti:yarn", + "seti:webpack", + "seti:lock", + "seti:license", + "seti:makefile", + "seti:heroku", + "seti:todo", + "seti:ignored" + ] + }, + { + "type": "string", + "pattern": "^\\ import("astro:content-layer-deferred-module?astro%3Acontent-layer-deferred-module=&fileName=src%2Fcontent%2Fdocs%2Findex.mdx&astroContentModuleFlag=true")]]); + \ No newline at end of file diff --git a/tutorials/messages_api-node-sms/.astro/content.d.ts b/tutorials/messages_api-node-sms/.astro/content.d.ts new file mode 100644 index 0000000..76b5fca --- /dev/null +++ b/tutorials/messages_api-node-sms/.astro/content.d.ts @@ -0,0 +1,183 @@ +declare module 'astro:content' { + interface Render { + '.mdoc': Promise<{ + Content(props: Record): import('astro').MarkdownInstance<{}>['Content']; + headings: import('astro').MarkdownHeading[]; + }>; + } +} + +declare module 'astro:content' { + interface Render { + '.mdx': Promise<{ + Content: import('astro').MarkdownInstance<{}>['Content']; + headings: import('astro').MarkdownHeading[]; + remarkPluginFrontmatter: Record; + components: import('astro').MDXInstance<{}>['components']; + }>; + } +} + +declare module 'astro:content' { + export interface RenderResult { + Content: import('astro/runtime/server/index.js').AstroComponentFactory; + headings: import('astro').MarkdownHeading[]; + remarkPluginFrontmatter: Record; + } + interface Render { + '.md': Promise; + } + + export interface RenderedContent { + html: string; + metadata?: { + imagePaths: Array; + [key: string]: unknown; + }; + } +} + +declare module 'astro:content' { + type Flatten = T extends { [K: string]: infer U } ? U : never; + + export type CollectionKey = keyof AnyEntryMap; + export type CollectionEntry = Flatten; + + export type ContentCollectionKey = keyof ContentEntryMap; + export type DataCollectionKey = keyof DataEntryMap; + + type AllValuesOf = T extends any ? T[keyof T] : never; + type ValidContentEntrySlug = AllValuesOf< + ContentEntryMap[C] + >['slug']; + + /** @deprecated Use `getEntry` instead. */ + export function getEntryBySlug< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >( + collection: C, + // Note that this has to accept a regular string too, for SSR + entrySlug: E, + ): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + + /** @deprecated Use `getEntry` instead. */ + export function getDataEntryById( + collection: C, + entryId: E, + ): Promise>; + + export function getCollection>( + collection: C, + filter?: (entry: CollectionEntry) => entry is E, + ): Promise; + export function getCollection( + collection: C, + filter?: (entry: CollectionEntry) => unknown, + ): Promise[]>; + + export function getEntry< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >(entry: { + collection: C; + slug: E; + }): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + export function getEntry< + C extends keyof DataEntryMap, + E extends keyof DataEntryMap[C] | (string & {}), + >(entry: { + collection: C; + id: E; + }): E extends keyof DataEntryMap[C] + ? Promise + : Promise | undefined>; + export function getEntry< + C extends keyof ContentEntryMap, + E extends ValidContentEntrySlug | (string & {}), + >( + collection: C, + slug: E, + ): E extends ValidContentEntrySlug + ? Promise> + : Promise | undefined>; + export function getEntry< + C extends keyof DataEntryMap, + E extends keyof DataEntryMap[C] | (string & {}), + >( + collection: C, + id: E, + ): E extends keyof DataEntryMap[C] + ? string extends keyof DataEntryMap[C] + ? Promise | undefined + : Promise + : Promise | undefined>; + + /** Resolve an array of entry references from the same collection */ + export function getEntries( + entries: { + collection: C; + slug: ValidContentEntrySlug; + }[], + ): Promise[]>; + export function getEntries( + entries: { + collection: C; + id: keyof DataEntryMap[C]; + }[], + ): Promise[]>; + + export function render( + entry: AnyEntryMap[C][string], + ): Promise; + + export function reference( + collection: C, + ): import('astro/zod').ZodEffects< + import('astro/zod').ZodString, + C extends keyof ContentEntryMap + ? { + collection: C; + slug: ValidContentEntrySlug; + } + : { + collection: C; + id: keyof DataEntryMap[C]; + } + >; + // Allow generic `string` to avoid excessive type errors in the config + // if `dev` is not running to update as you edit. + // Invalid collection names will be caught at build time. + export function reference( + collection: C, + ): import('astro/zod').ZodEffects; + + type ReturnTypeOrOriginal = T extends (...args: any[]) => infer R ? R : T; + type InferEntrySchema = import('astro/zod').infer< + ReturnTypeOrOriginal['schema']> + >; + + type ContentEntryMap = { + + }; + + type DataEntryMap = { + "docs": Record; + rendered?: RenderedContent; + filePath?: string; +}>; + + }; + + type AnyEntryMap = ContentEntryMap & DataEntryMap; + + export type ContentConfig = typeof import("../src/content.config.js"); +} diff --git a/tutorials/messages_api-node-sms/.astro/data-store.json b/tutorials/messages_api-node-sms/.astro/data-store.json new file mode 100644 index 0000000..b031037 --- /dev/null +++ b/tutorials/messages_api-node-sms/.astro/data-store.json @@ -0,0 +1 @@ +[["Map",1,2,9,10],"meta::meta",["Map",3,4,5,6,7,8],"astro-version","5.1.3","content-config-digest","a30a942a2ceda2e1","astro-config-digest","{\"root\":{},\"srcDir\":{},\"publicDir\":{},\"outDir\":{},\"cacheDir\":{},\"compressHTML\":true,\"base\":\"/\",\"trailingSlash\":\"ignore\",\"output\":\"static\",\"scopedStyleStrategy\":\"where\",\"build\":{\"format\":\"directory\",\"client\":{},\"server\":{},\"assets\":\"_astro\",\"serverEntry\":\"entry.mjs\",\"redirects\":true,\"inlineStylesheets\":\"auto\",\"concurrency\":1},\"server\":{\"open\":false,\"host\":false,\"port\":4321,\"streaming\":true},\"redirects\":{},\"image\":{\"endpoint\":{\"route\":\"/_image\"},\"service\":{\"entrypoint\":\"astro/assets/services/sharp\",\"config\":{}},\"domains\":[],\"remotePatterns\":[]},\"devToolbar\":{\"enabled\":true},\"markdown\":{\"syntaxHighlight\":false,\"shikiConfig\":{\"langs\":[],\"langAlias\":{},\"theme\":\"css-variables\",\"themes\":{},\"wrap\":false,\"transformers\":[]},\"remarkPlugins\":[null,null,null],\"rehypePlugins\":[null,[null,{\"themes\":[{\"name\":\"Night Owl No Italics\",\"type\":\"dark\",\"colors\":{\"focusBorder\":\"#122d42\",\"foreground\":\"#d6deeb\",\"disabledForeground\":\"#cccccc80\",\"descriptionForeground\":\"#d6deebb3\",\"errorForeground\":\"#ef5350\",\"icon.foreground\":\"#c5c5c5\",\"contrastActiveBorder\":null,\"contrastBorder\":\"#122d42\",\"textBlockQuote.background\":\"#7f7f7f1a\",\"textBlockQuote.border\":\"#007acc80\",\"textCodeBlock.background\":\"#4f4f4f\",\"textLink.activeForeground\":\"#3794ff\",\"textLink.foreground\":\"#3794ff\",\"textPreformat.foreground\":\"#d7ba7d\",\"textSeparator.foreground\":\"#ffffff2e\",\"editor.background\":\"#011627\",\"editor.foreground\":\"#d6deeb\",\"editorLineNumber.foreground\":\"#4b6479\",\"editorLineNumber.activeForeground\":\"#c5e4fd\",\"editorActiveLineNumber.foreground\":\"#c6c6c6\",\"editor.selectionBackground\":\"#1d3b53\",\"editor.inactiveSelectionBackground\":\"#7e57c25a\",\"editor.selectionHighlightBackground\":\"#5f7e9779\",\"editorError.foreground\":\"#ef5350\",\"editorWarning.foreground\":\"#b39554\",\"editorInfo.foreground\":\"#3794ff\",\"editorHint.foreground\":\"#eeeeeeb2\",\"problemsErrorIcon.foreground\":\"#ef5350\",\"problemsWarningIcon.foreground\":\"#b39554\",\"problemsInfoIcon.foreground\":\"#3794ff\",\"editor.findMatchBackground\":\"#5f7e9779\",\"editor.findMatchHighlightBackground\":\"#1085bb5d\",\"editor.findRangeHighlightBackground\":\"#3a3d4166\",\"editorLink.activeForeground\":\"#4e94ce\",\"editorLightBulb.foreground\":\"#ffcc00\",\"editorLightBulbAutoFix.foreground\":\"#75beff\",\"diffEditor.insertedTextBackground\":\"#99b76d23\",\"diffEditor.insertedTextBorder\":\"#c5e47833\",\"diffEditor.removedTextBackground\":\"#ef535033\",\"diffEditor.removedTextBorder\":\"#ef53504d\",\"diffEditor.insertedLineBackground\":\"#9bb95533\",\"diffEditor.removedLineBackground\":\"#ff000033\",\"editorStickyScroll.background\":\"#011627\",\"editorStickyScrollHover.background\":\"#2a2d2e\",\"editorInlayHint.background\":\"#5f7e97cc\",\"editorInlayHint.foreground\":\"#ffffff\",\"editorInlayHint.typeBackground\":\"#5f7e97cc\",\"editorInlayHint.typeForeground\":\"#ffffff\",\"editorInlayHint.parameterBackground\":\"#5f7e97cc\",\"editorInlayHint.parameterForeground\":\"#ffffff\",\"editorPane.background\":\"#011627\",\"editorGroup.emptyBackground\":\"#011627\",\"editorGroup.focusedEmptyBorder\":null,\"editorGroupHeader.tabsBackground\":\"var(--sl-color-black)\",\"editorGroupHeader.tabsBorder\":\"color-mix(in srgb, var(--sl-color-gray-5), transparent 25%)\",\"editorGroupHeader.noTabsBackground\":\"#011627\",\"editorGroupHeader.border\":null,\"editorGroup.border\":\"#011627\",\"editorGroup.dropBackground\":\"#7e57c273\",\"editorGroup.dropIntoPromptForeground\":\"#d6deeb\",\"editorGroup.dropIntoPromptBackground\":\"#021320\",\"editorGroup.dropIntoPromptBorder\":null,\"sideBySideEditor.horizontalBorder\":\"#011627\",\"sideBySideEditor.verticalBorder\":\"#011627\",\"scrollbar.shadow\":\"#010b14\",\"scrollbarSlider.background\":\"#ffffff17\",\"scrollbarSlider.hoverBackground\":\"#ffffff40\",\"scrollbarSlider.activeBackground\":\"#084d8180\",\"panel.background\":\"#011627\",\"panel.border\":\"#5f7e97\",\"panelTitle.activeBorder\":\"#5f7e97\",\"panelTitle.activeForeground\":\"#ffffffcc\",\"panelTitle.inactiveForeground\":\"#d6deeb80\",\"panelSectionHeader.background\":\"#80808051\",\"terminal.background\":\"#011627\",\"widget.shadow\":\"#011627\",\"editorWidget.background\":\"#021320\",\"editorWidget.foreground\":\"#d6deeb\",\"editorWidget.border\":\"#5f7e97\",\"quickInput.background\":\"#021320\",\"quickInput.foreground\":\"#d6deeb\",\"quickInputTitle.background\":\"#ffffff1a\",\"pickerGroup.foreground\":\"#d1aaff\",\"pickerGroup.border\":\"#011627\",\"editor.hoverHighlightBackground\":\"#7e57c25a\",\"editorHoverWidget.background\":\"#011627\",\"editorHoverWidget.foreground\":\"#d6deeb\",\"editorHoverWidget.border\":\"#5f7e97\",\"editorHoverWidget.statusBarBackground\":\"#011a2f\",\"titleBar.activeBackground\":\"var(--sl-color-black)\",\"titleBar.activeForeground\":\"var(--sl-color-text)\",\"titleBar.inactiveBackground\":\"#010e1a\",\"titleBar.inactiveForeground\":\"#eeefff99\",\"titleBar.border\":\"color-mix(in srgb, var(--sl-color-gray-5), transparent 25%)\",\"toolbar.hoverBackground\":\"#5a5d5e50\",\"toolbar.activeBackground\":\"#63666750\",\"tab.activeBackground\":\"#0b2942\",\"tab.unfocusedActiveBackground\":\"#0b2942\",\"tab.inactiveBackground\":\"#01111d\",\"tab.unfocusedInactiveBackground\":\"#01111d\",\"tab.activeForeground\":\"var(--sl-color-text)\",\"tab.inactiveForeground\":\"#5f7e97\",\"tab.unfocusedActiveForeground\":\"#5f7e97\",\"tab.unfocusedInactiveForeground\":\"#5f7e97\",\"tab.hoverBackground\":null,\"tab.unfocusedHoverBackground\":null,\"tab.hoverForeground\":null,\"tab.unfocusedHoverForeground\":null,\"tab.border\":\"#272b3b\",\"tab.lastPinnedBorder\":\"#585858\",\"tab.activeBorder\":\"transparent\",\"tab.unfocusedActiveBorder\":\"#262a39\",\"tab.activeBorderTop\":\"var(--sl-color-accent-high)\",\"tab.unfocusedActiveBorderTop\":null,\"tab.hoverBorder\":null,\"tab.unfocusedHoverBorder\":null,\"tab.activeModifiedBorder\":\"#3399cc\",\"tab.inactiveModifiedBorder\":\"#3399cc80\",\"tab.unfocusedActiveModifiedBorder\":\"#3399cc80\",\"tab.unfocusedInactiveModifiedBorder\":\"#3399cc40\",\"badge.background\":\"#5f7e97\",\"badge.foreground\":\"#ffffff\",\"button.background\":\"#7e57c2cc\",\"button.foreground\":\"#ffffffcc\",\"button.border\":\"#122d42\",\"button.separator\":\"#ffffff52\",\"button.hoverBackground\":\"#7e57c2\",\"button.secondaryBackground\":\"#3a3d41\",\"button.secondaryForeground\":\"#ffffff\",\"button.secondaryHoverBackground\":\"#46494e\",\"dropdown.background\":\"#011627\",\"dropdown.foreground\":\"#ffffffcc\",\"dropdown.border\":\"#5f7e97\",\"list.activeSelectionBackground\":\"#234d708c\",\"list.activeSelectionForeground\":\"#ffffff\",\"tree.indentGuidesStroke\":\"#585858\",\"input.background\":\"#0b253a\",\"input.foreground\":\"#ffffffcc\",\"input.placeholderForeground\":\"#5f7e97\",\"inputOption.activeBorder\":\"#ffffffcc\",\"inputOption.hoverBackground\":\"#5a5d5e80\",\"inputOption.activeBackground\":\"#122d4266\",\"inputOption.activeForeground\":\"#ffffff\",\"inputValidation.infoBackground\":\"#00589ef2\",\"inputValidation.infoBorder\":\"#64b5f6\",\"inputValidation.warningBackground\":\"#675700f2\",\"inputValidation.warningBorder\":\"#ffca28\",\"inputValidation.errorBackground\":\"#ab0300f2\",\"inputValidation.errorBorder\":\"#ef5350\",\"keybindingLabel.background\":\"#8080802b\",\"keybindingLabel.foreground\":\"#cccccc\",\"keybindingLabel.border\":\"#33333399\",\"keybindingLabel.bottomBorder\":\"#44444499\",\"menu.foreground\":\"#ffffffcc\",\"menu.background\":\"#011627\",\"menu.selectionForeground\":\"#ffffff\",\"menu.selectionBackground\":\"#234d708c\",\"menu.separatorBackground\":\"#606060\",\"editor.snippetTabstopHighlightBackground\":\"#7c7c74c\",\"editor.snippetFinalTabstopHighlightBorder\":\"#525252\",\"terminal.ansiBlack\":\"#011627\",\"terminal.ansiRed\":\"#ef5350\",\"terminal.ansiGreen\":\"#22da6e\",\"terminal.ansiYellow\":\"#c5e478\",\"terminal.ansiBlue\":\"#82aaff\",\"terminal.ansiMagenta\":\"#c792ea\",\"terminal.ansiCyan\":\"#21c7a8\",\"terminal.ansiWhite\":\"#ffffff\",\"terminal.ansiBrightBlack\":\"#575656\",\"terminal.ansiBrightRed\":\"#ef5350\",\"terminal.ansiBrightGreen\":\"#22da6e\",\"terminal.ansiBrightYellow\":\"#ffeb95\",\"terminal.ansiBrightBlue\":\"#82aaff\",\"terminal.ansiBrightMagenta\":\"#c792ea\",\"terminal.ansiBrightCyan\":\"#7fdbca\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"selection.background\":\"#4373c2\",\"input.border\":\"#5f7e97\",\"punctuation.definition.generic.begin.html\":\"#ef5350f2\",\"progress.background\":\"#7e57c2\",\"breadcrumb.foreground\":\"#a599e9\",\"breadcrumb.focusForeground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#ffffff\",\"breadcrumbPicker.background\":\"#001122\",\"list.invalidItemForeground\":\"#975f94\",\"list.dropBackground\":\"#011627\",\"list.focusBackground\":\"#010d18\",\"list.focusForeground\":\"#ffffff\",\"list.highlightForeground\":\"#ffffff\",\"list.hoverBackground\":\"#011627\",\"list.hoverForeground\":\"#ffffff\",\"list.inactiveSelectionBackground\":\"#0e293f\",\"list.inactiveSelectionForeground\":\"#5f7e97\",\"activityBar.background\":\"#011627\",\"activityBar.dropBackground\":\"#5f7e97\",\"activityBar.foreground\":\"#5f7e97\",\"activityBar.border\":\"#011627\",\"activityBarBadge.background\":\"#44596b\",\"activityBarBadge.foreground\":\"#ffffff\",\"sideBar.background\":\"#011627\",\"sideBar.foreground\":\"#89a4bb\",\"sideBar.border\":\"#011627\",\"sideBarTitle.foreground\":\"#5f7e97\",\"sideBarSectionHeader.background\":\"#011627\",\"sideBarSectionHeader.foreground\":\"#5f7e97\",\"editorCursor.foreground\":\"#80a4c2\",\"editor.wordHighlightBackground\":\"#f6bbe533\",\"editor.wordHighlightStrongBackground\":\"#e2a2f433\",\"editor.lineHighlightBackground\":\"#0003\",\"editor.rangeHighlightBackground\":\"#7e57c25a\",\"editorIndentGuide.background\":\"#5e81ce52\",\"editorIndentGuide.activeBackground\":\"#7e97ac\",\"editorRuler.foreground\":\"#5e81ce52\",\"editorCodeLens.foreground\":\"#5e82ceb4\",\"editorBracketMatch.background\":\"#5f7e974d\",\"editorOverviewRuler.currentContentForeground\":\"#7e57c2\",\"editorOverviewRuler.incomingContentForeground\":\"#7e57c2\",\"editorOverviewRuler.commonContentForeground\":\"#7e57c2\",\"editorGutter.background\":\"#011627\",\"editorGutter.modifiedBackground\":\"#e2b93d\",\"editorGutter.addedBackground\":\"#9ccc65\",\"editorGutter.deletedBackground\":\"#ef5350\",\"editorSuggestWidget.background\":\"#2c3043\",\"editorSuggestWidget.border\":\"#2b2f40\",\"editorSuggestWidget.foreground\":\"#d6deeb\",\"editorSuggestWidget.highlightForeground\":\"#ffffff\",\"editorSuggestWidget.selectedBackground\":\"#5f7e97\",\"debugExceptionWidget.background\":\"#011627\",\"debugExceptionWidget.border\":\"#5f7e97\",\"editorMarkerNavigation.background\":\"#0b2942\",\"editorMarkerNavigationError.background\":\"#ef5350\",\"editorMarkerNavigationWarning.background\":\"#ffca28\",\"peekView.border\":\"#5f7e97\",\"peekViewEditor.background\":\"#011627\",\"peekViewEditor.matchHighlightBackground\":\"#7e57c25a\",\"peekViewResult.background\":\"#011627\",\"peekViewResult.fileForeground\":\"#5f7e97\",\"peekViewResult.lineForeground\":\"#5f7e97\",\"peekViewResult.matchHighlightBackground\":\"#ffffffcc\",\"peekViewResult.selectionBackground\":\"#2e3250\",\"peekViewResult.selectionForeground\":\"#5f7e97\",\"peekViewTitle.background\":\"#011627\",\"peekViewTitleDescription.foreground\":\"#697098\",\"peekViewTitleLabel.foreground\":\"#5f7e97\",\"merge.currentHeaderBackground\":\"#5f7e97\",\"merge.incomingHeaderBackground\":\"#7e57c25a\",\"statusBar.background\":\"#011627\",\"statusBar.foreground\":\"#5f7e97\",\"statusBar.border\":\"#262a39\",\"statusBar.debuggingBackground\":\"#202431\",\"statusBar.debuggingBorder\":\"#1f2330\",\"statusBar.noFolderBackground\":\"#011627\",\"statusBar.noFolderBorder\":\"#25293a\",\"statusBarItem.activeBackground\":\"#202431\",\"statusBarItem.hoverBackground\":\"#202431\",\"statusBarItem.prominentBackground\":\"#202431\",\"statusBarItem.prominentHoverBackground\":\"#202431\",\"notifications.background\":\"#01111d\",\"notifications.border\":\"#262a39\",\"notificationCenter.border\":\"#262a39\",\"notificationToast.border\":\"#262a39\",\"notifications.foreground\":\"#ffffffcc\",\"notificationLink.foreground\":\"#80cbc4\",\"extensionButton.prominentForeground\":\"#ffffffcc\",\"extensionButton.prominentBackground\":\"#7e57c2cc\",\"extensionButton.prominentHoverBackground\":\"#7e57c2\",\"terminal.selectionBackground\":\"#1b90dd4d\",\"terminalCursor.background\":\"#234d70\",\"debugToolBar.background\":\"#011627\",\"welcomePage.buttonBackground\":\"#011627\",\"welcomePage.buttonHoverBackground\":\"#011627\",\"walkThrough.embeddedEditorBackground\":\"#011627\",\"gitDecoration.modifiedResourceForeground\":\"#a2bffc\",\"gitDecoration.deletedResourceForeground\":\"#ef535090\",\"gitDecoration.untrackedResourceForeground\":\"#c5e478ff\",\"gitDecoration.ignoredResourceForeground\":\"#395a75\",\"gitDecoration.conflictingResourceForeground\":\"#ffeb95cc\",\"source.elm\":\"#5f7e97\",\"string.quoted.single.js\":\"#ffffff\",\"meta.objectliteral.js\":\"#82aaff\"},\"fg\":\"#d6deeb\",\"bg\":\"#23262f\",\"semanticHighlighting\":false,\"settings\":[{\"name\":\"Changed\",\"scope\":[\"markup.changed\",\"meta.diff.header.git\",\"meta.diff.header.from-file\",\"meta.diff.header.to-file\"],\"settings\":{\"foreground\":\"#a2bffc\"}},{\"name\":\"Deleted\",\"scope\":[\"markup.deleted.diff\"],\"settings\":{\"foreground\":\"#f05b58fe\"}},{\"name\":\"Inserted\",\"scope\":[\"markup.inserted.diff\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Global settings\",\"settings\":{\"background\":\"#011627\",\"foreground\":\"#d6deeb\"}},{\"name\":\"Comment\",\"scope\":[\"comment\"],\"settings\":{\"foreground\":\"#809191\",\"fontStyle\":\"\"}},{\"name\":\"String\",\"scope\":[\"string\"],\"settings\":{\"foreground\":\"#ecc48d\"}},{\"name\":\"String Quoted\",\"scope\":[\"string.quoted\",\"variable.other.readwrite.js\"],\"settings\":{\"foreground\":\"#ecc48d\"}},{\"name\":\"Support Constant Math\",\"scope\":[\"support.constant.math\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Number\",\"scope\":[\"constant.numeric\",\"constant.character.numeric\"],\"settings\":{\"foreground\":\"#f78c6c\",\"fontStyle\":\"\"}},{\"name\":\"Built-in constant\",\"scope\":[\"constant.language\",\"punctuation.definition.constant\",\"variable.other.constant\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"User-defined constant\",\"scope\":[\"constant.character\",\"constant.other\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Constant Character Escape\",\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#f78c6c\"}},{\"name\":\"RegExp String\",\"scope\":[\"string.regexp\",\"string.regexp keyword.other\"],\"settings\":{\"foreground\":\"#5ca7e4\"}},{\"name\":\"Comma in functions\",\"scope\":[\"meta.function punctuation.separator.comma\"],\"settings\":{\"foreground\":\"#7690a6\"}},{\"name\":\"Variable\",\"scope\":[\"variable\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Keyword\",\"scope\":[\"punctuation.accessor\",\"keyword\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Storage\",\"scope\":[\"storage\",\"meta.var.expr\",\"meta.class meta.method.declaration meta.var.expr storage.type.js\",\"storage.type.property.js\",\"storage.type.property.ts\",\"storage.type.property.tsx\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Storage type\",\"scope\":[\"storage.type\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"Storage type\",\"scope\":[\"storage.type.function.arrow.js\"],\"settings\":{\"fontStyle\":\"\"}},{\"name\":\"Class name\",\"scope\":[\"entity.name.class\",\"meta.class entity.name.type.class\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"Inherited class\",\"scope\":[\"entity.other.inherited-class\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Function name\",\"scope\":[\"entity.name.function\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Meta Tag\",\"scope\":[\"punctuation.definition.tag\",\"meta.tag\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"HTML Tag names\",\"scope\":[\"entity.name.tag\",\"meta.tag.other.html\",\"meta.tag.other.js\",\"meta.tag.other.tsx\",\"entity.name.tag.tsx\",\"entity.name.tag.js\",\"entity.name.tag\",\"meta.tag.js\",\"meta.tag.tsx\",\"meta.tag.html\"],\"settings\":{\"foreground\":\"#caece6\",\"fontStyle\":\"\"}},{\"name\":\"Tag attribute\",\"scope\":[\"entity.other.attribute-name\"],\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#c5e478\"}},{\"name\":\"Entity Name Tag Custom\",\"scope\":[\"entity.name.tag.custom\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Library (function & constant)\",\"scope\":[\"support.function\",\"support.constant\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Support Constant Property Value meta\",\"scope\":[\"support.constant.meta.property-value\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Library class/type\",\"scope\":[\"support.type\",\"support.class\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Support Variable DOM\",\"scope\":[\"support.variable.dom\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Invalid\",\"scope\":[\"invalid\"],\"settings\":{\"background\":\"#ff2c83\",\"foreground\":\"#ffffff\"}},{\"name\":\"Invalid deprecated\",\"scope\":[\"invalid.deprecated\"],\"settings\":{\"foreground\":\"#ffffff\",\"background\":\"#d3423e\"}},{\"name\":\"Keyword Operator\",\"scope\":[\"keyword.operator\"],\"settings\":{\"foreground\":\"#7fdbca\",\"fontStyle\":\"\"}},{\"name\":\"Keyword Operator Relational\",\"scope\":[\"keyword.operator.relational\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Keyword Operator Assignment\",\"scope\":[\"keyword.operator.assignment\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"Keyword Operator Arithmetic\",\"scope\":[\"keyword.operator.arithmetic\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"Keyword Operator Bitwise\",\"scope\":[\"keyword.operator.bitwise\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"Keyword Operator Increment\",\"scope\":[\"keyword.operator.increment\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"Keyword Operator Ternary\",\"scope\":[\"keyword.operator.ternary\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"Double-Slashed Comment\",\"scope\":[\"comment.line.double-slash\"],\"settings\":{\"foreground\":\"#809191\"}},{\"name\":\"Object\",\"scope\":[\"object\"],\"settings\":{\"foreground\":\"#cdebf7\"}},{\"name\":\"Null\",\"scope\":[\"constant.language.null\"],\"settings\":{\"foreground\":\"#ff5874\"}},{\"name\":\"Meta Brace\",\"scope\":[\"meta.brace\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"Meta Delimiter Period\",\"scope\":[\"meta.delimiter.period\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Punctuation Definition String\",\"scope\":[\"punctuation.definition.string\"],\"settings\":{\"foreground\":\"#d9f5dd\"}},{\"name\":\"Punctuation Definition String Markdown\",\"scope\":[\"punctuation.definition.string.begin.markdown\"],\"settings\":{\"foreground\":\"#ff5874\"}},{\"name\":\"Boolean\",\"scope\":[\"constant.language.boolean\"],\"settings\":{\"foreground\":\"#ff5874\"}},{\"name\":\"Object Comma\",\"scope\":[\"object.comma\"],\"settings\":{\"foreground\":\"#ffffff\"}},{\"name\":\"Variable Parameter Function\",\"scope\":[\"variable.parameter.function\"],\"settings\":{\"foreground\":\"#7fdbca\",\"fontStyle\":\"\"}},{\"name\":\"Support Type Property Name & entity name tags\",\"scope\":[\"support.type.vendor.property-name\",\"support.constant.vendor.property-value\",\"support.type.property-name\",\"meta.property-list entity.name.tag\"],\"settings\":{\"foreground\":\"#80cbc4\",\"fontStyle\":\"\"}},{\"name\":\"Entity Name tag reference in stylesheets\",\"scope\":[\"meta.property-list entity.name.tag.reference\"],\"settings\":{\"foreground\":\"#57eaf1\"}},{\"name\":\"Constant Other Color RGB Value Punctuation Definition Constant\",\"scope\":[\"constant.other.color.rgb-value punctuation.definition.constant\"],\"settings\":{\"foreground\":\"#f78c6c\"}},{\"name\":\"Constant Other Color\",\"scope\":[\"constant.other.color\"],\"settings\":{\"foreground\":\"#ffeb95\"}},{\"name\":\"Keyword Other Unit\",\"scope\":[\"keyword.other.unit\"],\"settings\":{\"foreground\":\"#ffeb95\"}},{\"name\":\"Meta Selector\",\"scope\":[\"meta.selector\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Entity Other Attribute Name Id\",\"scope\":[\"entity.other.attribute-name.id\"],\"settings\":{\"foreground\":\"#fad430\"}},{\"name\":\"Meta Property Name\",\"scope\":[\"meta.property-name\"],\"settings\":{\"foreground\":\"#80cbc4\"}},{\"name\":\"Doctypes\",\"scope\":[\"entity.name.tag.doctype\",\"meta.tag.sgml.doctype\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Punctuation Definition Parameters\",\"scope\":[\"punctuation.definition.parameters\"],\"settings\":{\"foreground\":\"#d9f5dd\"}},{\"name\":\"Keyword Control Operator\",\"scope\":[\"keyword.control.operator\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Keyword Operator Logical\",\"scope\":[\"keyword.operator.logical\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Variable Instances\",\"scope\":[\"variable.instance\",\"variable.other.instance\",\"variable.readwrite.instance\",\"variable.other.readwrite.instance\",\"variable.other.property\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Variable Property Other object property\",\"scope\":[\"variable.other.object.property\"],\"settings\":{\"foreground\":\"#faf39f\",\"fontStyle\":\"\"}},{\"name\":\"Variable Property Other object\",\"scope\":[\"variable.other.object.js\"],\"settings\":{\"fontStyle\":\"\"}},{\"name\":\"Entity Name Function\",\"scope\":[\"entity.name.function\"],\"settings\":{\"foreground\":\"#82aaff\",\"fontStyle\":\"\"}},{\"name\":\"Keyword Operator Comparison, returns, imports, and Keyword Operator Ruby\",\"scope\":[\"keyword.control.conditional.js\",\"keyword.operator.comparison\",\"keyword.control.flow.js\",\"keyword.control.flow.ts\",\"keyword.control.flow.tsx\",\"keyword.control.ruby\",\"keyword.control.def.ruby\",\"keyword.control.loop.js\",\"keyword.control.loop.ts\",\"keyword.control.import.js\",\"keyword.control.import.ts\",\"keyword.control.import.tsx\",\"keyword.control.from.js\",\"keyword.control.from.ts\",\"keyword.control.from.tsx\",\"keyword.control.conditional.js\",\"keyword.control.conditional.ts\",\"keyword.control.switch.js\",\"keyword.control.switch.ts\",\"keyword.operator.instanceof.js\",\"keyword.operator.expression.instanceof.ts\",\"keyword.operator.expression.instanceof.tsx\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Support Constant, `new` keyword, Special Method Keyword, `debugger`, other keywords\",\"scope\":[\"support.constant\",\"keyword.other.special-method\",\"keyword.other.new\",\"keyword.other.debugger\",\"keyword.control\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Support Function\",\"scope\":[\"support.function\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Invalid Broken\",\"scope\":[\"invalid.broken\"],\"settings\":{\"foreground\":\"#888e91\",\"background\":\"#F78C6C\"}},{\"name\":\"Invalid Unimplemented\",\"scope\":[\"invalid.unimplemented\"],\"settings\":{\"background\":\"#8BD649\",\"foreground\":\"#ffffff\"}},{\"name\":\"Invalid Illegal\",\"scope\":[\"invalid.illegal\"],\"settings\":{\"foreground\":\"#ffffff\",\"background\":\"#ec5f67\"}},{\"name\":\"Language Variable\",\"scope\":[\"variable.language\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Support Variable Property\",\"scope\":[\"support.variable.property\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Variable Function\",\"scope\":[\"variable.function\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Variable Interpolation\",\"scope\":[\"variable.interpolation\"],\"settings\":{\"foreground\":\"#ec5f67\"}},{\"name\":\"Meta Function Call\",\"scope\":[\"meta.function-call\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Punctuation Section Embedded\",\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#dd6b68\"}},{\"name\":\"Punctuation Tweaks\",\"scope\":[\"punctuation.terminator.expression\",\"punctuation.definition.arguments\",\"punctuation.definition.array\",\"punctuation.section.array\",\"meta.array\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"More Punctuation Tweaks\",\"scope\":[\"punctuation.definition.list.begin\",\"punctuation.definition.list.end\",\"punctuation.separator.arguments\",\"punctuation.definition.list\"],\"settings\":{\"foreground\":\"#d9f5dd\"}},{\"name\":\"Template Strings\",\"scope\":[\"string.template meta.template.expression\"],\"settings\":{\"foreground\":\"#dd6b68\"}},{\"name\":\"Backtics(``) in Template Strings\",\"scope\":[\"string.template punctuation.definition.string\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"Italics\",\"scope\":[\"italic\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"italic\"}},{\"name\":\"Bold\",\"scope\":[\"bold\"],\"settings\":{\"foreground\":\"#c5e478\",\"fontStyle\":\"bold\"}},{\"name\":\"Quote\",\"scope\":[\"quote\"],\"settings\":{\"foreground\":\"#868cac\",\"fontStyle\":\"\"}},{\"name\":\"Raw Code\",\"scope\":[\"raw\"],\"settings\":{\"foreground\":\"#80cbc4\"}},{\"name\":\"CoffeScript Variable Assignment\",\"scope\":[\"variable.assignment.coffee\"],\"settings\":{\"foreground\":\"#31e1eb\"}},{\"name\":\"CoffeScript Parameter Function\",\"scope\":[\"variable.parameter.function.coffee\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"CoffeeScript Assignments\",\"scope\":[\"variable.assignment.coffee\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"C# Readwrite Variables\",\"scope\":[\"variable.other.readwrite.cs\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"C# Classes & Storage types\",\"scope\":[\"entity.name.type.class.cs\",\"storage.type.cs\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"C# Namespaces\",\"scope\":[\"entity.name.type.namespace.cs\"],\"settings\":{\"foreground\":\"#b2ccd6\"}},{\"name\":\"C# Unquoted String Zone\",\"scope\":[\"string.unquoted.preprocessor.message.cs\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"C# Region\",\"scope\":[\"punctuation.separator.hash.cs\",\"keyword.preprocessor.region.cs\",\"keyword.preprocessor.endregion.cs\"],\"settings\":{\"foreground\":\"#ffcb8b\",\"fontStyle\":\"bold\"}},{\"name\":\"C# Other Variables\",\"scope\":[\"variable.other.object.cs\"],\"settings\":{\"foreground\":\"#b2ccd6\"}},{\"name\":\"C# Enum\",\"scope\":[\"entity.name.type.enum.cs\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Dart String\",\"scope\":[\"string.interpolated.single.dart\",\"string.interpolated.double.dart\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"Dart Class\",\"scope\":[\"support.class.dart\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"Tag names in Stylesheets\",\"scope\":[\"entity.name.tag.css\",\"entity.name.tag.less\",\"entity.name.tag.custom.css\",\"support.constant.property-value.css\"],\"settings\":{\"foreground\":\"#ff6363\",\"fontStyle\":\"\"}},{\"name\":\"Wildcard(*) selector in Stylesheets\",\"scope\":[\"entity.name.tag.wildcard.css\",\"entity.name.tag.wildcard.less\",\"entity.name.tag.wildcard.scss\",\"entity.name.tag.wildcard.sass\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"CSS Keyword Other Unit\",\"scope\":[\"keyword.other.unit.css\"],\"settings\":{\"foreground\":\"#ffeb95\"}},{\"name\":\"Attribute Name for CSS\",\"scope\":[\"meta.attribute-selector.css entity.other.attribute-name.attribute\",\"variable.other.readwrite.js\"],\"settings\":{\"foreground\":\"#f78c6c\"}},{\"name\":\"Elixir Classes\",\"scope\":[\"source.elixir support.type.elixir\",\"source.elixir meta.module.elixir entity.name.class.elixir\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Elixir Functions\",\"scope\":[\"source.elixir entity.name.function\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Elixir Constants\",\"scope\":[\"source.elixir constant.other.symbol.elixir\",\"source.elixir constant.other.keywords.elixir\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Elixir String Punctuations\",\"scope\":[\"source.elixir punctuation.definition.string\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Elixir\",\"scope\":[\"source.elixir variable.other.readwrite.module.elixir\",\"source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Elixir Binary Punctuations\",\"scope\":[\"source.elixir .punctuation.binary.elixir\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"Closure Constant Keyword\",\"scope\":[\"constant.keyword.clojure\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Go Function Calls\",\"scope\":[\"source.go meta.function-call.go\"],\"settings\":{\"foreground\":\"#dddddd\"}},{\"name\":\"Go Keywords\",\"scope\":[\"source.go keyword.package.go\",\"source.go keyword.import.go\",\"source.go keyword.function.go\",\"source.go keyword.type.go\",\"source.go keyword.struct.go\",\"source.go keyword.interface.go\",\"source.go keyword.const.go\",\"source.go keyword.var.go\",\"source.go keyword.map.go\",\"source.go keyword.channel.go\",\"source.go keyword.control.go\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"Go Constants e.g. nil, string format (%s, %d, etc.)\",\"scope\":[\"source.go constant.language.go\",\"source.go constant.other.placeholder.go\"],\"settings\":{\"foreground\":\"#ff5874\"}},{\"name\":\"C++ Functions\",\"scope\":[\"entity.name.function.preprocessor.cpp\",\"entity.scope.name.cpp\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"C++ Meta Namespace\",\"scope\":[\"meta.namespace-block.cpp\"],\"settings\":{\"foreground\":\"#e0dec6\"}},{\"name\":\"C++ Language Primitive Storage\",\"scope\":[\"storage.type.language.primitive.cpp\"],\"settings\":{\"foreground\":\"#ff5874\"}},{\"name\":\"C++ Preprocessor Macro\",\"scope\":[\"meta.preprocessor.macro.cpp\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"C++ Variable Parameter\",\"scope\":[\"variable.parameter\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"Powershell Variables\",\"scope\":[\"variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Powershell Function\",\"scope\":[\"support.function.powershell\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"ID Attribute Name in HTML\",\"scope\":[\"entity.other.attribute-name.id.html\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"HTML Punctuation Definition Tag\",\"scope\":[\"punctuation.definition.tag.html\"],\"settings\":{\"foreground\":\"#6ae9f0\"}},{\"name\":\"HTML Doctype\",\"scope\":[\"meta.tag.sgml.doctype.html\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"\"}},{\"name\":\"JavaScript Classes\",\"scope\":[\"meta.class entity.name.type.class.js\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"JavaScript Method Declaration e.g. `constructor`\",\"scope\":[\"meta.method.declaration storage.type.js\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"JavaScript Terminator\",\"scope\":[\"terminator.js\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"JavaScript Meta Punctuation Definition\",\"scope\":[\"meta.js punctuation.definition.js\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"Entity Names in Code Documentations\",\"scope\":[\"entity.name.type.instance.jsdoc\",\"entity.name.type.instance.phpdoc\"],\"settings\":{\"foreground\":\"#7690a6\"}},{\"name\":\"Other Variables in Code Documentations\",\"scope\":[\"variable.other.jsdoc\",\"variable.other.phpdoc\"],\"settings\":{\"foreground\":\"#78ccf0\"}},{\"name\":\"JavaScript module imports and exports\",\"scope\":[\"variable.other.meta.import.js\",\"meta.import.js variable.other\",\"variable.other.meta.export.js\",\"meta.export.js variable.other\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"JavaScript Variable Parameter Function\",\"scope\":[\"variable.parameter.function.js\"],\"settings\":{\"foreground\":\"#7986e7\"}},{\"name\":\"JavaScript[React] Variable Other Object\",\"scope\":[\"variable.other.object.js\",\"variable.other.object.jsx\",\"variable.object.property.js\",\"variable.object.property.jsx\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"JavaScript Variables\",\"scope\":[\"variable.js\",\"variable.other.js\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"JavaScript Entity Name Type\",\"scope\":[\"entity.name.type.js\",\"entity.name.type.module.js\"],\"settings\":{\"foreground\":\"#ffcb8b\",\"fontStyle\":\"\"}},{\"name\":\"JavaScript Support Classes\",\"scope\":[\"support.class.js\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"JSON Property Names\",\"scope\":[\"support.type.property-name.json\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"JSON Support Constants\",\"scope\":[\"support.constant.json\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"JSON Property values (string)\",\"scope\":[\"meta.structure.dictionary.value.json string.quoted.double\"],\"settings\":{\"foreground\":\"#c789d6\"}},{\"name\":\"Strings in JSON values\",\"scope\":[\"string.quoted.double.json punctuation.definition.string.json\"],\"settings\":{\"foreground\":\"#80cbc4\"}},{\"name\":\"Specific JSON Property values like null\",\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value constant.language\"],\"settings\":{\"foreground\":\"#ff5874\"}},{\"name\":\"JavaScript Other Variable\",\"scope\":[\"variable.other.object.js\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Ruby Variables\",\"scope\":[\"variable.other.ruby\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"Ruby Class\",\"scope\":[\"entity.name.type.class.ruby\"],\"settings\":{\"foreground\":\"#ecc48d\"}},{\"name\":\"Ruby Hashkeys\",\"scope\":[\"constant.language.symbol.hashkey.ruby\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"LESS Tag names\",\"scope\":[\"entity.name.tag.less\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"LESS Keyword Other Unit\",\"scope\":[\"keyword.other.unit.css\"],\"settings\":{\"foreground\":\"#ffeb95\"}},{\"name\":\"Attribute Name for LESS\",\"scope\":[\"meta.attribute-selector.less entity.other.attribute-name.attribute\"],\"settings\":{\"foreground\":\"#f78c6c\"}},{\"name\":\"Markdown Headings\",\"scope\":[\"markup.heading.markdown\",\"markup.heading.setext.1.markdown\",\"markup.heading.setext.2.markdown\"],\"settings\":{\"foreground\":\"#82b1ff\"}},{\"name\":\"Markdown Italics\",\"scope\":[\"markup.italic.markdown\"],\"settings\":{\"foreground\":\"#c792ea\",\"fontStyle\":\"italic\"}},{\"name\":\"Markdown Bold\",\"scope\":[\"markup.bold.markdown\"],\"settings\":{\"foreground\":\"#c5e478\",\"fontStyle\":\"bold\"}},{\"name\":\"Markdown Quote + others\",\"scope\":[\"markup.quote.markdown\"],\"settings\":{\"foreground\":\"#868cac\",\"fontStyle\":\"\"}},{\"name\":\"Markdown Raw Code + others\",\"scope\":[\"markup.inline.raw.markdown\"],\"settings\":{\"foreground\":\"#80cbc4\"}},{\"name\":\"Markdown Links\",\"scope\":[\"markup.underline.link.markdown\",\"markup.underline.link.image.markdown\"],\"settings\":{\"foreground\":\"#ff869a\",\"fontStyle\":\"underline\"}},{\"name\":\"Markdown Link Title and Description\",\"scope\":[\"string.other.link.title.markdown\",\"string.other.link.description.markdown\"],\"settings\":{\"foreground\":\"#d6deeb\",\"fontStyle\":\"underline\"}},{\"name\":\"Markdown Punctuation\",\"scope\":[\"punctuation.definition.string.markdown\",\"punctuation.definition.string.begin.markdown\",\"punctuation.definition.string.end.markdown\",\"meta.link.inline.markdown punctuation.definition.string\"],\"settings\":{\"foreground\":\"#82b1ff\"}},{\"name\":\"Markdown MetaData Punctuation\",\"scope\":[\"punctuation.definition.metadata.markdown\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"Markdown List Punctuation\",\"scope\":[\"beginning.punctuation.definition.list.markdown\"],\"settings\":{\"foreground\":\"#82b1ff\"}},{\"name\":\"Markdown Inline Raw String\",\"scope\":[\"markup.inline.raw.string.markdown\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"PHP Variables\",\"scope\":[\"variable.other.php\"],\"settings\":{\"foreground\":\"#bec5d4\"}},{\"name\":\"Support Classes in PHP\",\"scope\":[\"support.class.php\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"Punctuations in PHP function calls\",\"scope\":[\"meta.function-call.php punctuation\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"PHP Global Variables\",\"scope\":[\"variable.other.global.php\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Declaration Punctuation in PHP Global Variables\",\"scope\":[\"variable.other.global.php punctuation.definition.variable\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Language Constants in Python\",\"scope\":[\"constant.language.python\"],\"settings\":{\"foreground\":\"#ff5874\"}},{\"name\":\"Python Function Parameter and Arguments\",\"scope\":[\"variable.parameter.function.python\",\"meta.function-call.arguments.python\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Python Function Call\",\"scope\":[\"meta.function-call.python\",\"meta.function-call.generic.python\"],\"settings\":{\"foreground\":\"#b2ccd6\"}},{\"name\":\"Punctuations in Python\",\"scope\":[\"punctuation.python\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"Decorator Functions in Python\",\"scope\":[\"entity.name.function.decorator.python\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Python Language Variable\",\"scope\":[\"source.python variable.language.special\"],\"settings\":{\"foreground\":\"#8eace3\"}},{\"name\":\"Python import control keyword\",\"scope\":[\"keyword.control\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"SCSS Variable\",\"scope\":[\"variable.scss\",\"variable.sass\",\"variable.parameter.url.scss\",\"variable.parameter.url.sass\"],\"settings\":{\"foreground\":\"#c5e478\"}},{\"name\":\"Variables in SASS At-Rules\",\"scope\":[\"source.css.scss meta.at-rule variable\",\"source.css.sass meta.at-rule variable\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"Variables in SASS At-Rules\",\"scope\":[\"source.css.scss meta.at-rule variable\",\"source.css.sass meta.at-rule variable\"],\"settings\":{\"foreground\":\"#bec5d4\"}},{\"name\":\"Attribute Name for SASS\",\"scope\":[\"meta.attribute-selector.scss entity.other.attribute-name.attribute\",\"meta.attribute-selector.sass entity.other.attribute-name.attribute\"],\"settings\":{\"foreground\":\"#f78c6c\"}},{\"name\":\"Tag names in SASS\",\"scope\":[\"entity.name.tag.scss\",\"entity.name.tag.sass\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"SASS Keyword Other Unit\",\"scope\":[\"keyword.other.unit.scss\",\"keyword.other.unit.sass\"],\"settings\":{\"foreground\":\"#ffeb95\"}},{\"name\":\"TypeScript[React] Variables and Object Properties\",\"scope\":[\"variable.other.readwrite.alias.ts\",\"variable.other.readwrite.alias.tsx\",\"variable.other.readwrite.ts\",\"variable.other.readwrite.tsx\",\"variable.other.object.ts\",\"variable.other.object.tsx\",\"variable.object.property.ts\",\"variable.object.property.tsx\",\"variable.other.ts\",\"variable.other.tsx\",\"variable.tsx\",\"variable.ts\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"TypeScript[React] Entity Name Types\",\"scope\":[\"entity.name.type.ts\",\"entity.name.type.tsx\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"TypeScript[React] Node Classes\",\"scope\":[\"support.class.node.ts\",\"support.class.node.tsx\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"TypeScript[React] Entity Name Types as Parameters\",\"scope\":[\"meta.type.parameters.ts entity.name.type\",\"meta.type.parameters.tsx entity.name.type\"],\"settings\":{\"foreground\":\"#7690a6\"}},{\"name\":\"TypeScript[React] Import/Export Punctuations\",\"scope\":[\"meta.import.ts punctuation.definition.block\",\"meta.import.tsx punctuation.definition.block\",\"meta.export.ts punctuation.definition.block\",\"meta.export.tsx punctuation.definition.block\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"TypeScript[React] Punctuation Decorators\",\"scope\":[\"meta.decorator punctuation.decorator.ts\",\"meta.decorator punctuation.decorator.tsx\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"TypeScript[React] Punctuation Decorators\",\"scope\":[\"meta.tag.js meta.jsx.children.tsx\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"YAML Entity Name Tags\",\"scope\":[\"entity.name.tag.yaml\"],\"settings\":{\"foreground\":\"#7fdbca\"}},{\"name\":\"JavaScript Variable Other ReadWrite\",\"scope\":[\"variable.other.readwrite.js\",\"variable.parameter\"],\"settings\":{\"foreground\":\"#d7dbe0\"}},{\"name\":\"Support Class Component\",\"scope\":[\"support.class.component.js\",\"support.class.component.tsx\"],\"settings\":{\"foreground\":\"#f78c6c\",\"fontStyle\":\"\"}},{\"name\":\"Text nested in React tags\",\"scope\":[\"meta.jsx.children\",\"meta.jsx.children.js\",\"meta.jsx.children.tsx\"],\"settings\":{\"foreground\":\"#d6deeb\"}},{\"name\":\"TypeScript Classes\",\"scope\":[\"meta.class entity.name.type.class.tsx\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"TypeScript Entity Name Type\",\"scope\":[\"entity.name.type.tsx\",\"entity.name.type.module.tsx\"],\"settings\":{\"foreground\":\"#ffcb8b\"}},{\"name\":\"TypeScript Class Variable Keyword\",\"scope\":[\"meta.class.ts meta.var.expr.ts storage.type.ts\",\"meta.class.tsx meta.var.expr.tsx storage.type.tsx\"],\"settings\":{\"foreground\":\"#c792ea\"}},{\"name\":\"TypeScript Method Declaration e.g. `constructor`\",\"scope\":[\"meta.method.declaration storage.type.ts\",\"meta.method.declaration storage.type.tsx\"],\"settings\":{\"foreground\":\"#82aaff\"}},{\"name\":\"normalize font style of certain components\",\"scope\":[\"meta.property-list.css meta.property-value.css variable.other.less\",\"meta.property-list.scss variable.scss\",\"meta.property-list.sass variable.sass\",\"meta.brace\",\"keyword.operator.operator\",\"keyword.operator.or.regexp\",\"keyword.operator.expression.in\",\"keyword.operator.relational\",\"keyword.operator.assignment\",\"keyword.operator.comparison\",\"keyword.operator.type\",\"keyword.operator\",\"keyword\",\"punctuation.definintion.string\",\"punctuation\",\"variable.other.readwrite.js\",\"storage.type\",\"source.css\",\"string.quoted\"],\"settings\":{\"fontStyle\":\"\"}}],\"styleOverrides\":{\"frames\":{\"editorBackground\":\"var(--sl-color-gray-6)\",\"terminalBackground\":\"var(--sl-color-gray-6)\",\"editorActiveTabBackground\":\"var(--sl-color-gray-6)\",\"terminalTitlebarDotsForeground\":\"color-mix(in srgb, var(--sl-color-gray-5), transparent 25%)\",\"terminalTitlebarDotsOpacity\":\"0.75\",\"inlineButtonForeground\":\"var(--sl-color-text)\",\"frameBoxShadowCssValue\":\"none\"},\"textMarkers\":{\"markBackground\":\"#ffffff17\",\"markBorderColor\":\"#ffffff40\"}}},{\"name\":\"Night Owl Light\",\"type\":\"light\",\"colors\":{\"focusBorder\":\"#93a1a1\",\"foreground\":\"#403f53\",\"disabledForeground\":\"#61616180\",\"descriptionForeground\":\"#403f53\",\"errorForeground\":\"#403f53\",\"icon.foreground\":\"#424242\",\"contrastActiveBorder\":null,\"contrastBorder\":null,\"textBlockQuote.background\":\"#7f7f7f1a\",\"textBlockQuote.border\":\"#007acc80\",\"textCodeBlock.background\":\"#dcdcdc66\",\"textLink.activeForeground\":\"#006ab1\",\"textLink.foreground\":\"#006ab1\",\"textPreformat.foreground\":\"#a31515\",\"textSeparator.foreground\":\"#0000002e\",\"editor.background\":\"#fbfbfb\",\"editor.foreground\":\"#403f53\",\"editorLineNumber.foreground\":\"#90a7b2\",\"editorLineNumber.activeForeground\":\"#403f53\",\"editorActiveLineNumber.foreground\":\"#0b216f\",\"editor.selectionBackground\":\"#e0e0e0\",\"editor.inactiveSelectionBackground\":\"#e0e0e080\",\"editor.selectionHighlightBackground\":\"#339cec33\",\"editorError.foreground\":\"#e64d49\",\"editorWarning.foreground\":\"#daaa01\",\"editorInfo.foreground\":\"#1a85ff\",\"editorHint.foreground\":\"#6c6c6c\",\"problemsErrorIcon.foreground\":\"#e64d49\",\"problemsWarningIcon.foreground\":\"#daaa01\",\"problemsInfoIcon.foreground\":\"#1a85ff\",\"editor.findMatchBackground\":\"#93a1a16c\",\"editor.findMatchHighlightBackground\":\"#93a1a16c\",\"editor.findRangeHighlightBackground\":\"#7497a633\",\"editorLink.activeForeground\":\"#0000ff\",\"editorLightBulb.foreground\":\"#ddb100\",\"editorLightBulbAutoFix.foreground\":\"#007acc\",\"diffEditor.insertedTextBackground\":\"#9ccc2c40\",\"diffEditor.insertedTextBorder\":null,\"diffEditor.removedTextBackground\":\"#ff000033\",\"diffEditor.removedTextBorder\":null,\"diffEditor.insertedLineBackground\":\"#9bb95533\",\"diffEditor.removedLineBackground\":\"#ff000033\",\"editorStickyScroll.background\":\"#fbfbfb\",\"editorStickyScrollHover.background\":\"#f0f0f0\",\"editorInlayHint.background\":\"#2aa29899\",\"editorInlayHint.foreground\":\"#f0f0f0\",\"editorInlayHint.typeBackground\":\"#2aa29899\",\"editorInlayHint.typeForeground\":\"#f0f0f0\",\"editorInlayHint.parameterBackground\":\"#2aa29899\",\"editorInlayHint.parameterForeground\":\"#f0f0f0\",\"editorPane.background\":\"#fbfbfb\",\"editorGroup.emptyBackground\":null,\"editorGroup.focusedEmptyBorder\":null,\"editorGroupHeader.tabsBackground\":\"var(--sl-color-gray-6)\",\"editorGroupHeader.tabsBorder\":\"color-mix(in srgb, var(--sl-color-gray-5), transparent 25%)\",\"editorGroupHeader.noTabsBackground\":\"#f0f0f0\",\"editorGroupHeader.border\":null,\"editorGroup.border\":\"#f0f0f0\",\"editorGroup.dropBackground\":\"#2677cb2d\",\"editorGroup.dropIntoPromptForeground\":\"#403f53\",\"editorGroup.dropIntoPromptBackground\":\"#f0f0f0\",\"editorGroup.dropIntoPromptBorder\":null,\"sideBySideEditor.horizontalBorder\":\"#f0f0f0\",\"sideBySideEditor.verticalBorder\":\"#f0f0f0\",\"scrollbar.shadow\":\"#cccccc\",\"scrollbarSlider.background\":\"#0000001a\",\"scrollbarSlider.hoverBackground\":\"#00000055\",\"scrollbarSlider.activeBackground\":\"#00000099\",\"panel.background\":\"#f0f0f0\",\"panel.border\":\"#d9d9d9\",\"panelTitle.activeBorder\":\"#424242\",\"panelTitle.activeForeground\":\"#424242\",\"panelTitle.inactiveForeground\":\"#424242bf\",\"panelSectionHeader.background\":\"#80808051\",\"terminal.background\":\"#f6f6f6\",\"widget.shadow\":\"#d9d9d9\",\"editorWidget.background\":\"#f0f0f0\",\"editorWidget.foreground\":\"#403f53\",\"editorWidget.border\":\"#d9d9d9\",\"quickInput.background\":\"#f0f0f0\",\"quickInput.foreground\":\"#403f53\",\"quickInputTitle.background\":\"#0000000f\",\"pickerGroup.foreground\":\"#403f53\",\"pickerGroup.border\":\"#d9d9d9\",\"editor.hoverHighlightBackground\":\"#339cec33\",\"editorHoverWidget.background\":\"#f0f0f0\",\"editorHoverWidget.foreground\":\"#403f53\",\"editorHoverWidget.border\":\"#d9d9d9\",\"editorHoverWidget.statusBarBackground\":\"#e4e4e4\",\"titleBar.activeBackground\":\"var(--sl-color-gray-6)\",\"titleBar.activeForeground\":\"var(--sl-color-text)\",\"titleBar.inactiveBackground\":\"#f0f0f099\",\"titleBar.inactiveForeground\":\"#33333399\",\"titleBar.border\":\"color-mix(in srgb, var(--sl-color-gray-5), transparent 25%)\",\"toolbar.hoverBackground\":\"#b8b8b850\",\"toolbar.activeBackground\":\"#a6a6a650\",\"tab.activeBackground\":\"#f6f6f6\",\"tab.unfocusedActiveBackground\":\"#f6f6f6\",\"tab.inactiveBackground\":\"#f0f0f0\",\"tab.unfocusedInactiveBackground\":\"#f0f0f0\",\"tab.activeForeground\":\"var(--sl-color-text)\",\"tab.inactiveForeground\":\"#403f53\",\"tab.unfocusedActiveForeground\":\"#403f53b3\",\"tab.unfocusedInactiveForeground\":\"#403f5380\",\"tab.hoverBackground\":null,\"tab.unfocusedHoverBackground\":null,\"tab.hoverForeground\":null,\"tab.unfocusedHoverForeground\":null,\"tab.border\":\"#f0f0f0\",\"tab.lastPinnedBorder\":\"#a9a9a9\",\"tab.activeBorder\":\"transparent\",\"tab.unfocusedActiveBorder\":null,\"tab.activeBorderTop\":\"var(--sl-color-accent)\",\"tab.unfocusedActiveBorderTop\":null,\"tab.hoverBorder\":null,\"tab.unfocusedHoverBorder\":null,\"tab.activeModifiedBorder\":\"#2aa298\",\"tab.inactiveModifiedBorder\":\"#93a1a1\",\"tab.unfocusedActiveModifiedBorder\":\"#93a1a1\",\"tab.unfocusedInactiveModifiedBorder\":\"#93a1a1\",\"badge.background\":\"#2aa298\",\"badge.foreground\":\"#f0f0f0\",\"button.background\":\"#2aa298\",\"button.foreground\":\"#f0f0f0\",\"button.border\":null,\"button.separator\":\"#f0f0f066\",\"button.hoverBackground\":\"#22827a\",\"button.secondaryBackground\":\"#5f6a79\",\"button.secondaryForeground\":\"#ffffff\",\"button.secondaryHoverBackground\":\"#4c5561\",\"dropdown.background\":\"#f0f0f0\",\"dropdown.foreground\":\"#403f53\",\"dropdown.border\":\"#d9d9d9\",\"list.activeSelectionBackground\":\"#d3e8f8\",\"list.activeSelectionForeground\":\"#403f53\",\"tree.indentGuidesStroke\":\"#a9a9a9\",\"input.background\":\"#f0f0f0\",\"input.foreground\":\"#403f53\",\"input.placeholderForeground\":\"#93a1a1\",\"inputOption.activeBorder\":\"#2aa298\",\"inputOption.hoverBackground\":\"#b8b8b850\",\"inputOption.activeBackground\":\"#93a1a133\",\"inputOption.activeForeground\":\"#000000\",\"inputValidation.infoBackground\":\"#f0f0f0\",\"inputValidation.infoBorder\":\"#d0d0d0\",\"inputValidation.warningBackground\":\"#daaa01\",\"inputValidation.warningBorder\":\"#e0af02\",\"inputValidation.errorBackground\":\"#f76e6e\",\"inputValidation.errorBorder\":\"#de3d3b\",\"keybindingLabel.background\":\"#dddddd66\",\"keybindingLabel.foreground\":\"#555555\",\"keybindingLabel.border\":\"#cccccc66\",\"keybindingLabel.bottomBorder\":\"#bbbbbb66\",\"menu.foreground\":\"#403f53\",\"menu.background\":\"#f0f0f0\",\"menu.selectionForeground\":\"#403f53\",\"menu.selectionBackground\":\"#d3e8f8\",\"menu.separatorBackground\":\"#d4d4d4\",\"editor.snippetTabstopHighlightBackground\":\"#0a326433\",\"editor.snippetFinalTabstopHighlightBorder\":\"#0a326480\",\"terminal.ansiBlack\":\"#403f53\",\"terminal.ansiRed\":\"#de3d3b\",\"terminal.ansiGreen\":\"#08916a\",\"terminal.ansiYellow\":\"#e0af02\",\"terminal.ansiBlue\":\"#288ed7\",\"terminal.ansiMagenta\":\"#d6438a\",\"terminal.ansiCyan\":\"#2aa298\",\"terminal.ansiWhite\":\"#f0f0f0\",\"terminal.ansiBrightBlack\":\"#403f53\",\"terminal.ansiBrightRed\":\"#de3d3b\",\"terminal.ansiBrightGreen\":\"#08916a\",\"terminal.ansiBrightYellow\":\"#daaa01\",\"terminal.ansiBrightBlue\":\"#288ed7\",\"terminal.ansiBrightMagenta\":\"#d6438a\",\"terminal.ansiBrightCyan\":\"#2aa298\",\"terminal.ansiBrightWhite\":\"#f0f0f0\",\"selection.background\":\"#7a8181ad\",\"notifications.background\":\"#f0f0f0\",\"notifications.foreground\":\"#403f53\",\"notificationLink.foreground\":\"#994cc3\",\"notifications.border\":\"#cccccc\",\"notificationCenter.border\":\"#cccccc\",\"notificationToast.border\":\"#cccccc\",\"notificationCenterHeader.foreground\":\"#403f53\",\"notificationCenterHeader.background\":\"#f0f0f0\",\"input.border\":\"#d9d9d9\",\"progressBar.background\":\"#2aa298\",\"list.inactiveSelectionBackground\":\"#e0e7ea\",\"list.inactiveSelectionForeground\":\"#403f53\",\"list.focusBackground\":\"#d3e8f8\",\"list.hoverBackground\":\"#d3e8f8\",\"list.focusForeground\":\"#403f53\",\"list.hoverForeground\":\"#403f53\",\"list.highlightForeground\":\"#403f53\",\"list.errorForeground\":\"#e64d49\",\"list.warningForeground\":\"#daaa01\",\"activityBar.background\":\"#f0f0f0\",\"activityBar.foreground\":\"#403f53\",\"activityBar.dropBackground\":\"#d0d0d0\",\"activityBarBadge.background\":\"#403f53\",\"activityBarBadge.foreground\":\"#f0f0f0\",\"activityBar.border\":\"#f0f0f0\",\"sideBar.background\":\"#f0f0f0\",\"sideBar.foreground\":\"#403f53\",\"sideBarTitle.foreground\":\"#403f53\",\"sideBar.border\":\"#f0f0f0\",\"editorGroup.background\":\"#f6f6f6\",\"editorCursor.foreground\":\"#90a7b2\",\"editor.wordHighlightBackground\":\"#339cec33\",\"editor.wordHighlightStrongBackground\":\"#007dd659\",\"editor.lineHighlightBackground\":\"#f0f0f0\",\"editor.rangeHighlightBackground\":\"#7497a633\",\"editorWhitespace.foreground\":\"#d9d9d9\",\"editorIndentGuide.background\":\"#d9d9d9\",\"editorCodeLens.foreground\":\"#403f53\",\"editorBracketMatch.background\":\"#d3e8f8\",\"editorBracketMatch.border\":\"#2aa298\",\"editorError.border\":\"#fbfbfb\",\"editorWarning.border\":\"#daaa01\",\"editorGutter.addedBackground\":\"#49d0c5\",\"editorGutter.modifiedBackground\":\"#6fbef6\",\"editorGutter.deletedBackground\":\"#f76e6e\",\"editorRuler.foreground\":\"#d9d9d9\",\"editorOverviewRuler.errorForeground\":\"#e64d49\",\"editorOverviewRuler.warningForeground\":\"#daaa01\",\"editorSuggestWidget.background\":\"#f0f0f0\",\"editorSuggestWidget.foreground\":\"#403f53\",\"editorSuggestWidget.highlightForeground\":\"#403f53\",\"editorSuggestWidget.selectedBackground\":\"#d3e8f8\",\"editorSuggestWidget.border\":\"#d9d9d9\",\"debugExceptionWidget.background\":\"#f0f0f0\",\"debugExceptionWidget.border\":\"#d9d9d9\",\"editorMarkerNavigation.background\":\"#d0d0d0\",\"editorMarkerNavigationError.background\":\"#f76e6e\",\"editorMarkerNavigationWarning.background\":\"#daaa01\",\"debugToolBar.background\":\"#f0f0f0\",\"extensionButton.prominentBackground\":\"#2aa298\",\"extensionButton.prominentForeground\":\"#f0f0f0\",\"statusBar.background\":\"#f0f0f0\",\"statusBar.border\":\"#f0f0f0\",\"statusBar.debuggingBackground\":\"#f0f0f0\",\"statusBar.debuggingForeground\":\"#403f53\",\"statusBar.foreground\":\"#403f53\",\"statusBar.noFolderBackground\":\"#f0f0f0\",\"statusBar.noFolderForeground\":\"#403f53\",\"peekView.border\":\"#d9d9d9\",\"peekViewEditor.background\":\"#f6f6f6\",\"peekViewEditorGutter.background\":\"#f6f6f6\",\"peekViewEditor.matchHighlightBackground\":\"#49d0c5\",\"peekViewResult.background\":\"#f0f0f0\",\"peekViewResult.fileForeground\":\"#403f53\",\"peekViewResult.lineForeground\":\"#403f53\",\"peekViewResult.matchHighlightBackground\":\"#49d0c5\",\"peekViewResult.selectionBackground\":\"#e0e7ea\",\"peekViewResult.selectionForeground\":\"#403f53\",\"peekViewTitle.background\":\"#f0f0f0\",\"peekViewTitleLabel.foreground\":\"#403f53\",\"peekViewTitleDescription.foreground\":\"#403f53\",\"terminal.foreground\":\"#403f53\"},\"fg\":\"#403f53\",\"bg\":\"#f6f7f9\",\"semanticHighlighting\":false,\"settings\":[{\"name\":\"Changed\",\"scope\":[\"markup.changed\",\"meta.diff.header.git\",\"meta.diff.header.from-file\",\"meta.diff.header.to-file\"],\"settings\":{\"foreground\":\"#576687\"}},{\"name\":\"Deleted\",\"scope\":[\"markup.deleted.diff\"],\"settings\":{\"foreground\":\"#b33e3cfe\"}},{\"name\":\"Inserted\",\"scope\":[\"markup.inserted.diff\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Global settings\",\"settings\":{\"background\":\"#011627\",\"foreground\":\"#403f53\"}},{\"name\":\"Comment\",\"scope\":[\"comment\"],\"settings\":{\"foreground\":\"#616671\"}},{\"name\":\"String\",\"scope\":[\"string\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"String Quoted\",\"scope\":[\"string.quoted\",\"variable.other.readwrite.js\"],\"settings\":{\"foreground\":\"#9b504e\"}},{\"name\":\"Support Constant Math\",\"scope\":[\"support.constant.math\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Number\",\"scope\":[\"constant.numeric\",\"constant.character.numeric\"],\"settings\":{\"foreground\":\"#aa0982\",\"fontStyle\":\"\"}},{\"name\":\"Built-in constant\",\"scope\":[\"constant.language\",\"punctuation.definition.constant\",\"variable.other.constant\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"User-defined constant\",\"scope\":[\"constant.character\",\"constant.other\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Constant Character Escape\",\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"RegExp String\",\"scope\":[\"string.regexp\",\"string.regexp keyword.other\"],\"settings\":{\"foreground\":\"#3a6a90\"}},{\"name\":\"Comma in functions\",\"scope\":[\"meta.function punctuation.separator.comma\"],\"settings\":{\"foreground\":\"#4f687d\"}},{\"name\":\"Variable\",\"scope\":[\"variable\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Keyword\",\"scope\":[\"punctuation.accessor\",\"keyword\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Storage\",\"scope\":[\"storage\",\"meta.var.expr\",\"meta.class meta.method.declaration meta.var.expr storage.type.js\",\"storage.type.property.js\",\"storage.type.property.ts\",\"storage.type.property.tsx\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Storage type\",\"scope\":[\"storage.type\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Storage type\",\"scope\":[\"storage.type.function.arrow.js\"],\"settings\":{\"fontStyle\":\"\"}},{\"name\":\"Class name\",\"scope\":[\"entity.name.class\",\"meta.class entity.name.type.class\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Inherited class\",\"scope\":[\"entity.other.inherited-class\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Function name\",\"scope\":[\"entity.name.function\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Meta Tag\",\"scope\":[\"punctuation.definition.tag\",\"meta.tag\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"HTML Tag names\",\"scope\":[\"entity.name.tag\",\"meta.tag.other.html\",\"meta.tag.other.js\",\"meta.tag.other.tsx\",\"entity.name.tag.tsx\",\"entity.name.tag.js\",\"entity.name.tag\",\"meta.tag.js\",\"meta.tag.tsx\",\"meta.tag.html\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Tag attribute\",\"scope\":[\"entity.other.attribute-name\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Entity Name Tag Custom\",\"scope\":[\"entity.name.tag.custom\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Library (function & constant)\",\"scope\":[\"support.function\",\"support.constant\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Support Constant Property Value meta\",\"scope\":[\"support.constant.meta.property-value\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Library class/type\",\"scope\":[\"support.type\",\"support.class\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Support Variable DOM\",\"scope\":[\"support.variable.dom\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Invalid\",\"scope\":[\"invalid\"],\"settings\":{\"foreground\":\"#bf2162\"}},{\"name\":\"Invalid deprecated\",\"scope\":[\"invalid.deprecated\"],\"settings\":{\"foreground\":\"#b73936\"}},{\"name\":\"Keyword Operator\",\"scope\":[\"keyword.operator\"],\"settings\":{\"foreground\":\"#097174\",\"fontStyle\":\"\"}},{\"name\":\"Keyword Operator Relational\",\"scope\":[\"keyword.operator.relational\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Keyword Operator Assignment\",\"scope\":[\"keyword.operator.assignment\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Keyword Operator Arithmetic\",\"scope\":[\"keyword.operator.arithmetic\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Keyword Operator Bitwise\",\"scope\":[\"keyword.operator.bitwise\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Keyword Operator Increment\",\"scope\":[\"keyword.operator.increment\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Keyword Operator Ternary\",\"scope\":[\"keyword.operator.ternary\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Double-Slashed Comment\",\"scope\":[\"comment.line.double-slash\"],\"settings\":{\"foreground\":\"#5e6578\"}},{\"name\":\"Object\",\"scope\":[\"object\"],\"settings\":{\"foreground\":\"#5a686d\"}},{\"name\":\"Null\",\"scope\":[\"constant.language.null\"],\"settings\":{\"foreground\":\"#a54a4a\"}},{\"name\":\"Meta Brace\",\"scope\":[\"meta.brace\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"Meta Delimiter Period\",\"scope\":[\"meta.delimiter.period\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Punctuation Definition String\",\"scope\":[\"punctuation.definition.string\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Punctuation Definition String Markdown\",\"scope\":[\"punctuation.definition.string.begin.markdown\"],\"settings\":{\"foreground\":\"#a54a4a\"}},{\"name\":\"Boolean\",\"scope\":[\"constant.language.boolean\"],\"settings\":{\"foreground\":\"#a54a4a\"}},{\"name\":\"Object Comma\",\"scope\":[\"object.comma\"],\"settings\":{\"foreground\":\"#666666\"}},{\"name\":\"Variable Parameter Function\",\"scope\":[\"variable.parameter.function\"],\"settings\":{\"foreground\":\"#097174\",\"fontStyle\":\"\"}},{\"name\":\"Support Type Property Name & entity name tags\",\"scope\":[\"support.type.vendor.property-name\",\"support.constant.vendor.property-value\",\"support.type.property-name\",\"meta.property-list entity.name.tag\"],\"settings\":{\"foreground\":\"#097174\",\"fontStyle\":\"\"}},{\"name\":\"Entity Name tag reference in stylesheets\",\"scope\":[\"meta.property-list entity.name.tag.reference\"],\"settings\":{\"foreground\":\"#297073\"}},{\"name\":\"Constant Other Color RGB Value Punctuation Definition Constant\",\"scope\":[\"constant.other.color.rgb-value punctuation.definition.constant\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Constant Other Color\",\"scope\":[\"constant.other.color\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Keyword Other Unit\",\"scope\":[\"keyword.other.unit\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Meta Selector\",\"scope\":[\"meta.selector\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Entity Other Attribute Name Id\",\"scope\":[\"entity.other.attribute-name.id\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Meta Property Name\",\"scope\":[\"meta.property-name\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Doctypes\",\"scope\":[\"entity.name.tag.doctype\",\"meta.tag.sgml.doctype\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Punctuation Definition Parameters\",\"scope\":[\"punctuation.definition.parameters\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Keyword Control Operator\",\"scope\":[\"keyword.control.operator\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Keyword Operator Logical\",\"scope\":[\"keyword.operator.logical\"],\"settings\":{\"foreground\":\"#8d46b4\",\"fontStyle\":\"\"}},{\"name\":\"Variable Instances\",\"scope\":[\"variable.instance\",\"variable.other.instance\",\"variable.readwrite.instance\",\"variable.other.readwrite.instance\",\"variable.other.property\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Variable Property Other object property\",\"scope\":[\"variable.other.object.property\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Variable Property Other object\",\"scope\":[\"variable.other.object.js\"],\"settings\":{\"fontStyle\":\"\"}},{\"name\":\"Entity Name Function\",\"scope\":[\"entity.name.function\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Keyword Operator Comparison, imports, returns and Keyword Operator Ruby\",\"scope\":[\"keyword.operator.comparison\",\"keyword.control.flow.js\",\"keyword.control.flow.ts\",\"keyword.control.flow.tsx\",\"keyword.control.ruby\",\"keyword.control.module.ruby\",\"keyword.control.class.ruby\",\"keyword.control.def.ruby\",\"keyword.control.loop.js\",\"keyword.control.loop.ts\",\"keyword.control.import.js\",\"keyword.control.import.ts\",\"keyword.control.import.tsx\",\"keyword.control.from.js\",\"keyword.control.from.ts\",\"keyword.control.from.tsx\",\"keyword.operator.instanceof.js\",\"keyword.operator.expression.instanceof.ts\",\"keyword.operator.expression.instanceof.tsx\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Keyword Control Conditional\",\"scope\":[\"keyword.control.conditional.js\",\"keyword.control.conditional.ts\",\"keyword.control.switch.js\",\"keyword.control.switch.ts\"],\"settings\":{\"foreground\":\"#8d46b4\",\"fontStyle\":\"\"}},{\"name\":\"Support Constant, `new` keyword, Special Method Keyword, `debugger`, other keywords\",\"scope\":[\"support.constant\",\"keyword.other.special-method\",\"keyword.other.new\",\"keyword.other.debugger\",\"keyword.control\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Support Function\",\"scope\":[\"support.function\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Invalid Broken\",\"scope\":[\"invalid.broken\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Invalid Unimplemented\",\"scope\":[\"invalid.unimplemented\"],\"settings\":{\"foreground\":\"#497026\"}},{\"name\":\"Invalid Illegal\",\"scope\":[\"invalid.illegal\"],\"settings\":{\"foreground\":\"#9b504e\"}},{\"name\":\"Language Variable\",\"scope\":[\"variable.language\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Support Variable Property\",\"scope\":[\"support.variable.property\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Variable Function\",\"scope\":[\"variable.function\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Variable Interpolation\",\"scope\":[\"variable.interpolation\"],\"settings\":{\"foreground\":\"#aa444a\"}},{\"name\":\"Meta Function Call\",\"scope\":[\"meta.function-call\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Punctuation Section Embedded\",\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#b73936\"}},{\"name\":\"Punctuation Tweaks\",\"scope\":[\"punctuation.terminator.expression\",\"punctuation.definition.arguments\",\"punctuation.definition.array\",\"punctuation.section.array\",\"meta.array\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"More Punctuation Tweaks\",\"scope\":[\"punctuation.definition.list.begin\",\"punctuation.definition.list.end\",\"punctuation.separator.arguments\",\"punctuation.definition.list\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Template Strings\",\"scope\":[\"string.template meta.template.expression\"],\"settings\":{\"foreground\":\"#b73936\"}},{\"name\":\"Backtics(``) in Template Strings\",\"scope\":[\"string.template punctuation.definition.string\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"Italics\",\"scope\":[\"italic\"],\"settings\":{\"foreground\":\"#8d46b4\",\"fontStyle\":\"italic\"}},{\"name\":\"Bold\",\"scope\":[\"bold\"],\"settings\":{\"foreground\":\"#3c63b3\",\"fontStyle\":\"bold\"}},{\"name\":\"Quote\",\"scope\":[\"quote\"],\"settings\":{\"foreground\":\"#5e6487\"}},{\"name\":\"Raw Code\",\"scope\":[\"raw\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"CoffeScript Variable Assignment\",\"scope\":[\"variable.assignment.coffee\"],\"settings\":{\"foreground\":\"#197176\"}},{\"name\":\"CoffeScript Parameter Function\",\"scope\":[\"variable.parameter.function.coffee\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"CoffeeScript Assignments\",\"scope\":[\"variable.assignment.coffee\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"C# Readwrite Variables\",\"scope\":[\"variable.other.readwrite.cs\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"C# Classes & Storage types\",\"scope\":[\"entity.name.type.class.cs\",\"storage.type.cs\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"C# Namespaces\",\"scope\":[\"entity.name.type.namespace.cs\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Tag names in Stylesheets\",\"scope\":[\"entity.name.tag.css\",\"entity.name.tag.less\",\"entity.name.tag.custom.css\",\"support.constant.property-value.css\"],\"settings\":{\"foreground\":\"#9b504e\",\"fontStyle\":\"\"}},{\"name\":\"Wildcard(*) selector in Stylesheets\",\"scope\":[\"entity.name.tag.wildcard.css\",\"entity.name.tag.wildcard.less\",\"entity.name.tag.wildcard.scss\",\"entity.name.tag.wildcard.sass\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"CSS Keyword Other Unit\",\"scope\":[\"keyword.other.unit.css\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Attribute Name for CSS\",\"scope\":[\"meta.attribute-selector.css entity.other.attribute-name.attribute\",\"variable.other.readwrite.js\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Elixir Classes\",\"scope\":[\"source.elixir support.type.elixir\",\"source.elixir meta.module.elixir entity.name.class.elixir\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Elixir Functions\",\"scope\":[\"source.elixir entity.name.function\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Elixir Constants\",\"scope\":[\"source.elixir constant.other.symbol.elixir\",\"source.elixir constant.other.keywords.elixir\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Elixir String Punctuations\",\"scope\":[\"source.elixir punctuation.definition.string\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Elixir\",\"scope\":[\"source.elixir variable.other.readwrite.module.elixir\",\"source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Elixir Binary Punctuations\",\"scope\":[\"source.elixir .punctuation.binary.elixir\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Closure Constant Keyword\",\"scope\":[\"constant.keyword.clojure\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Go Function Calls\",\"scope\":[\"source.go meta.function-call.go\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Go Keywords\",\"scope\":[\"source.go keyword.package.go\",\"source.go keyword.import.go\",\"source.go keyword.function.go\",\"source.go keyword.type.go\",\"source.go keyword.struct.go\",\"source.go keyword.interface.go\",\"source.go keyword.const.go\",\"source.go keyword.var.go\",\"source.go keyword.map.go\",\"source.go keyword.channel.go\",\"source.go keyword.control.go\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"Go Constants e.g. nil, string format (%s, %d, etc.)\",\"scope\":[\"source.go constant.language.go\",\"source.go constant.other.placeholder.go\"],\"settings\":{\"foreground\":\"#a54a4a\"}},{\"name\":\"C++ Functions\",\"scope\":[\"entity.name.function.preprocessor.cpp\",\"entity.scope.name.cpp\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"C++ Meta Namespace\",\"scope\":[\"meta.namespace-block.cpp\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"C++ Language Primitive Storage\",\"scope\":[\"storage.type.language.primitive.cpp\"],\"settings\":{\"foreground\":\"#a54a4a\"}},{\"name\":\"C++ Preprocessor Macro\",\"scope\":[\"meta.preprocessor.macro.cpp\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"C++ Variable Parameter\",\"scope\":[\"variable.parameter\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Powershell Variables\",\"scope\":[\"variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Powershell Function\",\"scope\":[\"support.function.powershell\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"ID Attribute Name in HTML\",\"scope\":[\"entity.other.attribute-name.id.html\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"HTML Punctuation Definition Tag\",\"scope\":[\"punctuation.definition.tag.html\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"HTML Doctype\",\"scope\":[\"meta.tag.sgml.doctype.html\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"JavaScript Classes\",\"scope\":[\"meta.class entity.name.type.class.js\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"JavaScript Method Declaration e.g. `constructor`\",\"scope\":[\"meta.method.declaration storage.type.js\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"JavaScript Terminator\",\"scope\":[\"terminator.js\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"JavaScript Meta Punctuation Definition\",\"scope\":[\"meta.js punctuation.definition.js\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"Entity Names in Code Documentations\",\"scope\":[\"entity.name.type.instance.jsdoc\",\"entity.name.type.instance.phpdoc\"],\"settings\":{\"foreground\":\"#4f687d\"}},{\"name\":\"Other Variables in Code Documentations\",\"scope\":[\"variable.other.jsdoc\",\"variable.other.phpdoc\"],\"settings\":{\"foreground\":\"#406c80\"}},{\"name\":\"JavaScript module imports and exports\",\"scope\":[\"variable.other.meta.import.js\",\"meta.import.js variable.other\",\"variable.other.meta.export.js\",\"meta.export.js variable.other\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"JavaScript Variable Parameter Function\",\"scope\":[\"variable.parameter.function.js\"],\"settings\":{\"foreground\":\"#5760a6\"}},{\"name\":\"JavaScript[React] Variable Other Object\",\"scope\":[\"variable.other.object.js\",\"variable.other.object.jsx\",\"variable.object.property.js\",\"variable.object.property.jsx\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"JavaScript Variables\",\"scope\":[\"variable.js\",\"variable.other.js\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"JavaScript Entity Name Type\",\"scope\":[\"entity.name.type.js\",\"entity.name.type.module.js\"],\"settings\":{\"foreground\":\"#111111\",\"fontStyle\":\"\"}},{\"name\":\"JavaScript Support Classes\",\"scope\":[\"support.class.js\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"JSON Property Names\",\"scope\":[\"support.type.property-name.json\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"JSON Support Constants\",\"scope\":[\"support.constant.json\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"JSON Property values (string)\",\"scope\":[\"meta.structure.dictionary.value.json string.quoted.double\"],\"settings\":{\"foreground\":\"#7f5889\"}},{\"name\":\"Strings in JSON values\",\"scope\":[\"string.quoted.double.json punctuation.definition.string.json\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Specific JSON Property values like null\",\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value constant.language\"],\"settings\":{\"foreground\":\"#a54a4a\"}},{\"name\":\"JavaScript Other Variable\",\"scope\":[\"variable.other.object.js\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Ruby Variables\",\"scope\":[\"variable.other.ruby\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"Ruby Class\",\"scope\":[\"entity.name.type.class.ruby\"],\"settings\":{\"foreground\":\"#9b504e\"}},{\"name\":\"Ruby Hashkeys\",\"scope\":[\"constant.language.symbol.hashkey.ruby\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Ruby Symbols\",\"scope\":[\"constant.language.symbol.ruby\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"LESS Tag names\",\"scope\":[\"entity.name.tag.less\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"LESS Keyword Other Unit\",\"scope\":[\"keyword.other.unit.css\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Attribute Name for LESS\",\"scope\":[\"meta.attribute-selector.less entity.other.attribute-name.attribute\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Markdown Headings\",\"scope\":[\"markup.heading.markdown\",\"markup.heading.setext.1.markdown\",\"markup.heading.setext.2.markdown\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Markdown Italics\",\"scope\":[\"markup.italic.markdown\"],\"settings\":{\"foreground\":\"#8d46b4\",\"fontStyle\":\"italic\"}},{\"name\":\"Markdown Bold\",\"scope\":[\"markup.bold.markdown\"],\"settings\":{\"foreground\":\"#3c63b3\",\"fontStyle\":\"bold\"}},{\"name\":\"Markdown Quote + others\",\"scope\":[\"markup.quote.markdown\"],\"settings\":{\"foreground\":\"#5e6487\"}},{\"name\":\"Markdown Raw Code + others\",\"scope\":[\"markup.inline.raw.markdown\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Markdown Links\",\"scope\":[\"markup.underline.link.markdown\",\"markup.underline.link.image.markdown\"],\"settings\":{\"foreground\":\"#97505b\",\"fontStyle\":\"underline\"}},{\"name\":\"Markdown Link Title and Description\",\"scope\":[\"string.other.link.title.markdown\",\"string.other.link.description.markdown\"],\"settings\":{\"foreground\":\"#403f53\",\"fontStyle\":\"underline\"}},{\"name\":\"Markdown Punctuation\",\"scope\":[\"punctuation.definition.string.markdown\",\"punctuation.definition.string.begin.markdown\",\"punctuation.definition.string.end.markdown\",\"meta.link.inline.markdown punctuation.definition.string\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Markdown MetaData Punctuation\",\"scope\":[\"punctuation.definition.metadata.markdown\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Markdown List Punctuation\",\"scope\":[\"beginning.punctuation.definition.list.markdown\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Markdown Inline Raw String\",\"scope\":[\"markup.inline.raw.string.markdown\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"PHP Variables\",\"scope\":[\"variable.other.php\",\"variable.other.property.php\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Support Classes in PHP\",\"scope\":[\"support.class.php\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Punctuations in PHP function calls\",\"scope\":[\"meta.function-call.php punctuation\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"PHP Global Variables\",\"scope\":[\"variable.other.global.php\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Declaration Punctuation in PHP Global Variables\",\"scope\":[\"variable.other.global.php punctuation.definition.variable\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Language Constants in Python\",\"scope\":[\"constant.language.python\"],\"settings\":{\"foreground\":\"#a54a4a\"}},{\"name\":\"Python Function Parameter and Arguments\",\"scope\":[\"variable.parameter.function.python\",\"meta.function-call.arguments.python\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Python Function Call\",\"scope\":[\"meta.function-call.python\",\"meta.function-call.generic.python\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"Punctuations in Python\",\"scope\":[\"punctuation.python\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"Decorator Functions in Python\",\"scope\":[\"entity.name.function.decorator.python\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Python Language Variable\",\"scope\":[\"source.python variable.language.special\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Python import control keyword\",\"scope\":[\"keyword.control\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"SCSS Variable\",\"scope\":[\"variable.scss\",\"variable.sass\",\"variable.parameter.url.scss\",\"variable.parameter.url.sass\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Variables in SASS At-Rules\",\"scope\":[\"source.css.scss meta.at-rule variable\",\"source.css.sass meta.at-rule variable\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"Variables in SASS At-Rules\",\"scope\":[\"source.css.scss meta.at-rule variable\",\"source.css.sass meta.at-rule variable\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"Attribute Name for SASS\",\"scope\":[\"meta.attribute-selector.scss entity.other.attribute-name.attribute\",\"meta.attribute-selector.sass entity.other.attribute-name.attribute\"],\"settings\":{\"foreground\":\"#aa0982\"}},{\"name\":\"Tag names in SASS\",\"scope\":[\"entity.name.tag.scss\",\"entity.name.tag.sass\"],\"settings\":{\"foreground\":\"#097174\"}},{\"name\":\"SASS Keyword Other Unit\",\"scope\":[\"keyword.other.unit.scss\",\"keyword.other.unit.sass\"],\"settings\":{\"foreground\":\"#8d46b4\"}},{\"name\":\"TypeScript[React] Variables and Object Properties\",\"scope\":[\"variable.other.readwrite.alias.ts\",\"variable.other.readwrite.alias.tsx\",\"variable.other.readwrite.ts\",\"variable.other.readwrite.tsx\",\"variable.other.object.ts\",\"variable.other.object.tsx\",\"variable.object.property.ts\",\"variable.object.property.tsx\",\"variable.other.ts\",\"variable.other.tsx\",\"variable.tsx\",\"variable.ts\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"TypeScript[React] Entity Name Types\",\"scope\":[\"entity.name.type.ts\",\"entity.name.type.tsx\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"TypeScript[React] Node Classes\",\"scope\":[\"support.class.node.ts\",\"support.class.node.tsx\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"TypeScript[React] Entity Name Types as Parameters\",\"scope\":[\"meta.type.parameters.ts entity.name.type\",\"meta.type.parameters.tsx entity.name.type\"],\"settings\":{\"foreground\":\"#4f687d\"}},{\"name\":\"TypeScript[React] Import/Export Punctuations\",\"scope\":[\"meta.import.ts punctuation.definition.block\",\"meta.import.tsx punctuation.definition.block\",\"meta.export.ts punctuation.definition.block\",\"meta.export.tsx punctuation.definition.block\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"TypeScript[React] Punctuation Decorators\",\"scope\":[\"meta.decorator punctuation.decorator.ts\",\"meta.decorator punctuation.decorator.tsx\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"TypeScript[React] Punctuation Decorators\",\"scope\":[\"meta.tag.js meta.jsx.children.tsx\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"YAML Entity Name Tags\",\"scope\":[\"entity.name.tag.yaml\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"JavaScript Variable Other ReadWrite\",\"scope\":[\"variable.other.readwrite.js\",\"variable.parameter\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"Support Class Component\",\"scope\":[\"support.class.component.js\",\"support.class.component.tsx\"],\"settings\":{\"foreground\":\"#aa0982\",\"fontStyle\":\"\"}},{\"name\":\"Text nested in React tags\",\"scope\":[\"meta.jsx.children\",\"meta.jsx.children.js\",\"meta.jsx.children.tsx\"],\"settings\":{\"foreground\":\"#403f53\"}},{\"name\":\"TypeScript Classes\",\"scope\":[\"meta.class entity.name.type.class.tsx\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"TypeScript Entity Name Type\",\"scope\":[\"entity.name.type.tsx\",\"entity.name.type.module.tsx\"],\"settings\":{\"foreground\":\"#111111\"}},{\"name\":\"TypeScript Class Variable Keyword\",\"scope\":[\"meta.class.ts meta.var.expr.ts storage.type.ts\",\"meta.class.tsx meta.var.expr.tsx storage.type.tsx\"],\"settings\":{\"foreground\":\"#79598f\"}},{\"name\":\"TypeScript Method Declaration e.g. `constructor`\",\"scope\":[\"meta.method.declaration storage.type.ts\",\"meta.method.declaration storage.type.tsx\"],\"settings\":{\"foreground\":\"#3c63b3\"}},{\"name\":\"normalize font style of certain components\",\"scope\":[\"meta.property-list.css meta.property-value.css variable.other.less\",\"meta.property-list.scss variable.scss\",\"meta.property-list.sass variable.sass\",\"meta.brace\",\"keyword.operator.operator\",\"keyword.operator.or.regexp\",\"keyword.operator.expression.in\",\"keyword.operator.relational\",\"keyword.operator.assignment\",\"keyword.operator.comparison\",\"keyword.operator.type\",\"keyword.operator\",\"keyword\",\"punctuation.definintion.string\",\"punctuation\",\"variable.other.readwrite.js\",\"storage.type\",\"source.css\",\"string.quoted\"],\"settings\":{\"fontStyle\":\"\"}}],\"styleOverrides\":{\"frames\":{\"editorBackground\":\"var(--sl-color-gray-7)\",\"terminalBackground\":\"var(--sl-color-gray-7)\",\"editorActiveTabBackground\":\"var(--sl-color-gray-7)\",\"terminalTitlebarDotsForeground\":\"color-mix(in srgb, var(--sl-color-gray-5), transparent 25%)\",\"terminalTitlebarDotsOpacity\":\"0.75\",\"inlineButtonForeground\":\"var(--sl-color-text)\",\"frameBoxShadowCssValue\":\"none\"},\"textMarkers\":{\"markBackground\":\"#0000001a\",\"markBorderColor\":\"#00000055\"}}}],\"defaultLocale\":\"en\",\"styleOverrides\":{\"borderRadius\":\"0px\",\"borderWidth\":\"1px\",\"codePaddingBlock\":\"0.75rem\",\"codePaddingInline\":\"1rem\",\"codeFontFamily\":\"var(--__sl-font-mono)\",\"codeFontSize\":\"var(--sl-text-code)\",\"codeLineHeight\":\"var(--sl-line-height)\",\"uiFontFamily\":\"var(--__sl-font)\",\"textMarkers\":{\"lineDiffIndicatorMarginLeft\":\"0.25rem\",\"defaultChroma\":\"45\",\"backgroundOpacity\":\"60%\"}},\"plugins\":[{\"name\":\"Starlight Plugin\",\"hooks\":{}},{\"name\":\"astro-expressive-code\",\"hooks\":{}}]}]],\"remarkRehype\":{},\"gfm\":true,\"smartypants\":true},\"security\":{\"checkOrigin\":true},\"env\":{\"schema\":{},\"validateSecrets\":false},\"experimental\":{\"clientPrerender\":false,\"contentIntellisense\":false,\"responsiveImages\":false},\"legacy\":{\"collections\":false},\"prefetch\":{\"prefetchAll\":true},\"i18n\":{\"defaultLocale\":\"en\",\"locales\":[\"en\"],\"routing\":{\"prefixDefaultLocale\":false,\"redirectToDefaultLocale\":false,\"fallbackType\":\"redirect\"}}}","docs",["Map",11,12,35,36,51,52,65,66,81,82,97,98,113,114],"01-welcome",{"id":11,"data":13,"body":22,"filePath":23,"digest":24,"rendered":25},{"title":14,"description":15,"editUrl":16,"head":17,"template":18,"sidebar":19,"pagefind":16,"draft":20},"Introduction","An introduction to the onboarding tutorial",true,[],"doc",{"hidden":20,"attrs":21},false,{},"# The Vonage Messages API\n\nThe Vonage Messages API provides the ability to send messages to various channels, including Facebook Messenger, SMS, WhatsApp and Viber. This tutorial looks at using the Messages API to send an SMS message.","src/content/docs/01-welcome.md","8ca694855c58a134",{"html":26,"metadata":27},"\u003Ch1 id=\"the-vonage-messages-api\">The Vonage Messages API\u003C/h1>\n\u003Cp>The Vonage Messages API provides the ability to send messages to various channels, including Facebook Messenger, SMS, WhatsApp and Viber. This tutorial looks at using the Messages API to send an SMS message.\u003C/p>",{"headings":28,"imagePaths":33,"frontmatter":34},[29],{"depth":30,"slug":31,"text":32},1,"the-vonage-messages-api","The Vonage Messages API",[],{"title":14,"description":15},"06-whats-next",{"id":35,"data":37,"body":42,"filePath":43,"digest":44,"rendered":45},{"title":38,"editUrl":16,"head":39,"template":18,"sidebar":40,"pagefind":16,"draft":20},"What's Next?",[],{"hidden":20,"attrs":41},{},"Please visit the \u003Ca href=\"https://developer.vonage.com\" target=\"_blank\">Vonage Developer Portal\u003C/a> to learn more about the Vonage APIs.\n\n> Right click to open URLs in a new tab","src/content/docs/06-whats-next.md","5299f35b68036990",{"html":46,"metadata":47},"\u003Cp>Please visit the \u003Ca href=\"https://developer.vonage.com\" target=\"_blank\">Vonage Developer Portal\u003C/a> to learn more about the Vonage APIs.\u003C/p>\n\u003Cblockquote>\n\u003Cp>Right click to open URLs in a new tab\u003C/p>\n\u003C/blockquote>",{"headings":48,"imagePaths":49,"frontmatter":50},[],[],{"title":38},"index",{"id":51,"data":53,"filePath":63,"digest":64,"deferredRender":16},{"title":54,"description":55,"editUrl":16,"head":56,"template":57,"hero":58,"sidebar":61,"pagefind":16,"draft":20},"Vonage Messages API Onboarding - SMS (Node.js)","Get started building with the Vonage Messages API.",[],"splash",{"tagline":59,"actions":60},"Send an SMS with the Vonage Messages API!",[],{"hidden":20,"attrs":62},{},"src/content/docs/index.mdx","d18299650e3fc157","02-install-server-sdk",{"id":65,"data":67,"body":72,"filePath":73,"digest":74,"rendered":75},{"title":68,"editUrl":16,"head":69,"template":18,"sidebar":70,"pagefind":16,"draft":20},"Install the Server SDK",[],{"hidden":20,"attrs":71},{},"Type this command into the Terminal to install the Vonage Node Server SDK. \n\n![Terminal example](/terminal.png)\n\nYou can use the Vonage Node Server SDK to make calls to Vonage's various APIs.\n\n```sh\nnpm install @vonage/server-sdk\n```","src/content/docs/02-install-server-sdk.md","2e29cb8bca20e3b2",{"html":76,"metadata":77},"\u003Cp>Type this command into the Terminal to install the Vonage Node Server SDK.\u003C/p>\n\u003Cp>\u003Cimg src=\"/terminal.png\" alt=\"Terminal example\">\u003C/p>\n\u003Cp>You can use the Vonage Node Server SDK to make calls to Vonage’s various APIs.\u003C/p>\n\u003Cdiv class=\"expressive-code\">\u003Clink rel=\"stylesheet\" href=\"/_astro/ec.j8ofn.css\">\u003Cscript type=\"module\" src=\"/_astro/ec.8zarh.js\">\u003C/script>\u003Cfigure class=\"frame is-terminal not-content\">\u003Cfigcaption class=\"header\">\u003Cspan class=\"title\">\u003C/span>\u003Cspan class=\"sr-only\">Terminal window\u003C/span>\u003C/figcaption>\u003Cpre data-language=\"sh\">\u003Ccode>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">npm\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\"> \u003C/span>\u003Cspan style=\"--0:#ECC48D;--1:#3C63B3\">install\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\"> \u003C/span>\u003Cspan style=\"--0:#ECC48D;--1:#3C63B3\">@vonage/server-sdk\u003C/span>\u003C/div>\u003C/div>\u003C/code>\u003C/pre>\u003Cdiv class=\"copy\">\u003Cbutton title=\"Copy to clipboard\" data-copied=\"Copied!\" data-code=\"npm install @vonage/server-sdk\">\u003Cdiv>\u003C/div>\u003C/button>\u003C/div>\u003C/figure>\u003C/div>",{"headings":78,"imagePaths":79,"frontmatter":80},[],[],{"title":68},"05-run-code",{"id":81,"data":83,"body":88,"filePath":89,"digest":90,"rendered":91},{"title":84,"editUrl":16,"head":85,"template":18,"sidebar":86,"pagefind":16,"draft":20},"Run the Code",[],{"hidden":20,"attrs":87},{},"Now it is time to send the SMS. Run this command in the Terminal:\n\n```sh\nnode send-sms.js\n```","src/content/docs/05-run-code.md","9fc10dc58f138ccf",{"html":92,"metadata":93},"\u003Cp>Now it is time to send the SMS. Run this command in the Terminal:\u003C/p>\n\u003Cdiv class=\"expressive-code\">\u003Clink rel=\"stylesheet\" href=\"/_astro/ec.j8ofn.css\">\u003Cscript type=\"module\" src=\"/_astro/ec.8zarh.js\">\u003C/script>\u003Cfigure class=\"frame is-terminal not-content\">\u003Cfigcaption class=\"header\">\u003Cspan class=\"title\">\u003C/span>\u003Cspan class=\"sr-only\">Terminal window\u003C/span>\u003C/figcaption>\u003Cpre data-language=\"sh\">\u003Ccode>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">node\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\"> \u003C/span>\u003Cspan style=\"--0:#ECC48D;--1:#3C63B3\">send-sms.js\u003C/span>\u003C/div>\u003C/div>\u003C/code>\u003C/pre>\u003Cdiv class=\"copy\">\u003Cbutton title=\"Copy to clipboard\" data-copied=\"Copied!\" data-code=\"node send-sms.js\">\u003Cdiv>\u003C/div>\u003C/button>\u003C/div>\u003C/figure>\u003C/div>",{"headings":94,"imagePaths":95,"frontmatter":96},[],[],{"title":84},"04-send-sms-code",{"id":97,"data":99,"body":104,"filePath":105,"digest":106,"rendered":107},{"title":100,"editUrl":16,"head":101,"template":18,"sidebar":102,"pagefind":16,"draft":20},"Send SMS Code",[],{"hidden":20,"attrs":103},{},"This code will send the SMS. Copy into the bottom of `send-sms.js`:\n\n```js\nvonage.messages.send(\n new SMS(\n 'This is an SMS text message sent using the Messages API',\n TO_NUMBER,\n VONAGE_NUMBER,\n ),\n)\n.then(resp => console.log('SMS successfully sent. ID: ', resp.messageUUID))\n.catch(err => console.error(err));\n```\n\nThis uses the Vonage Node.js SDK to send an SMS message. If successful the response, containing the message UUID will be printed out to the console. Otherwise the error message will be printed out.","src/content/docs/04-send-sms-code.md","5084e566b99d9c2c",{"html":108,"metadata":109},"\u003Cp>This code will send the SMS. Copy into the bottom of \u003Ccode dir=\"auto\">send-sms.js\u003C/code>:\u003C/p>\n\u003Cdiv class=\"expressive-code\">\u003Clink rel=\"stylesheet\" href=\"/_astro/ec.j8ofn.css\">\u003Cscript type=\"module\" src=\"/_astro/ec.8zarh.js\">\u003C/script>\u003Cfigure class=\"frame not-content\">\u003Cfigcaption class=\"header\">\u003C/figcaption>\u003Cpre data-language=\"js\">\u003Ccode>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">vonage\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#FAF39F;--1:#111111\">messages\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">send\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">(\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\"> \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">new\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\"> \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">SMS\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">(\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\"> \u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">'\u003C/span>\u003Cspan style=\"--0:#ECC48D;--1:#9B504E\">This is an SMS text message sent using the Messages API\u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">'\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">,\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\"> \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">TO_NUMBER\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">,\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\"> \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">VONAGE_NUMBER\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">,\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\">\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\"> \u003C/span>\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">),\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">)\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">then\u003C/span>\u003Cspan style=\"--1:#403F53\">\u003Cspan style=\"--0:#D6DEEB\">(\u003C/span>\u003Cspan style=\"--0:#D7DBE0\">resp\u003C/span>\u003Cspan style=\"--0:#D6DEEB\"> \u003C/span>\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">=>\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\"> \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">console\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">log\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">(\u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">'\u003C/span>\u003Cspan style=\"--0:#ECC48D;--1:#9B504E\">SMS successfully sent. ID: \u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">'\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">, \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">resp\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">messageUUID\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">))\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">catch\u003C/span>\u003Cspan style=\"--1:#403F53\">\u003Cspan style=\"--0:#D6DEEB\">(\u003C/span>\u003Cspan style=\"--0:#D7DBE0\">err\u003C/span>\u003Cspan style=\"--0:#D6DEEB\"> \u003C/span>\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">=>\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\"> \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">console\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">error\u003C/span>\u003Cspan style=\"--1:#403F53\">\u003Cspan style=\"--0:#D6DEEB\">(\u003C/span>\u003Cspan style=\"--0:#D7DBE0\">err\u003C/span>\u003Cspan style=\"--0:#D6DEEB\">));\u003C/span>\u003C/span>\u003C/div>\u003C/div>\u003C/code>\u003C/pre>\u003Cdiv class=\"copy\">\u003Cbutton title=\"Copy to clipboard\" data-copied=\"Copied!\" data-code=\"vonage.messages.send( new SMS( 'This is an SMS text message sent using the Messages API', TO_NUMBER, VONAGE_NUMBER, ),).then(resp => console.log('SMS successfully sent. ID: ', resp.messageUUID)).catch(err => console.error(err));\">\u003Cdiv>\u003C/div>\u003C/button>\u003C/div>\u003C/figure>\u003C/div>\n\u003Cp>This uses the Vonage Node.js SDK to send an SMS message. If successful the response, containing the message UUID will be printed out to the console. Otherwise the error message will be printed out.\u003C/p>",{"headings":110,"imagePaths":111,"frontmatter":112},[],[],{"title":100},"03-initialize-client",{"id":113,"data":115,"body":120,"filePath":121,"digest":122,"rendered":123},{"title":116,"editUrl":16,"head":117,"template":18,"sidebar":118,"pagefind":16,"draft":20},"Initialize the Client and Variables",[],{"hidden":20,"attrs":119},{},"In this step, we will intialize the Vonage Client with some credentials and initialize some variables that will be needed later.\n\n| Key | Description |\n| --------------- | ------------------------------------------------------------------------------------------------------------------------- |\n| `VONAGE_NUMBER` | The phone number you are sending the message from. This is the number rented from Vonage when setting up the application. |\n| `TO_NUMBER` | The phone number you are sending the message to. |\n\n> Note: If your account is in the trial period, the `TO_NUMBER` can only be the phone number that you used to create the account. Also, don't use a leading + or 00 when entering a phone number, start with the country code, for example 447700900000. This is the E.164 number format.\n\nCopy this code into `send-sms.js`\n\n```js\nconst { Vonage } = require('@vonage/server-sdk');\nconst { SMS } = require('@vonage/messages');\n\nconst TO_NUMBER = ''\nconst VONAGE_NUMBER = process.env.VONAGE_NUMBER;\n\nconst vonage = new Vonage({\n apiKey: process.env.VONAGE_API_KEY,\n apiSecret: process.env.VONAGE_API_SECRET,\n applicationId: process.env.VONAGE_APPLICATION_ID,\n privateKey: process.env.VONAGE_PRIVATE_KEY,\n});\n```\n\nUpdate `TO_NUMBER` with the number you want to send an SMS to. The environment variables that are being used have been auto populated for you, you can view them in the `.env` file.","src/content/docs/03-initialize-client.md","a11f0982342a1a40",{"html":124,"metadata":125},"\u003Cp>In this step, we will intialize the Vonage Client with some credentials and initialize some variables that will be needed later.\u003C/p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u003Ctable>\u003Cthead>\u003Ctr>\u003Cth>Key\u003C/th>\u003Cth>Description\u003C/th>\u003C/tr>\u003C/thead>\u003Ctbody>\u003Ctr>\u003Ctd>\u003Ccode dir=\"auto\">VONAGE_NUMBER\u003C/code>\u003C/td>\u003Ctd>The phone number you are sending the message from. This is the number rented from Vonage when setting up the application.\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>\u003Ccode dir=\"auto\">TO_NUMBER\u003C/code>\u003C/td>\u003Ctd>The phone number you are sending the message to.\u003C/td>\u003C/tr>\u003C/tbody>\u003C/table>\n\u003Cblockquote>\n\u003Cp>Note: If your account is in the trial period, the \u003Ccode dir=\"auto\">TO_NUMBER\u003C/code> can only be the phone number that you used to create the account. Also, don’t use a leading + or 00 when entering a phone number, start with the country code, for example 447700900000. This is the E.164 number format.\u003C/p>\n\u003C/blockquote>\n\u003Cp>Copy this code into \u003Ccode dir=\"auto\">send-sms.js\u003C/code>\u003C/p>\n\u003Cdiv class=\"expressive-code\">\u003Clink rel=\"stylesheet\" href=\"/_astro/ec.j8ofn.css\">\u003Cscript type=\"module\" src=\"/_astro/ec.8zarh.js\">\u003C/script>\u003Cfigure class=\"frame not-content\">\u003Cfigcaption class=\"header\">\u003C/figcaption>\u003Cpre data-language=\"js\">\u003Ccode>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">const { \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">Vonage\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> } = \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">require\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">(\u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">'\u003C/span>\u003Cspan style=\"--0:#ECC48D;--1:#9B504E\">@vonage/server-sdk\u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">'\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">);\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">const { \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">SMS\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> } = \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">require\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">(\u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">'\u003C/span>\u003Cspan style=\"--0:#ECC48D;--1:#9B504E\">@vonage/messages\u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">'\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">);\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\n\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">const \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">TO_NUMBER\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> = \u003C/span>\u003Cspan style=\"--0:#D9F5DD;--1:#111111\">''\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">const \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">VONAGE_NUMBER\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> = \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">process\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#FAF39F;--1:#111111\">env\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">VONAGE_NUMBER\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">;\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\n\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">const \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">vonage\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> = \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">new\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> \u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">Vonage\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">(\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">{\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> \u003C/span>\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">apiKey: \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">process\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#FAF39F;--1:#111111\">env\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">VONAGE_API_KEY\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">,\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> \u003C/span>\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">apiSecret: \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">process\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#FAF39F;--1:#111111\">env\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">VONAGE_API_SECRET\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">,\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> \u003C/span>\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">applicationId: \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">process\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#FAF39F;--1:#111111\">env\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">VONAGE_APPLICATION_ID\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">,\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan class=\"indent\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\"> \u003C/span>\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">privateKey: \u003C/span>\u003Cspan style=\"--0:#7FDBCA;--1:#097174\">process\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#FAF39F;--1:#111111\">env\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">.\u003C/span>\u003Cspan style=\"--0:#82AAFF;--1:#3C63B3\">VONAGE_PRIVATE_KEY\u003C/span>\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">,\u003C/span>\u003C/div>\u003C/div>\u003Cdiv class=\"ec-line\">\u003Cdiv class=\"code\">\u003Cspan style=\"--0:#C792EA;--1:#8D46B4\">}\u003C/span>\u003Cspan style=\"--0:#D6DEEB;--1:#403F53\">);\u003C/span>\u003C/div>\u003C/div>\u003C/code>\u003C/pre>\u003Cdiv class=\"copy\">\u003Cbutton title=\"Copy to clipboard\" data-copied=\"Copied!\" data-code=\"const { Vonage } = require('@vonage/server-sdk');const { SMS } = require('@vonage/messages');const TO_NUMBER = ''const VONAGE_NUMBER = process.env.VONAGE_NUMBER;const vonage = new Vonage({ apiKey: process.env.VONAGE_API_KEY, apiSecret: process.env.VONAGE_API_SECRET, applicationId: process.env.VONAGE_APPLICATION_ID, privateKey: process.env.VONAGE_PRIVATE_KEY,});\">\u003Cdiv>\u003C/div>\u003C/button>\u003C/div>\u003C/figure>\u003C/div>\n\u003Cp>Update \u003Ccode dir=\"auto\">TO_NUMBER\u003C/code> with the number you want to send an SMS to. The environment variables that are being used have been auto populated for you, you can view them in the \u003Ccode dir=\"auto\">.env\u003C/code> file.\u003C/p>",{"headings":126,"imagePaths":127,"frontmatter":128},[],[],{"title":116}] \ No newline at end of file diff --git a/tutorials/messages_api-node-sms/.astro/settings.json b/tutorials/messages_api-node-sms/.astro/settings.json index ed5692d..7a4f0d3 100644 --- a/tutorials/messages_api-node-sms/.astro/settings.json +++ b/tutorials/messages_api-node-sms/.astro/settings.json @@ -1,5 +1,5 @@ { "_variables": { - "lastUpdateCheck": 1736170921507 + "lastUpdateCheck": 1737738643821 } } \ No newline at end of file diff --git a/tutorials/messages_api-node-sms/.astro/types.d.ts b/tutorials/messages_api-node-sms/.astro/types.d.ts index 9a2a78c..03d7cc4 100644 --- a/tutorials/messages_api-node-sms/.astro/types.d.ts +++ b/tutorials/messages_api-node-sms/.astro/types.d.ts @@ -1,2 +1,2 @@ /// -/// \ No newline at end of file +/// \ No newline at end of file diff --git a/tutorials/messages_api-node-sms/public/terminal.png b/tutorials/messages_api-node-sms/public/terminal.png new file mode 100644 index 0000000000000000000000000000000000000000..83033cd3d4242128fbbd8a77d4a0659c6f35bf8a GIT binary patch literal 42309 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 Sx@~muPgVKU@$}!!uKgeL!{WgJ literal 0 HcmV?d00001 diff --git a/tutorials/messages_api-node-sms/src/content/docs/02-install-server-sdk.md b/tutorials/messages_api-node-sms/src/content/docs/02-install-server-sdk.md index fd75412..d54f212 100644 --- a/tutorials/messages_api-node-sms/src/content/docs/02-install-server-sdk.md +++ b/tutorials/messages_api-node-sms/src/content/docs/02-install-server-sdk.md @@ -2,8 +2,12 @@ title: Install the Server SDK --- -Type this command into the Terminal to install the Vonage Node Server SDK. You can use the Vonage Node Server SDK to make calls to Vonage's various APIs. +Type this command into the Terminal to install the Vonage Node Server SDK. + +![Terminal example](/terminal.png) + +You can use the Vonage Node Server SDK to make calls to Vonage's various APIs. ```sh npm install @vonage/server-sdk -``` +``` \ No newline at end of file diff --git a/tutorials/messages_api-node-sms/tutorial-config.json b/tutorials/messages_api-node-sms/tutorial-config.json index f0df058..83a1a43 100644 --- a/tutorials/messages_api-node-sms/tutorial-config.json +++ b/tutorials/messages_api-node-sms/tutorial-config.json @@ -5,5 +5,5 @@ "panels": [ "terminal" ], - "version": "0.7.0" + "version": "0.8.0" } \ No newline at end of file From 2c4bdcb49337ff22faf8c2aa8a7c0b589be3ad87 Mon Sep 17 00:00:00 2001 From: Abdulhakim Ajetunmobi Date: Mon, 27 Jan 2025 10:24:36 +0000 Subject: [PATCH 2/2] reorder terminal page --- .../src/content/docs/02-install-server-sdk.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tutorials/messages_api-node-sms/src/content/docs/02-install-server-sdk.md b/tutorials/messages_api-node-sms/src/content/docs/02-install-server-sdk.md index d54f212..5041343 100644 --- a/tutorials/messages_api-node-sms/src/content/docs/02-install-server-sdk.md +++ b/tutorials/messages_api-node-sms/src/content/docs/02-install-server-sdk.md @@ -4,10 +4,10 @@ title: Install the Server SDK Type this command into the Terminal to install the Vonage Node Server SDK. -![Terminal example](/terminal.png) - -You can use the Vonage Node Server SDK to make calls to Vonage's various APIs. - ```sh npm install @vonage/server-sdk -``` \ No newline at end of file +``` + +![Terminal example](/terminal.png) + +You can use the Vonage Node Server SDK to make calls to Vonage's various APIs. \ No newline at end of file