diff --git a/package/README.md b/package/README.md index 8a81203..30be08d 100644 --- a/package/README.md +++ b/package/README.md @@ -57,9 +57,7 @@ import { defineConfig } from "astro/config"; // https://astro.build/config export default defineConfig({ + integrations: [astroGist({ - // OPTIONAL CONFIG OPTIONS - // Enable the Astrojs/MDX Integration - Default: true - MDXIntegration: true + theme: 'github-dark' // OPTIONAL, if not set defaults to Astro's Houston, Only Available options are Shiki Bundled options + })] }); ``` @@ -89,6 +87,8 @@ This Utility is meant to display a single Gist as Codeblocks using ExpressiveCod ```astro --- import { GetGist } from "@matthiesenxyz/astro-gists/components" +// OR +import GetGist from "@matthiesenxyz/astro-gists/GetGist" --- ` component to access the same configuration preprocessor - * function as the one used by the integration. - * - * It also provides access to all of the Expressive Code classes and functions without having - * to install `astro-expressive-code` as an additional dependency into a user's project - * (and thereby risiking version conflicts). - * - * Note: This file is intentionally not a TypeScript module to allow access to all exported - * functionality even if TypeScript is not available, e.g. from the `ec.config.mjs` file - * that does not get processed by Vite. - */ - -export * from 'astro-expressive-code'; - -// @ts-ignore - Types are provided by the separate `expressive-code.d.ts` file -export function defineEcConfig(config) { - return config; -} \ No newline at end of file diff --git a/package/internal.ts b/package/internal.ts deleted file mode 100644 index 8a02e75..0000000 --- a/package/internal.ts +++ /dev/null @@ -1,5 +0,0 @@ -/** - * @file This file contains utility functions imported by the `` component. - */ - -export { getGistsEcConfigPreprocessor } from './src/integrations/expressive-code.js'; \ No newline at end of file diff --git a/package/package.json b/package/package.json index 6130117..0ee06b9 100644 --- a/package/package.json +++ b/package/package.json @@ -31,25 +31,21 @@ "sideEffects": false, "exports": { ".": "./src/index.ts", - "./expressive-code": { - "types": "./expressive-code.d.ts", - "default": "./expressive-code.mjs" - }, - "./internal": "./internal.ts", "./components": "./src/components/index.ts", - "./components/*": "./src/components/*" + "./GetGist": "./src/components/GetGist.astro", + "./GetGistGroup": "./src/components/GetGistGroup.astro" }, "scripts": {}, "type": "module", "peerDependencies": { - "astro": "^4.4.0" + "astro": "^4.4.1" }, "dependencies": { - "@astrojs/mdx": "2.1.1", "@expressive-code/plugin-line-numbers": "^0.33.4", "@octokit/types": "^12.6.0", - "astro-expressive-code": "^0.33.4", "astro-integration-kit": "^0.5.1", + "expressive-code": "^0.33.4", + "hast-util-to-html": "^8.0.4", "octokit": "^3.1.2", "vite": "^5.1.5" } diff --git a/package/src/components/CodeBlob.astro b/package/src/components/CodeBlob.astro new file mode 100644 index 0000000..427750b --- /dev/null +++ b/package/src/components/CodeBlob.astro @@ -0,0 +1,64 @@ +--- +import { pluginLineNumbers } from '@expressive-code/plugin-line-numbers' +import { ExpressiveCode, loadShikiTheme, type BundledShikiTheme, ExpressiveCodeTheme } from 'expressive-code' +import { toHtml } from 'hast-util-to-html' +import fs from 'node:fs' +import config from "virtual:astro-gists/config"; + +const jsoncString = fs.readFileSync(new URL(`../themes/houston.jsonc`, import.meta.url), 'utf-8') +const houston = ExpressiveCodeTheme.fromJSONString(jsoncString) + +const theme = config.theme + +const { code, raw_url, locale, + lang = '', meta = '', ...props + } = Astro.props + +const engine = new ExpressiveCode({ + themes: [theme ? await loadShikiTheme(theme as BundledShikiTheme) : houston], + plugins: [pluginLineNumbers()], +}) + +const baseStyles = await engine.getBaseStyles(); +const themeStyles = await engine.getThemeStyles(); +const jsModules = await engine.getJsModules(); + +const { renderedGroupAst, styles } = await engine.render({ + language: lang, meta, locale, code, props, }) + +let htmlContent = toHtml(renderedGroupAst) + +const stylesToPrepend: string[] = [] +stylesToPrepend.push(baseStyles, themeStyles, ...styles) +if (stylesToPrepend.length) { + htmlContent = `${htmlContent}` +} + +const scriptsToPrepend: string[] = [] +scriptsToPrepend.push(...jsModules) +if (scriptsToPrepend.length) { + htmlContent = `${htmlContent}` +} +--- +
+View + +
+ + diff --git a/package/src/components/GetGist.astro b/package/src/components/GetGist.astro index 2c86e80..19d8d8e 100644 --- a/package/src/components/GetGist.astro +++ b/package/src/components/GetGist.astro @@ -1,6 +1,6 @@ --- import { getGistFile } from "../utils" -import { Code } from 'astro-expressive-code/components' +import CodeBlob from "./CodeBlob.astro" export interface Props { /** REQUIRED: Used to define the desired GitHub Gist ID */ @@ -17,37 +17,19 @@ export interface Props { wrap?: boolean; } -const { gistId, filename, showLineNumbers, wrap } = Astro.props as Props; +const { gistId, filename, wrap, showLineNumbers } = Astro.props as Props; -const SHOWLINENUMBERS = showLineNumbers ? showLineNumbers : showLineNumbers == undefined ? true : false; const WRAP = wrap ? wrap : wrap == undefined ? true : false; +const SLN = showLineNumbers ? showLineNumbers : showLineNumbers == undefined ? true : false; const Gist = await getGistFile( gistId, filename); --- { Gist && - -
- View - -
} - - \ No newline at end of file diff --git a/package/src/components/GetGistGroup.astro b/package/src/components/GetGistGroup.astro index 1c9fe03..e3adb62 100644 --- a/package/src/components/GetGistGroup.astro +++ b/package/src/components/GetGistGroup.astro @@ -1,6 +1,6 @@ --- import { getGistGroup } from "../utils" -import { GetGist } from "./index" +import CodeBlob from "./CodeBlob.astro"; export interface Props { /** REQUIRED: Used to define the desired GitHub Gist ID */ @@ -15,38 +15,28 @@ export interface Props { wrap?: boolean; } -const { gistId, showLineNumbers, wrap } = Astro.props as Props; +const { gistId, wrap, showLineNumbers } = Astro.props as Props; -const SHOWLINENUMBERS = showLineNumbers ? showLineNumbers : showLineNumbers == undefined ? true : false; const WRAP = wrap ? wrap : wrap == undefined ? true : false; +const SLN = showLineNumbers ? showLineNumbers : showLineNumbers == undefined ? true : false; const Gist = await getGistGroup(gistId); -const files = Gist?.files; - -const filed = Object.keys(files as object); - - +const files = Gist.files; --- { Gist && ( -
- { filed.map((file) => ( -
- + {Object.keys(files).map((file) => { + const { content, filename, language, raw_url } = files[file]; + return ( + -
- ))} + ); + })}
) } - - \ No newline at end of file diff --git a/package/src/components/index.ts b/package/src/components/index.ts index 888b025..2a2c8d9 100644 --- a/package/src/components/index.ts +++ b/package/src/components/index.ts @@ -1,2 +1,2 @@ -export { default as GetGist} from "./GetGist.astro" -export { default as GetGistGroup} from "./GetGistGroup.astro" \ No newline at end of file +export { default as GetGist} from "./GetGist.astro"; +export { default as GetGistGroup} from "./GetGistGroup.astro"; \ No newline at end of file diff --git a/package/src/integration.ts b/package/src/integration.ts index 13e1ad4..c48523c 100644 --- a/package/src/integration.ts +++ b/package/src/integration.ts @@ -1,13 +1,23 @@ import { defineIntegration, createResolver } from "astro-integration-kit" import { corePlugins } from "astro-integration-kit/plugins" -import { astroGistsExpressiveCode } from "./integrations/expressive-code" import { z } from "astro/zod"; -import mdx from "@astrojs/mdx"; import { loadEnv } from "vite"; +import { type BundledShikiTheme } from 'expressive-code' // Load environment variables const { GITHUB_PERSONAL_TOKEN } = loadEnv("all", process.cwd(), "GITHUB_"); +export const optionsSchema = z.object({ + /** + * Optional: Allows the user to change the default theme for the code blocks. + * + * All available themes are listed in the [Shiki documentation](https://shiki.matsu.io/docs/themes). + */ + theme: z.custom().optional(), + }); + +export type UserConfig = z.infer + /** Astro-Gist - An Astro.js integration for embedding GitHub Gists in your Astro.js project. * @example * import { defineConfig } from "astro/config"; @@ -16,26 +26,23 @@ const { GITHUB_PERSONAL_TOKEN } = loadEnv("all", process.cwd(), "GITHUB_"); * export default defineConfig({ * integrations: [ * astroGist({ - * // Enable the Astrojs/MDX Integration - Default: true - * MDXIntegration: true + * // Optional: Change the default theme for the code blocks. + * // Default: `Astro Houston (Custom)` If you want to use the default theme, you can omit this option. + * theme: "github-dark" * }) * ] * }); */ export default defineIntegration({ name: "@matthiesenxyz/astro-gists", - optionsSchema: z.object({ - /** Enables the astrojs/mdx Integration */ - MDXIntegration: z.boolean().optional().default(true), - }), + optionsSchema, plugins: [...corePlugins], setup({ options }) { const { resolve } = createResolver(import.meta.url) return { "astro:config:setup": ({ - watchIntegration, hasIntegration, - updateConfig, logger, config + watchIntegration, addVirtualImports, logger, }) => { logger.info("Setting up Astro Gists Integration.") const configSetup = logger.fork("astro-gists/config:setup") @@ -48,38 +55,11 @@ export default defineIntegration({ configSetup.warn("GITHUB_PERSONAL_TOKEN not found. Please add it to your .env file. Without it, you will be limited to 60 requests per hour.") } - // CHECK FOR EXISTING INTEGRATIONS - const integrations = [...config.integrations] + // Add virtual imports + addVirtualImports({ + "virtual:astro-gists/config": `export default ${JSON.stringify(options)}`, + }); - // ADD ExpressiveCode INTEGRATION - if (!hasIntegration("astro-expressive-code")) { - configSetup.info("Loading Astro Gists Expressive Code Integration.") - integrations.push(...astroGistsExpressiveCode()) - } else { - configSetup.info("Astro Expressive Code Integration already loaded.") - } - - // ADD MDX INTEGRATION IF ENABLED - if (options.MDXIntegration && hasIntegration("@astrojs/mdx")) { - configSetup.warn("@astrojs/mdx Integration already loaded.In some cases this could cause issues. Please remove it from your astro.config.mjs file. as it will be added automatically.") - } - if (options.MDXIntegration && !hasIntegration("@astrojs/mdx")) { - configSetup.info("Loading @astrojs/mdx Integration.") - integrations.push(mdx()) - } - if (!options.MDXIntegration) { - configSetup.info("Internal MDX Integration Disabled. Skipping...") - } - - // UPDATE All integrations - try { - updateConfig({ - integrations: [...astroGistsExpressiveCode(), mdx()] - }) - } catch (e) { - logger.error(e as string); - throw `@matthiesenxyz/astro-gists: Unable to Update Integrations...\n${e}`; - } }, "astro:config:done": ({ logger }) => { const configDone = logger.fork("astro-gists/config:done") diff --git a/package/src/integrations/expressive-code.ts b/package/src/integrations/expressive-code.ts deleted file mode 100644 index ad7b18a..0000000 --- a/package/src/integrations/expressive-code.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { - astroExpressiveCode, - type AstroExpressiveCodeOptions, - type CustomConfigPreprocessors -} from 'astro-expressive-code'; -import type { AstroIntegration } from 'astro'; -import { pluginLineNumbers } from '@expressive-code/plugin-line-numbers' - -/** - * Create an Expressive Code configuration preprocessor based on Starlight config. - * Used internally to set up Expressive Code and by the `` component. - */ -export function getGistsEcConfigPreprocessor(): CustomConfigPreprocessors['preprocessAstroIntegrationConfig'] { - return (input): AstroExpressiveCodeOptions => { - - const ecConfig = input.ecConfig as AstroExpressiveCodeOptions; // Replace {} with the appropriate value for ecConfig - const { - themes = ["github-dark", "github-light"] as const, - plugins = [pluginLineNumbers()], - ...rest - } = ecConfig; - - return { - themes, - plugins, - ...rest, - }; - }; -} - -export function astroGistsExpressiveCode(): AstroIntegration[] { - return [ - astroExpressiveCode({ - customConfigPreprocessors: { - preprocessAstroIntegrationConfig: getGistsEcConfigPreprocessor(), - preprocessComponentConfig: ` - import { getGistsEcConfigPreprocessor } from '@matthiesenxyz/astro-gists/internal' - - export default getGistsEcConfigPreprocessor() - `, - }, - }), - ]; -}; \ No newline at end of file diff --git a/package/src/themes/houston.jsonc b/package/src/themes/houston.jsonc new file mode 100644 index 0000000..63b0fd3 --- /dev/null +++ b/package/src/themes/houston.jsonc @@ -0,0 +1,2445 @@ +{ + "$schema": "vscode://schemas/color-theme", + "type": "dark", + "colors": { + "activityBar.activeBackground": "#343841", + "activityBar.background": "#17191e", + "activityBar.border": "#343841", + "activityBar.foreground": "#eef0f9", + "activityBar.inactiveForeground": "#858b98", + "activityBarBadge.background": "#4bf3c8", + "activityBarBadge.foreground": "#000000", + "badge.background": "#bfc1c9", + "badge.foreground": "#17191e", + "breadcrumb.activeSelectionForeground": "#eef0f9", + "breadcrumb.background": "#17191e", + "breadcrumb.focusForeground": "#eef0f9", + "breadcrumb.foreground": "#858b98", + "button.background": "#4bf3c8", + "button.foreground": "#17191e", + "button.hoverBackground": "#31c19c", + "button.secondaryBackground": "#545864", + "button.secondaryForeground": "#eef0f9", + "button.secondaryHoverBackground": "#858b98", + "checkbox.background": "#23262d", + "checkbox.border": "#00000000", + "checkbox.foreground": "#eef0f9", + "debugExceptionWidget.background": "#23262d", + "debugExceptionWidget.border": "#8996d5", + "debugToolBar.background": "#000000", + "debugToolBar.border": "#ffffff00", + "diffEditor.border": "#ffffff00", + "diffEditor.insertedTextBackground": "#4bf3c824", + "diffEditor.removedTextBackground": "#dc365724", + "dropdown.background": "#23262d", + "dropdown.border": "#00000000", + "dropdown.foreground": "#eef0f9", + "editor.background": "#17191e", + "editor.findMatchBackground": "#515c6a", + "editor.findMatchBorder": "#74879f", + "editor.findMatchHighlightBackground": "#ea5c0055", + "editor.findMatchHighlightBorder": "#ffffff00", + "editor.findRangeHighlightBackground": "#23262d", + "editor.findRangeHighlightBorder": "#b2434300", + "editor.foldBackground": "#ad5dca26", + "editor.foreground": "#eef0f9", + "editor.hoverHighlightBackground": "#5495d740", + "editor.inactiveSelectionBackground": "#2a2d34", + "editor.lineHighlightBackground": "#23262d", + "editor.lineHighlightBorder": "#ffffff00", + "editor.rangeHighlightBackground": "#ffffff0b", + "editor.rangeHighlightBorder": "#ffffff00", + "editor.selectionBackground": "#ad5dca44", + "editor.selectionHighlightBackground": "#add6ff34", + "editor.selectionHighlightBorder": "#495f77", + "editor.wordHighlightBackground": "#494949b8", + "editor.wordHighlightStrongBackground": "#004972b8", + "editorBracketMatch.background": "#545864", + "editorBracketMatch.border": "#ffffff00", + "editorCodeLens.foreground": "#bfc1c9", + "editorCursor.background": "#000000", + "editorCursor.foreground": "#aeafad", + "editorError.background": "#ffffff00", + "editorError.border": "#ffffff00", + "editorError.foreground": "#f4587e", + "editorGroup.border": "#343841", + "editorGroup.emptyBackground": "#17191e", + "editorGroupHeader.border": "#ffffff00", + "editorGroupHeader.tabsBackground": "#23262d", + "editorGroupHeader.tabsBorder": "#ffffff00", + "editorGutter.addedBackground": "#4bf3c8", + "editorGutter.background": "#17191e", + "editorGutter.commentRangeForeground": "#545864", + "editorGutter.deletedBackground": "#f06788", + "editorGutter.foldingControlForeground": "#545864", + "editorGutter.modifiedBackground": "#54b9ff", + "editorHoverWidget.background": "#252526", + "editorHoverWidget.border": "#454545", + "editorHoverWidget.foreground": "#cccccc", + "editorIndentGuide.activeBackground": "#858b98", + "editorIndentGuide.background": "#343841", + "editorInfo.background": "#4490bf00", + "editorInfo.border": "#4490bf00", + "editorInfo.foreground": "#54b9ff", + "editorLineNumber.activeForeground": "#858b98", + "editorLineNumber.foreground": "#545864", + "editorLink.activeForeground": "#54b9ff", + "editorMarkerNavigation.background": "#23262d", + "editorMarkerNavigationError.background": "#dc3657", + "editorMarkerNavigationInfo.background": "#54b9ff", + "editorMarkerNavigationWarning.background": "#ffd493", + "editorOverviewRuler.background": "#ffffff00", + "editorOverviewRuler.border": "#ffffff00", + "editorRuler.foreground": "#545864", + "editorSuggestWidget.background": "#252526", + "editorSuggestWidget.border": "#454545", + "editorSuggestWidget.foreground": "#d4d4d4", + "editorSuggestWidget.highlightForeground": "#0097fb", + "editorSuggestWidget.selectedBackground": "#062f4a", + "editorWarning.background": "#a9904000", + "editorWarning.border": "#ffffff00", + "editorWarning.foreground": "#fbc23b", + "editorWhitespace.foreground": "#cc75f450", + "editorWidget.background": "#343841", + "editorWidget.foreground": "#ffffff", + "editorWidget.resizeBorder": "#cc75f4", + "focusBorder": "#00daef", + "foreground": "#cccccc", + "gitDecoration.addedResourceForeground": "#4bf3c8", + "gitDecoration.conflictingResourceForeground": "#00daef", + "gitDecoration.deletedResourceForeground": "#f4587e", + "gitDecoration.ignoredResourceForeground": "#858b98", + "gitDecoration.modifiedResourceForeground": "#ffd493", + "gitDecoration.stageDeletedResourceForeground": "#c74e39", + "gitDecoration.stageModifiedResourceForeground": "#ffd493", + "gitDecoration.submoduleResourceForeground": "#54b9ff", + "gitDecoration.untrackedResourceForeground": "#4bf3c8", + "icon.foreground": "#cccccc", + "input.background": "#23262d", + "input.border": "#bfc1c9", + "input.foreground": "#eef0f9", + "input.placeholderForeground": "#858b98", + "inputOption.activeBackground": "#54b9ff", + "inputOption.activeBorder": "#007acc00", + "inputOption.activeForeground": "#17191e", + "list.activeSelectionBackground": "#2d4860", + "list.activeSelectionForeground": "#ffffff", + "list.dropBackground": "#17191e", + "list.focusBackground": "#54b9ff", + "list.focusForeground": "#ffffff", + "list.highlightForeground": "#ffffff", + "list.hoverBackground": "#343841", + "list.hoverForeground": "#eef0f9", + "list.inactiveSelectionBackground": "#17191e", + "list.inactiveSelectionForeground": "#eef0f9", + "listFilterWidget.background": "#2d4860", + "listFilterWidget.noMatchesOutline": "#dc3657", + "listFilterWidget.outline": "#54b9ff", + "menu.background": "#252526", + "menu.border": "#00000085", + "menu.foreground": "#cccccc", + "menu.selectionBackground": "#094771", + "menu.selectionBorder": "#00000000", + "menu.selectionForeground": "#4bf3c8", + "menu.separatorBackground": "#bbbbbb", + "menubar.selectionBackground": "#ffffff1a", + "menubar.selectionForeground": "#cccccc", + "merge.commonContentBackground": "#282828", + "merge.commonHeaderBackground": "#383838", + "merge.currentContentBackground": "#27403b", + "merge.currentHeaderBackground": "#367366", + "merge.incomingContentBackground": "#28384b", + "merge.incomingHeaderBackground": "#395f8f", + "minimap.background": "#17191e", + "minimap.errorHighlight": "#dc3657", + "minimap.findMatchHighlight": "#515c6a", + "minimap.selectionHighlight": "#3757b942", + "minimap.warningHighlight": "#fbc23b", + "minimapGutter.addedBackground": "#4bf3c8", + "minimapGutter.deletedBackground": "#f06788", + "minimapGutter.modifiedBackground": "#54b9ff", + "notificationCenter.border": "#ffffff00", + "notificationCenterHeader.background": "#343841", + "notificationCenterHeader.foreground": "#17191e", + "notificationToast.border": "#ffffff00", + "notifications.background": "#343841", + "notifications.border": "#bfc1c9", + "notifications.foreground": "#ffffff", + "notificationsErrorIcon.foreground": "#f4587e", + "notificationsInfoIcon.foreground": "#54b9ff", + "notificationsWarningIcon.foreground": "#ff8551", + "panel.background": "#23262d", + "panel.border": "#17191e", + "panelSection.border": "#17191e", + "panelTitle.activeBorder": "#e7e7e7", + "panelTitle.activeForeground": "#eef0f9", + "panelTitle.inactiveForeground": "#bfc1c9", + "peekView.border": "#007acc", + "peekViewEditor.background": "#001f33", + "peekViewEditor.matchHighlightBackground": "#ff8f0099", + "peekViewEditor.matchHighlightBorder": "#ee931e", + "peekViewEditorGutter.background": "#001f33", + "peekViewResult.background": "#252526", + "peekViewResult.fileForeground": "#ffffff", + "peekViewResult.lineForeground": "#bbbbbb", + "peekViewResult.matchHighlightBackground": "#ff0000", + "peekViewResult.selectionBackground": "#3399ff33", + "peekViewResult.selectionForeground": "#ffffff", + "peekViewTitle.background": "#1e1e1e", + "peekViewTitleDescription.foreground": "#ccccccb3", + "peekViewTitleLabel.foreground": "#ffffff", + "pickerGroup.border": "#ffffff00", + "pickerGroup.foreground": "#eef0f9", + "progressBar.background": "#4bf3c8", + "scrollbar.shadow": "#000000", + "scrollbarSlider.activeBackground": "#54b9ff66", + "scrollbarSlider.background": "#54586466", + "scrollbarSlider.hoverBackground": "#545864b3", + "selection.background": "#00daef56", + "settings.focusedRowBackground": "#ffffff07", + "settings.headerForeground": "#cccccc", + "sideBar.background": "#23262d", + "sideBar.border": "#17191e", + "sideBar.dropBackground": "#17191e", + "sideBar.foreground": "#bfc1c9", + "sideBarSectionHeader.background": "#343841", + "sideBarSectionHeader.border": "#17191e", + "sideBarSectionHeader.foreground": "#eef0f9", + "sideBarTitle.foreground": "#eef0f9", + "statusBar.background": "#17548b", + "statusBar.debuggingBackground": "#cc75f4", + "statusBar.debuggingForeground": "#eef0f9", + "statusBar.foreground": "#eef0f9", + "statusBar.noFolderBackground": "#6c3c7d", + "statusBar.noFolderForeground": "#eef0f9", + "statusBarItem.activeBackground": "#ffffff25", + "statusBarItem.hoverBackground": "#ffffff1f", + "statusBarItem.remoteBackground": "#297763", + "statusBarItem.remoteForeground": "#eef0f9", + "tab.activeBackground": "#17191e", + "tab.activeBorder": "#ffffff00", + "tab.activeBorderTop": "#eef0f9", + "tab.activeForeground": "#eef0f9", + "tab.border": "#17191e", + "tab.hoverBackground": "#343841", + "tab.hoverForeground": "#eef0f9", + "tab.inactiveBackground": "#23262d", + "tab.inactiveForeground": "#858b98", + "terminal.ansiBlack": "#17191e", + "terminal.ansiBlue": "#2b7eca", + "terminal.ansiBrightBlack": "#545864", + "terminal.ansiBrightBlue": "#54b9ff", + "terminal.ansiBrightCyan": "#00daef", + "terminal.ansiBrightGreen": "#4bf3c8", + "terminal.ansiBrightMagenta": "#cc75f4", + "terminal.ansiBrightRed": "#f4587e", + "terminal.ansiBrightWhite": "#fafafa", + "terminal.ansiBrightYellow": "#ffd493", + "terminal.ansiCyan": "#24c0cf", + "terminal.ansiGreen": "#23d18b", + "terminal.ansiMagenta": "#ad5dca", + "terminal.ansiRed": "#dc3657", + "terminal.ansiWhite": "#eef0f9", + "terminal.ansiYellow": "#ffc368", + "terminal.border": "#80808059", + "terminal.foreground": "#cccccc", + "terminal.selectionBackground": "#ffffff40", + "terminalCursor.background": "#0087ff", + "terminalCursor.foreground": "#ffffff", + "textLink.foreground": "#54b9ff", + "titleBar.activeBackground": "#17191e", + "titleBar.activeForeground": "#cccccc", + "titleBar.border": "#00000000", + "titleBar.inactiveBackground": "#3c3c3c99", + "titleBar.inactiveForeground": "#cccccc99", + "tree.indentGuidesStroke": "#545864", + "walkThrough.embeddedEditorBackground": "#00000050", + "widget.shadow": "#ffffff00", + //"actionBar.toggledBackground": "#54b9ff", + //"activityBar.activeBorder": "#eef0f9", + //"activityBar.dropBorder": "#eef0f9", + //"activityBarTop.activeBorder": "#e7e7e7", + //"activityBarTop.dropBorder": "#e7e7e7", + //"activityBarTop.foreground": "#e7e7e7", + //"activityBarTop.inactiveForeground": "#e7e7e799", + //"banner.background": "#2d4860", + //"banner.foreground": "#ffffff", + //"banner.iconForeground": "#54b9ff", + //"breadcrumbPicker.background": "#343841", + //"button.separator": "#17191e66", + //"charts.blue": "#54b9ff", + //"charts.foreground": "#cccccc", + //"charts.green": "#89d185", + //"charts.lines": "#cccccc80", + //"charts.orange": "#515c6a", + //"charts.purple": "#b180d7", + //"charts.red": "#f4587e", + //"charts.yellow": "#fbc23b", + //"chat.avatarBackground": "#1f1f1f", + //"chat.avatarForeground": "#cccccc", + //"chat.requestBackground": "#17191e9e", + //"chat.requestBorder": "#ffffff1a", + //"chat.slashCommandBackground": "#34414b", + //"chat.slashCommandForeground": "#40a6ff", + //"checkbox.selectBackground": "#343841", + //"checkbox.selectBorder": "#cccccc", + //"commandCenter.activeBackground": "#ffffff14", + //"commandCenter.activeBorder": "#cccccc4d", + //"commandCenter.activeForeground": "#cccccc", + //"commandCenter.background": "#ffffff0d", + //"commandCenter.border": "#cccccc33", + //"commandCenter.debuggingBackground": "#cc75f442", + //"commandCenter.foreground": "#cccccc", + //"commandCenter.inactiveBorder": "#cccccc26", + //"commandCenter.inactiveForeground": "#cccccc99", + //"commentsView.resolvedIcon": "#cccccc80", + //"commentsView.unresolvedIcon": "#00daef", + //"consoleninja.logTime": "#6a9955", + //"debugConsole.errorForeground": "#f48771", + //"debugConsole.infoForeground": "#54b9ff", + //"debugConsole.sourceForeground": "#cccccc", + //"debugConsole.warningForeground": "#fbc23b", + //"debugConsoleInputIcon.foreground": "#cccccc", + //"debugIcon.breakpointCurrentStackframeForeground": "#ffcc00", + //"debugIcon.breakpointDisabledForeground": "#848484", + //"debugIcon.breakpointForeground": "#e51400", + //"debugIcon.breakpointStackframeForeground": "#89d185", + //"debugIcon.breakpointUnverifiedForeground": "#848484", + //"debugIcon.continueForeground": "#75beff", + //"debugIcon.disconnectForeground": "#f48771", + //"debugIcon.pauseForeground": "#75beff", + //"debugIcon.restartForeground": "#89d185", + //"debugIcon.startForeground": "#89d185", + //"debugIcon.stepBackForeground": "#75beff", + //"debugIcon.stepIntoForeground": "#75beff", + //"debugIcon.stepOutForeground": "#75beff", + //"debugIcon.stepOverForeground": "#75beff", + //"debugIcon.stopForeground": "#f48771", + //"debugTokenExpression.boolean": "#4e94ce", + //"debugTokenExpression.error": "#f48771", + //"debugTokenExpression.name": "#c586c0", + //"debugTokenExpression.number": "#b5cea8", + //"debugTokenExpression.string": "#ce9178", + //"debugTokenExpression.value": "#cccccc99", + //"debugView.exceptionLabelBackground": "#6c2022", + //"debugView.exceptionLabelForeground": "#cccccc", + //"debugView.stateLabelBackground": "#88888844", + //"debugView.stateLabelForeground": "#cccccc", + //"debugView.valueChangedHighlight": "#569cd6", + //"descriptionForeground": "#ccccccb3", + //"diffEditor.diagonalFill": "#cccccc33", + //"diffEditor.insertedLineBackground": "#9bb95533", + //"diffEditor.move.border": "#8b8b8b9c", + //"diffEditor.moveActive.border": "#ffa500", + //"diffEditor.removedLineBackground": "#ff000033", + //"diffEditor.unchangedCodeBackground": "#74747429", + //"diffEditor.unchangedRegionBackground": "#23262d", + //"diffEditor.unchangedRegionForeground": "#cccccc", + //"diffEditor.unchangedRegionShadow": "#000000", + //"disabledForeground": "#cccccc80", + //"editor.focusedStackFrameHighlightBackground": "#7abd7a4d", + //"editor.inlineValuesBackground": "#ffc80033", + //"editor.inlineValuesForeground": "#ffffff80", + //"editor.linkedEditingBackground": "#ff00004d", + //"editor.snippetFinalTabstopHighlightBorder": "#525252", + //"editor.snippetTabstopHighlightBackground": "#7c7c7c4d", + //"editor.stackFrameHighlightBackground": "#ffff0033", + //"editor.symbolHighlightBackground": "#ea5c0055", + //"editor.wordHighlightTextBackground": "#494949b8", + //"editorActiveLineNumber.foreground": "#c6c6c6", + //"editorBracketHighlight.foreground1": "#ffd700", + //"editorBracketHighlight.foreground2": "#da70d6", + //"editorBracketHighlight.foreground3": "#179fff", + //"editorBracketHighlight.foreground4": "#00000000", + //"editorBracketHighlight.foreground5": "#00000000", + //"editorBracketHighlight.foreground6": "#00000000", + //"editorBracketHighlight.unexpectedBracket.foreground": "#ff1212cc", + //"editorBracketPairGuide.activeBackground1": "#00000000", + //"editorBracketPairGuide.activeBackground2": "#00000000", + //"editorBracketPairGuide.activeBackground3": "#00000000", + //"editorBracketPairGuide.activeBackground4": "#00000000", + //"editorBracketPairGuide.activeBackground5": "#00000000", + //"editorBracketPairGuide.activeBackground6": "#00000000", + //"editorBracketPairGuide.background1": "#00000000", + //"editorBracketPairGuide.background2": "#00000000", + //"editorBracketPairGuide.background3": "#00000000", + //"editorBracketPairGuide.background4": "#00000000", + //"editorBracketPairGuide.background5": "#00000000", + //"editorBracketPairGuide.background6": "#00000000", + //"editorCommentsWidget.rangeActiveBackground": "#00daef1a", + //"editorCommentsWidget.rangeBackground": "#00daef1a", + //"editorCommentsWidget.replyInputBackground": "#1e1e1e", + //"editorCommentsWidget.resolvedBorder": "#cccccc80", + //"editorCommentsWidget.unresolvedBorder": "#00daef", + //"editorGhostText.foreground": "#ffffff56", + //"editorGroup.dropBackground": "#53595d80", + //"editorGroup.dropIntoPromptBackground": "#343841", + //"editorGroup.dropIntoPromptForeground": "#ffffff", + //"editorGroupHeader.noTabsBackground": "#17191e", + //"editorGutter.commentGlyphForeground": "#eef0f9", + //"editorGutter.commentUnresolvedGlyphForeground": "#eef0f9", + //"editorHint.foreground": "#eeeeeeb3", + //"editorHoverWidget.highlightForeground": "#ffffff", + //"editorHoverWidget.statusBarBackground": "#2c2c2d", + //"editorIndentGuide.activeBackground1": "#858b98", + //"editorIndentGuide.activeBackground2": "#00000000", + //"editorIndentGuide.activeBackground3": "#00000000", + //"editorIndentGuide.activeBackground4": "#00000000", + //"editorIndentGuide.activeBackground5": "#00000000", + //"editorIndentGuide.activeBackground6": "#00000000", + //"editorIndentGuide.background1": "#343841", + //"editorIndentGuide.background2": "#00000000", + //"editorIndentGuide.background3": "#00000000", + //"editorIndentGuide.background4": "#00000000", + //"editorIndentGuide.background5": "#00000000", + //"editorIndentGuide.background6": "#00000000", + //"editorInlayHint.background": "#bfc1c91a", + //"editorInlayHint.foreground": "#969696", + //"editorInlayHint.parameterBackground": "#bfc1c91a", + //"editorInlayHint.parameterForeground": "#969696", + //"editorInlayHint.typeBackground": "#bfc1c91a", + //"editorInlayHint.typeForeground": "#969696", + //"editorLightBulb.foreground": "#ffcc00", + //"editorLightBulbAi.foreground": "#ffcc00", + //"editorLightBulbAutoFix.foreground": "#75beff", + //"editorMarkerNavigationError.headerBackground": "#dc36571a", + //"editorMarkerNavigationInfo.headerBackground": "#54b9ff1a", + //"editorMarkerNavigationWarning.headerBackground": "#ffd4931a", + //"editorOverviewRuler.addedForeground": "#4bf3c899", + //"editorOverviewRuler.bracketMatchForeground": "#a0a0a0", + //"editorOverviewRuler.commentForeground": "#545864", + //"editorOverviewRuler.commentUnresolvedForeground": "#545864", + //"editorOverviewRuler.commonContentForeground": "#383838", + //"editorOverviewRuler.currentContentForeground": "#367366", + //"editorOverviewRuler.deletedForeground": "#f0678899", + //"editorOverviewRuler.errorForeground": "#ff1212b3", + //"editorOverviewRuler.findMatchForeground": "#d186167e", + //"editorOverviewRuler.incomingContentForeground": "#395f8f", + //"editorOverviewRuler.infoForeground": "#54b9ff", + //"editorOverviewRuler.inlineChatInserted": "#4bf3c816", + //"editorOverviewRuler.inlineChatRemoved": "#dc365716", + //"editorOverviewRuler.modifiedForeground": "#54b9ff99", + //"editorOverviewRuler.rangeHighlightForeground": "#007acc99", + //"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc", + //"editorOverviewRuler.warningForeground": "#fbc23b", + //"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc", + //"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc", + //"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc", + //"editorPane.background": "#17191e", + //"editorStickyScroll.background": "#17191e", + //"editorStickyScroll.shadow": "#000000", + //"editorStickyScrollHover.background": "#2a2d2e", + //"editorSuggestWidget.focusHighlightForeground": "#ffffff", + //"editorSuggestWidget.selectedForeground": "#ffffff", + //"editorSuggestWidgetStatus.foreground": "#d4d4d480", + //"editorUnicodeHighlight.background": "#a9904000", + //"editorUnicodeHighlight.border": "#fbc23b", + //"editorUnnecessaryCode.opacity": "#000000aa", + //"editorWatermark.foreground": "#eef0f999", + //"editorWidget.border": "#454545", + //"errorForeground": "#f48771", + //"extensionBadge.remoteBackground": "#4bf3c8", + //"extensionBadge.remoteForeground": "#000000", + //"extensionButton.background": "#4bf3c8", + //"extensionButton.foreground": "#17191e", + //"extensionButton.hoverBackground": "#31c19c", + //"extensionButton.prominentBackground": "#4bf3c8", + //"extensionButton.prominentForeground": "#17191e", + //"extensionButton.prominentHoverBackground": "#31c19c", + //"extensionButton.separator": "#17191e66", + //"extensionIcon.preReleaseForeground": "#1d9271", + //"extensionIcon.sponsorForeground": "#d758b3", + //"extensionIcon.starForeground": "#ff8e00", + //"extensionIcon.verifiedForeground": "#54b9ff", + //"gitDecoration.renamedResourceForeground": "#73c991", + //"gitlens.closedAutolinkedIssueIconColor": "#a371f7", + //"gitlens.closedPullRequestIconColor": "#f85149", + //"gitlens.decorations.addedForegroundColor": "#4bf3c8", + //"gitlens.decorations.branchAheadForegroundColor": "#35b15e", + //"gitlens.decorations.branchBehindForegroundColor": "#b15e35", + //"gitlens.decorations.branchDivergedForegroundColor": "#d8af1b", + //"gitlens.decorations.branchMissingUpstreamForegroundColor": "#c74e39", + //"gitlens.decorations.branchUnpublishedForegroundColor": "#35b15e", + //"gitlens.decorations.branchUpToDateForegroundColor": "#bfc1c9", + //"gitlens.decorations.copiedForegroundColor": "#73c991", + //"gitlens.decorations.deletedForegroundColor": "#f4587e", + //"gitlens.decorations.ignoredForegroundColor": "#858b98", + //"gitlens.decorations.modifiedForegroundColor": "#ffd493", + //"gitlens.decorations.renamedForegroundColor": "#73c991", + //"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#c74e39", + //"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#d8af1b", + //"gitlens.decorations.untrackedForegroundColor": "#4bf3c8", + //"gitlens.decorations.workspaceCurrentForegroundColor": "#35b15e", + //"gitlens.decorations.workspaceRepoMissingForegroundColor": "#909090", + //"gitlens.decorations.workspaceRepoOpenForegroundColor": "#35b15e", + //"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor": "#e2c08d", + //"gitlens.decorations.worktreeMissingForegroundColor": "#c74e39", + //"gitlens.graphChangesColumnAddedColor": "#347d39", + //"gitlens.graphChangesColumnDeletedColor": "#c93c37", + //"gitlens.graphLane10Color": "#2ece9d", + //"gitlens.graphLane1Color": "#15a0bf", + //"gitlens.graphLane2Color": "#0669f7", + //"gitlens.graphLane3Color": "#8e00c2", + //"gitlens.graphLane4Color": "#c517b6", + //"gitlens.graphLane5Color": "#d90171", + //"gitlens.graphLane6Color": "#cd0101", + //"gitlens.graphLane7Color": "#f25d2e", + //"gitlens.graphLane8Color": "#f2ca33", + //"gitlens.graphLane9Color": "#7bd938", + //"gitlens.graphMinimapMarkerHeadColor": "#05e617", + //"gitlens.graphMinimapMarkerHighlightsColor": "#fbff0a", + //"gitlens.graphMinimapMarkerLocalBranchesColor": "#3087cf", + //"gitlens.graphMinimapMarkerRemoteBranchesColor": "#2b5e88", + //"gitlens.graphMinimapMarkerStashesColor": "#b34db3", + //"gitlens.graphMinimapMarkerTagsColor": "#6b562e", + //"gitlens.graphMinimapMarkerUpstreamColor": "#09ae17", + //"gitlens.graphScrollMarkerHeadColor": "#05e617", + //"gitlens.graphScrollMarkerHighlightsColor": "#fbff0a", + //"gitlens.graphScrollMarkerLocalBranchesColor": "#3087cf", + //"gitlens.graphScrollMarkerRemoteBranchesColor": "#2b5e88", + //"gitlens.graphScrollMarkerStashesColor": "#b34db3", + //"gitlens.graphScrollMarkerTagsColor": "#6b562e", + //"gitlens.graphScrollMarkerUpstreamColor": "#09ae17", + //"gitlens.gutterBackgroundColor": "#ffffff13", + //"gitlens.gutterForegroundColor": "#bebebe", + //"gitlens.gutterUncommittedForegroundColor": "#00bcf299", + //"gitlens.lineHighlightBackgroundColor": "#00bcf233", + //"gitlens.lineHighlightOverviewRulerColor": "#00bcf299", + //"gitlens.mergedPullRequestIconColor": "#a371f7", + //"gitlens.openAutolinkedIssueIconColor": "#3fb950", + //"gitlens.openPullRequestIconColor": "#3fb950", + //"gitlens.trailingLineBackgroundColor": "#00000000", + //"gitlens.trailingLineForegroundColor": "#99999959", + //"gitlens.unpublishedChangesIconColor": "#35b15e", + //"gitlens.unpublishedCommitIconColor": "#35b15e", + //"gitlens.unpulledChangesIconColor": "#b15e35", + //"inlineChat.background": "#343841", + //"inlineChat.border": "#454545", + //"inlineChat.regionHighlight": "#5495d740", + //"inlineChat.shadow": "#ffffff00", + //"inlineChatDiff.inserted": "#4bf3c812", + //"inlineChatDiff.removed": "#dc365712", + //"inlineChatInput.background": "#23262d", + //"inlineChatInput.border": "#454545", + //"inlineChatInput.focusBorder": "#00daef", + //"inlineChatInput.placeholderForeground": "#858b98", + //"inputOption.hoverBackground": "#5a5d5e80", + //"inputValidation.errorBackground": "#5a1d1d", + //"inputValidation.errorBorder": "#be1100", + //"inputValidation.infoBackground": "#063b49", + //"inputValidation.infoBorder": "#007acc", + //"inputValidation.warningBackground": "#352a05", + //"inputValidation.warningBorder": "#b89500", + //"interactive.activeCodeBorder": "#007acc", + //"interactive.inactiveCodeBorder": "#17191e", + //"keybindingLabel.background": "#8080802b", + //"keybindingLabel.border": "#33333399", + //"keybindingLabel.bottomBorder": "#44444499", + //"keybindingLabel.foreground": "#cccccc", + //"keybindingTable.headerBackground": "#cccccc0a", + //"keybindingTable.rowsBackground": "#cccccc0a", + //"list.deemphasizedForeground": "#8c8c8c", + //"list.dropBetweenBackground": "#cccccc", + //"list.errorForeground": "#f88070", + //"list.filterMatchBackground": "#ea5c0055", + //"list.filterMatchBorder": "#ffffff00", + //"list.focusHighlightForeground": "#ffffff", + //"list.focusOutline": "#00daef", + //"list.invalidItemForeground": "#b89500", + //"list.warningForeground": "#cca700", + //"listFilterWidget.shadow": "#ffffff00", + //"markdown.extension.editor.codeSpan.background": "#00000000", + //"markdown.extension.editor.codeSpan.border": "#ad5dca44", + //"markdown.extension.editor.formattingMark.foreground": "#cc75f450", + //"markdown.extension.editor.trailingSpace.background": "#cccccc33", + //"mergeEditor.change.background": "#9bb95533", + //"mergeEditor.change.word.background": "#9ccc2c33", + //"mergeEditor.changeBase.background": "#4b1818", + //"mergeEditor.changeBase.word.background": "#6f1313", + //"mergeEditor.conflict.handled.minimapOverViewRuler": "#adaca8ee", + //"mergeEditor.conflict.handledFocused.border": "#c1c1c1cc", + //"mergeEditor.conflict.handledUnfocused.border": "#86868649", + //"mergeEditor.conflict.input1.background": "#36736666", + //"mergeEditor.conflict.input2.background": "#395f8f66", + //"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#fcba03", + //"mergeEditor.conflict.unhandledFocused.border": "#ffa600", + //"mergeEditor.conflict.unhandledUnfocused.border": "#ffa6007a", + //"mergeEditor.conflictingLines.background": "#ffea0047", + //"minimap.foregroundOpacity": "#000000", + //"minimap.infoHighlight": "#54b9ff", + //"minimap.selectionOccurrenceHighlight": "#676767", + //"minimapSlider.activeBackground": "#54b9ff33", + //"minimapSlider.background": "#54586433", + //"minimapSlider.hoverBackground": "#5458645a", + //"multiDiffEditor.border": "#17191e", + //"multiDiffEditor.headerBackground": "#262626", + //"notebook.cellBorderColor": "#17191e", + //"notebook.cellEditorBackground": "#23262d", + //"notebook.cellInsertionIndicator": "#00daef", + //"notebook.cellStatusBarItemHoverBackground": "#ffffff26", + //"notebook.cellToolbarSeparator": "#80808059", + //"notebook.editorBackground": "#17191e", + //"notebook.focusedCellBorder": "#00daef", + //"notebook.focusedEditorBorder": "#00daef", + //"notebook.inactiveFocusedCellBorder": "#17191e", + //"notebook.selectedCellBackground": "#17191e", + //"notebook.selectedCellBorder": "#17191e", + //"notebook.symbolHighlightBackground": "#ffffff0b", + //"notebookEditorOverviewRuler.runningCellForeground": "#89d185", + //"notebookScrollbarSlider.activeBackground": "#54b9ff66", + //"notebookScrollbarSlider.background": "#54586466", + //"notebookScrollbarSlider.hoverBackground": "#545864b3", + //"notebookStatusErrorIcon.foreground": "#f48771", + //"notebookStatusRunningIcon.foreground": "#cccccc", + //"notebookStatusSuccessIcon.foreground": "#89d185", + //"notificationLink.foreground": "#54b9ff", + //"panel.dropBorder": "#eef0f9", + //"panelInput.border": "#bfc1c9", + //"panelSection.dropBackground": "#53595d80", + //"panelSectionHeader.background": "#80808033", + //"peekViewEditorStickyScroll.background": "#001f33", + //"ports.iconRunningProcessForeground": "#297763", + //"problemsErrorIcon.foreground": "#f4587e", + //"problemsInfoIcon.foreground": "#54b9ff", + //"problemsWarningIcon.foreground": "#fbc23b", + //"profileBadge.background": "#4d4d4d", + //"profileBadge.foreground": "#ffffff", + //"quickInput.background": "#343841", + //"quickInput.foreground": "#ffffff", + //"quickInputList.focusBackground": "#2d4860", + //"quickInputList.focusForeground": "#ffffff", + //"quickInputTitle.background": "#ffffff1b", + //"sash.hoverBorder": "#00daef", + //"scm.historyItemAdditionsForeground": "#4bf3c8", + //"scm.historyItemDeletionsForeground": "#f4587e", + //"scm.historyItemSelectedStatisticsBorder": "#ffffff33", + //"scm.historyItemStatisticsBorder": "#cccccc33", + //"search.resultsInfoForeground": "#cccccca6", + //"searchEditor.findMatchBackground": "#ea5c0038", + //"searchEditor.findMatchBorder": "#ffffff00", + //"searchEditor.textInputBorder": "#bfc1c9", + //"settings.checkboxBackground": "#23262d", + //"settings.checkboxBorder": "#00000000", + //"settings.checkboxForeground": "#eef0f9", + //"settings.dropdownBackground": "#23262d", + //"settings.dropdownBorder": "#00000000", + //"settings.dropdownForeground": "#eef0f9", + //"settings.dropdownListBorder": "#454545", + //"settings.focusedRowBorder": "#00daef", + //"settings.headerBorder": "#17191e", + //"settings.modifiedItemIndicator": "#0c7d9d", + //"settings.numberInputBackground": "#23262d", + //"settings.numberInputBorder": "#bfc1c9", + //"settings.numberInputForeground": "#eef0f9", + //"settings.rowHoverBackground": "#3438414d", + //"settings.sashBorder": "#17191e", + //"settings.settingsHeaderHoverForeground": "#ccccccb3", + //"settings.textInputBackground": "#23262d", + //"settings.textInputBorder": "#bfc1c9", + //"settings.textInputForeground": "#eef0f9", + //"sideBySideEditor.horizontalBorder": "#343841", + //"sideBySideEditor.verticalBorder": "#343841", + //"simpleFindWidget.sashBorder": "#454545", + //"statusBar.focusBorder": "#eef0f9", + //"statusBarItem.compactHoverBackground": "#ffffff33", + //"statusBarItem.errorBackground": "#c72e0f", + //"statusBarItem.errorForeground": "#ffffff", + //"statusBarItem.errorHoverBackground": "#ffffff1f", + //"statusBarItem.errorHoverForeground": "#eef0f9", + //"statusBarItem.focusBorder": "#eef0f9", + //"statusBarItem.hoverForeground": "#eef0f9", + //"statusBarItem.offlineBackground": "#6c1717", + //"statusBarItem.offlineForeground": "#eef0f9", + //"statusBarItem.offlineHoverBackground": "#ffffff1f", + //"statusBarItem.offlineHoverForeground": "#eef0f9", + //"statusBarItem.prominentBackground": "#00000080", + //"statusBarItem.prominentForeground": "#eef0f9", + //"statusBarItem.prominentHoverBackground": "#0000004d", + //"statusBarItem.prominentHoverForeground": "#eef0f9", + //"statusBarItem.remoteHoverBackground": "#ffffff1f", + //"statusBarItem.remoteHoverForeground": "#eef0f9", + //"statusBarItem.warningBackground": "#b68104", + //"statusBarItem.warningForeground": "#ffffff", + //"statusBarItem.warningHoverBackground": "#ffffff1f", + //"statusBarItem.warningHoverForeground": "#eef0f9", + //"symbolIcon.arrayForeground": "#cccccc", + //"symbolIcon.booleanForeground": "#cccccc", + //"symbolIcon.classForeground": "#ee9d28", + //"symbolIcon.colorForeground": "#cccccc", + //"symbolIcon.constantForeground": "#cccccc", + //"symbolIcon.constructorForeground": "#b180d7", + //"symbolIcon.enumeratorForeground": "#ee9d28", + //"symbolIcon.enumeratorMemberForeground": "#75beff", + //"symbolIcon.eventForeground": "#ee9d28", + //"symbolIcon.fieldForeground": "#75beff", + //"symbolIcon.fileForeground": "#cccccc", + //"symbolIcon.folderForeground": "#cccccc", + //"symbolIcon.functionForeground": "#b180d7", + //"symbolIcon.interfaceForeground": "#75beff", + //"symbolIcon.keyForeground": "#cccccc", + //"symbolIcon.keywordForeground": "#cccccc", + //"symbolIcon.methodForeground": "#b180d7", + //"symbolIcon.moduleForeground": "#cccccc", + //"symbolIcon.namespaceForeground": "#cccccc", + //"symbolIcon.nullForeground": "#cccccc", + //"symbolIcon.numberForeground": "#cccccc", + //"symbolIcon.objectForeground": "#cccccc", + //"symbolIcon.operatorForeground": "#cccccc", + //"symbolIcon.packageForeground": "#cccccc", + //"symbolIcon.propertyForeground": "#cccccc", + //"symbolIcon.referenceForeground": "#cccccc", + //"symbolIcon.snippetForeground": "#cccccc", + //"symbolIcon.stringForeground": "#cccccc", + //"symbolIcon.structForeground": "#cccccc", + //"symbolIcon.textForeground": "#cccccc", + //"symbolIcon.typeParameterForeground": "#cccccc", + //"symbolIcon.unitForeground": "#cccccc", + //"symbolIcon.variableForeground": "#75beff", + //"tab.activeModifiedBorder": "#3399cc", + //"tab.dragAndDropBorder": "#eef0f9", + //"tab.inactiveModifiedBorder": "#3399cc80", + //"tab.lastPinnedBorder": "#545864", + //"tab.unfocusedActiveBackground": "#17191e", + //"tab.unfocusedActiveBorder": "#ffffff00", + //"tab.unfocusedActiveBorderTop": "#eef0f980", + //"tab.unfocusedActiveForeground": "#eef0f980", + //"tab.unfocusedActiveModifiedBorder": "#3399cc80", + //"tab.unfocusedHoverBackground": "#34384180", + //"tab.unfocusedHoverForeground": "#eef0f980", + //"tab.unfocusedInactiveBackground": "#23262d", + //"tab.unfocusedInactiveForeground": "#858b9880", + //"tab.unfocusedInactiveModifiedBorder": "#3399cc40", + //"terminal.dropBackground": "#53595d80", + //"terminal.findMatchBackground": "#515c6a", + //"terminal.findMatchHighlightBackground": "#ea5c0055", + //"terminal.hoverHighlightBackground": "#5495d720", + //"terminal.inactiveSelectionBackground": "#ffffff20", + //"terminal.tab.activeBorder": "#ffffff00", + //"terminalCommandDecoration.defaultBackground": "#ffffff40", + //"terminalCommandDecoration.errorBackground": "#f14c4c", + //"terminalCommandDecoration.successBackground": "#1b81a8", + //"terminalOverviewRuler.cursorForeground": "#a0a0a0cc", + //"terminalOverviewRuler.findMatchForeground": "#d186167e", + //"terminalStickyScrollHover.background": "#2a2d2e", + //"testing.coverCountBadgeBackground": "#bfc1c9", + //"testing.coverCountBadgeForeground": "#17191e", + //"testing.coveredBackground": "#4bf3c824", + //"testing.coveredBorder": "#4bf3c81b", + //"testing.coveredGutterBackground": "#4bf3c816", + //"testing.iconErrored": "#f14c4c", + //"testing.iconFailed": "#f14c4c", + //"testing.iconPassed": "#73c991", + //"testing.iconQueued": "#cca700", + //"testing.iconSkipped": "#848484", + //"testing.iconUnset": "#848484", + //"testing.message.error.decorationForeground": "#f4587e", + //"testing.message.error.lineBackground": "#ff000033", + //"testing.message.info.decorationForeground": "#eef0f980", + //"testing.messagePeekBorder": "#54b9ff", + //"testing.messagePeekHeaderBackground": "#54b9ff1a", + //"testing.peekBorder": "#f4587e", + //"testing.peekHeaderBackground": "#f4587e1a", + //"testing.runAction": "#73c991", + //"testing.uncoveredBackground": "#dc365724", + //"testing.uncoveredBorder": "#dc36571b", + //"testing.uncoveredBranchBackground": "#4e212e", + //"testing.uncoveredGutterBackground": "#dc365736", + //"textBlockQuote.background": "#222222", + //"textBlockQuote.border": "#007acc80", + //"textCodeBlock.background": "#0a0a0a66", + //"textLink.activeForeground": "#3794ff", + //"textPreformat.background": "#ffffff1a", + //"textPreformat.foreground": "#d7ba7d", + //"textSeparator.foreground": "#ffffff2e", + //"toolbar.activeBackground": "#63666750", + //"toolbar.hoverBackground": "#5a5d5e50", + //"tree.inactiveIndentGuidesStroke": "#54586466", + //"tree.tableColumnsBorder": "#cccccc20", + //"tree.tableOddRowsBackground": "#cccccc0a", + //"walkthrough.stepTitle.foreground": "#ffffff", + //"welcomePage.progress.background": "#23262d", + //"welcomePage.progress.foreground": "#54b9ff", + //"welcomePage.tileBackground": "#343841", + //"welcomePage.tileBorder": "#ffffff1a", + //"welcomePage.tileHoverBackground": "#3e434e", + //"activityBar.activeFocusBorder": null, + //"button.border": null, + //"contrastActiveBorder": null, + //"contrastBorder": null, + //"diffEditor.insertedTextBorder": null, + //"diffEditor.removedTextBorder": null, + //"diffEditorGutter.insertedLineBackground": null, + //"diffEditorGutter.removedLineBackground": null, + //"diffEditorOverview.insertedForeground": null, + //"diffEditorOverview.removedForeground": null, + //"dropdown.listBackground": null, + //"editor.selectionForeground": null, + //"editor.snippetFinalTabstopHighlightBackground": null, + //"editor.snippetTabstopHighlightBorder": null, + //"editor.symbolHighlightBorder": null, + //"editor.wordHighlightBorder": null, + //"editor.wordHighlightStrongBorder": null, + //"editor.wordHighlightTextBorder": null, + //"editorGhostText.background": null, + //"editorGhostText.border": null, + //"editorGroup.dropIntoPromptBorder": null, + //"editorGroup.focusedEmptyBorder": null, + //"editorHint.border": null, + //"editorLineNumber.dimmedForeground": null, + //"editorStickyScroll.border": null, + //"editorSuggestWidget.selectedIconForeground": null, + //"editorUnnecessaryCode.border": null, + //"inputValidation.errorForeground": null, + //"inputValidation.infoForeground": null, + //"inputValidation.warningForeground": null, + //"list.activeSelectionIconForeground": null, + //"list.focusAndSelectionOutline": null, + //"list.inactiveFocusBackground": null, + //"list.inactiveFocusOutline": null, + //"list.inactiveSelectionIconForeground": null, + //"menubar.selectionBorder": null, + //"merge.border": null, + //"multiDiffEditor.background": null, + //"notebook.cellHoverBackground": null, + //"notebook.focusedCellBackground": null, + //"notebook.inactiveSelectedCellBorder": null, + //"notebook.outputContainerBackgroundColor": null, + //"notebook.outputContainerBorderColor": null, + //"outputView.background": null, + //"outputViewStickyScroll.background": null, + //"panelSectionHeader.border": null, + //"panelSectionHeader.foreground": null, + //"quickInput.list.focusBackground": null, + //"quickInputList.focusIconForeground": null, + //"statusBar.border": null, + //"statusBar.debuggingBorder": null, + //"statusBar.noFolderBorder": null, + //"tab.hoverBorder": null, + //"tab.unfocusedHoverBorder": null, + //"terminal.background": null, + //"terminal.findMatchBorder": null, + //"terminal.findMatchHighlightBorder": null, + //"terminal.selectionForeground": null, + //"terminalStickyScroll.background": null, + //"testing.message.info.lineBackground": null, + //"toolbar.hoverOutline": null, + //"welcomePage.background": null, + //"widget.border": null, + //"window.activeBorder": null, + //"window.inactiveBorder": null + }, + "tokenColors": [ + { + "scope": "punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "variable.other.generic-type.haskell", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "storage.type.haskell", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "support.variable.magic.python", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "variable.parameter.function.language.special.self.python", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "storage.modifier.lifetime.rust", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.function.std.rust", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "entity.name.lifetime.rust", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "variable.language.rust", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "support.constant.edge", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "constant.other.character-class.regexp", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "keyword.operator.quantifier.regexp", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "punctuation.definition.string.begin,punctuation.definition.string.end", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "variable.parameter.function", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "comment markup.link", + "settings": { + "foreground": "#545864" + } + }, + { + "scope": "markup.changed.diff", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "markup.inserted.diff", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "markup.deleted.diff", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "meta.function.c,meta.function.cpp", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "punctuation.separator.key-value", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.expression.import", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "support.constant.math", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "support.constant.property.math", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "variable.other.constant", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "storage.type.annotation.java", + "storage.type.object.array.java" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "source.java", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "meta.method.java", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "storage.modifier.import.java,storage.type.java,storage.type.generic.java", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "keyword.operator.instanceof.java", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "meta.definition.variable.name.java", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "keyword.operator.logical", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.bitwise", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.channel", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.constant.property-value.scss,support.constant.property-value.css", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "keyword.operator.css,keyword.operator.scss,keyword.operator.less", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "punctuation.separator.list.comma.css", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.constant.color.w3c-standard-color-name.css", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "support.type.vendored.property-name.css", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.module.node,support.type.object.module,support.module.node", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "entity.name.type.module", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "support.constant.json", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "keyword.operator.expression.instanceof", + "keyword.operator.new", + "keyword.operator.ternary", + "keyword.operator.optional", + "keyword.operator.expression.keyof" + ], + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "support.type.object.console", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "support.variable.property.process", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "entity.name.function,support.function.console", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "keyword.operator.misc.rust", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.sigil.rust", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "keyword.operator.delete", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "support.type.object.dom", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.variable.dom,support.variable.property.dom", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "punctuation.separator.delimiter", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "punctuation.separator.c,punctuation.separator.cpp", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "support.type.posix-reserved.c,support.type.posix-reserved.cpp", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.sizeof.c,keyword.operator.sizeof.cpp", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "variable.parameter.function.language.python", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "support.type.python", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.logical.python", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "variable.parameter.function.python", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "meta.function-call.generic.python", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "constant.character.format.placeholder.other.python", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "keyword.operator", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.assignment.compound", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "entity.name.namespace", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "variable", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "variable.c", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "variable.language", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "token.variable.parameter.java", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "import.storage.java", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "token.package.keyword", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "token.package", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "entity.name.function", + "meta.require", + "support.function.any-method", + "variable.function" + ], + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "entity.name.type.namespace", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "support.class, entity.name.type.class", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "entity.name.class.identifier.namespace.type", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "entity.name.class", + "variable.other.class.js", + "variable.other.class.ts" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "variable.other.class.php", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "entity.name.type", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "keyword.control", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "control.elements, keyword.operator.less", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "keyword.other.special-method", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "storage", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "token.storage", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "token.storage.type.java", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "support.function", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.type.property-name", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.constant.property-value", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.constant.font-name", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "meta.tag", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "string", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "entity.other.inherited-class", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "constant.other.symbol", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "constant.numeric", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "constant", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "punctuation.definition.constant", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "entity.name.tag", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "entity.other.attribute-name", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "entity.other.attribute-name.html", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "source.astro.meta.attribute.client:idle.html", + "settings": { + "foreground": "#FFD493", + "fontStyle": "italic" + } + }, + { + "scope": "string.quoted.double.html,string.quoted.single.html,string.template.html,punctuation.definition.string.begin.html,punctuation.definition.string.end.html", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "entity.other.attribute-name.id", + "settings": { + "foreground": "#00DAEF", + "fontStyle": "normal" + } + }, + { + "scope": "entity.other.attribute-name.class.css", + "settings": { + "foreground": "#4BF3C8", + "fontStyle": "normal" + } + }, + { + "scope": "meta.selector", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "markup.heading", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "markup.heading punctuation.definition.heading, entity.name.section", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "keyword.other.unit", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "markup.bold,todo.bold", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "punctuation.definition.bold", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "markup.italic, punctuation.definition.italic,todo.emphasis", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "emphasis md", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "entity.name.section.markdown", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "punctuation.definition.heading.markdown", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "punctuation.definition.list.begin.markdown", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "markup.heading.setext", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "punctuation.definition.bold.markdown", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "markup.inline.raw.markdown", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "markup.inline.raw.string.markdown", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "punctuation.definition.list.markdown", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "punctuation.definition.string.begin.markdown", + "punctuation.definition.string.end.markdown", + "punctuation.definition.metadata.markdown" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "beginning.punctuation.definition.list.markdown" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "punctuation.definition.metadata.markdown", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "markup.underline.link.markdown,markup.underline.link.image.markdown", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "string.other.link.title.markdown,string.other.link.description.markdown", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "string.regexp", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "constant.character.escape", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "punctuation.section.embedded, variable.interpolation", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "punctuation.section.embedded.begin,punctuation.section.embedded.end", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "invalid.illegal", + "settings": { + "foreground": "#FFFFFF" + } + }, + { + "scope": "invalid.illegal.bad-ampersand.html", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "invalid.broken", + "settings": { + "foreground": "#FFFFFF" + } + }, + { + "scope": "invalid.deprecated", + "settings": { + "foreground": "#FFFFFF" + } + }, + { + "scope": "invalid.unimplemented", + "settings": { + "foreground": "#FFFFFF" + } + }, + { + "scope": "source.json meta.structure.dictionary.json > string.quoted.json", + "settings": { + "foreground": "#CC75F4" + } + }, + { + "scope": "source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.type.property-name.json", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "support.type.property-name.json punctuation", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "support.other.namespace.use.php,support.other.namespace.use-as.php,support.other.namespace.php,entity.other.alias.php,meta.interface.php", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "keyword.operator.error-control.php", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "keyword.operator.type.php", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "punctuation.section.array.begin.php", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "punctuation.section.array.end.php", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "invalid.illegal.non-null-typehinted.php", + "settings": { + "foreground": "#F44747" + } + }, + { + "scope": "storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "support.constant.core.rust", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "entity.name.goto-label.php,support.other.php", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.regexp.php", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "keyword.operator.comparison.php", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "keyword.operator.heredoc.php,keyword.operator.nowdoc.php", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": "meta.function.decorator.python", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "support.token.decorator.python,meta.function.decorator.identifier.python", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "function.parameter", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "function.brace", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "function.parameter.ruby, function.parameter.cs", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "constant.language.symbol.ruby", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "rgb-value", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "inline-color-decoration rgb-value", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "less rgb-value", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "selector.sass", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "block.scope.end,block.scope.begin", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "storage.type.cs", + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": "entity.name.variable.local.cs", + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": "token.info-token", + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": "token.warn-token", + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": "token.error-token", + "settings": { + "foreground": "#F44747" + } + }, + { + "scope": "token.debug-token", + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": [ + "punctuation.definition.template-expression.begin", + "punctuation.definition.template-expression.end", + "punctuation.section.embedded" + ], + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": [ + "meta.template.expression" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "keyword.operator.module" + ], + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": [ + "support.type.type.flowtype" + ], + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": [ + "support.type.primitive" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "meta.property.object" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "variable.parameter.function.js" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "keyword.other.template.begin" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "keyword.other.template.end" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "keyword.other.substitution.begin" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "keyword.other.substitution.end" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "keyword.operator.assignment" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "keyword.operator.assignment.go" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "keyword.operator.arithmetic.go", + "keyword.operator.address.go" + ], + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": [ + "entity.name.package.go" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "support.type.prelude.elm" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "support.constant.elm" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "punctuation.quasi.element" + ], + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": [ + "constant.character.entity" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "entity.other.attribute-name.pseudo-element", + "entity.other.attribute-name.pseudo-class" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "entity.global.clojure" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "meta.symbol.clojure" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "constant.keyword.clojure" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "meta.arguments.coffee", + "variable.parameter.function.coffee" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "source.ini" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "meta.scope.prerequisites.makefile" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "source.makefile" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "storage.modifier.import.groovy" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "meta.method.groovy" + ], + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": [ + "meta.definition.variable.name.groovy" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "meta.definition.class.inherited.classes.groovy" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "support.variable.semantic.hlsl" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "support.type.texture.hlsl", + "support.type.sampler.hlsl", + "support.type.object.hlsl", + "support.type.object.rw.hlsl", + "support.type.fx.hlsl", + "support.type.object.hlsl" + ], + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": [ + "text.variable", + "text.bracketed" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "support.type.swift", + "support.type.vb.asp" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "entity.name.function.xi" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "entity.name.class.xi" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "constant.character.character-class.regexp.xi" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + "constant.regexp.xi" + ], + "settings": { + "foreground": "#54B9FF" + } + }, + { + "scope": [ + "keyword.control.xi" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "invalid.xi" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "beginning.punctuation.definition.quote.markdown.xi" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "beginning.punctuation.definition.list.markdown.xi" + ], + "settings": { + "foreground": "#EEF0F98F" + } + }, + { + "scope": [ + "constant.character.xi" + ], + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": [ + "accent.xi" + ], + "settings": { + "foreground": "#00DAEF" + } + }, + { + "scope": [ + "wikiword.xi" + ], + "settings": { + "foreground": "#FFD493" + } + }, + { + "scope": [ + "constant.other.color.rgb-value.xi" + ], + "settings": { + "foreground": "#FFFFFF" + } + }, + { + "scope": [ + "punctuation.definition.tag.xi" + ], + "settings": { + "foreground": "#545864" + } + }, + { + "scope": [ + "entity.name.label.cs", + "entity.name.scope-resolution.function.call", + "entity.name.scope-resolution.function.definition" + ], + "settings": { + "foreground": "#ACAFFF" + } + }, + { + "scope": [ + "entity.name.label.cs", + "markup.heading.setext.1.markdown", + "markup.heading.setext.2.markdown" + ], + "settings": { + "foreground": "#4BF3C8" + } + }, + { + "scope": [ + " meta.brace.square" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "comment, punctuation.definition.comment", + "settings": { + "foreground": "#EEF0F98F", + "fontStyle": "italic" + } + }, + { + "scope": "markup.quote.markdown", + "settings": { + "foreground": "#EEF0F98F" + } + }, + { + "scope": "punctuation.definition.block.sequence.item.yaml", + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": [ + "constant.language.symbol.elixir" + ], + "settings": { + "foreground": "#EEF0F9" + } + }, + { + "scope": "entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super", + "settings": { + "fontStyle": "italic" + } + }, + { + "scope": "comment.line.double-slash,comment.block.documentation", + "settings": { + "fontStyle": "italic" + } + }, + { + "scope": "keyword.control.import.python,keyword.control.flow.python", + "settings": { + "fontStyle": "italic" + } + }, + { + "scope": "markup.italic.markdown", + "settings": { + "fontStyle": "italic" + } + } + ] +} \ No newline at end of file diff --git a/package/src/utils.ts b/package/src/utils.ts index 3aa8bb3..5028d5c 100644 --- a/package/src/utils.ts +++ b/package/src/utils.ts @@ -57,12 +57,7 @@ export const getGistFile = async ( return null; }; -export const getGistGroup = async ( - gistId: string - ) => { -const gist = await getGist(gistId); -if (gist?.files) { - return gist ? gist : null; -} -return null; +export const getGistGroup = async (gistId: string) => { + const gist = await getGist(gistId); + return gist; }; \ No newline at end of file diff --git a/package/virtual-config.d.ts b/package/virtual-config.d.ts new file mode 100644 index 0000000..3013024 --- /dev/null +++ b/package/virtual-config.d.ts @@ -0,0 +1,4 @@ +declare module "virtual:astro-gists/config" { + const Config: import("./src/integration").UserConfig; + export default Config; +} \ No newline at end of file diff --git a/playground/src/pages/index.astro b/playground/src/pages/index.astro index 945769e..2107890 100644 --- a/playground/src/pages/index.astro +++ b/playground/src/pages/index.astro @@ -1,5 +1,7 @@ --- -import { GetGist, GetGistGroup } from "@matthiesenxyz/astro-gists/components" +import { GetGistGroup } from "@matthiesenxyz/astro-gists/components" + +import GetGist from "@matthiesenxyz/astro-gists/GetGist" ---

Dev: Playground

diff --git a/playground/src/pages/mdx-test.mdx b/playground/src/pages/mdx-test.mdx deleted file mode 100644 index 99e762b..0000000 --- a/playground/src/pages/mdx-test.mdx +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: Hello, World ---- -import { GetGist, GetGistGroup } from "@matthiesenxyz/astro-gists/components" - -# Hi there! This is a MDX test page. - - - - \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 26952ab..43cfae9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: dependencies: '@astrojs/mdx': specifier: 2.1.1 - version: 2.1.1(astro@4.4.4) + version: 2.1.1(astro@4.4.11) '@expressive-code/plugin-line-numbers': specifier: ^0.33.4 version: 0.33.4 @@ -27,14 +27,17 @@ importers: specifier: ^12.6.0 version: 12.6.0 astro: - specifier: ^4.4.0 - version: 4.4.4 - astro-expressive-code: - specifier: ^0.33.4 - version: 0.33.4(astro@4.4.4) + specifier: ^4.4.1 + version: 4.4.11(@types/node@20.11.24)(typescript@5.3.3) astro-integration-kit: specifier: ^0.5.1 - version: 0.5.1(astro@4.4.4) + version: 0.5.1(astro@4.4.11) + expressive-code: + specifier: ^0.33.4 + version: 0.33.4 + hast-util-to-html: + specifier: ^8.0.4 + version: 8.0.4 octokit: specifier: ^3.1.2 version: 3.1.2 @@ -148,7 +151,7 @@ packages: - supports-color dev: false - /@astrojs/mdx@2.1.1(astro@4.4.4): + /@astrojs/mdx@2.1.1(astro@4.4.11): resolution: {integrity: sha512-AgGFdE7HOGmoFooGvMSatkA9FiSKwyVW7ImHot/bXJ6uAbFfu6iG2ht18Cf1pT22Hda/6iSCGWusFvBv0/EnKQ==} engines: {node: '>=18.14.1'} peerDependencies: @@ -157,7 +160,7 @@ packages: '@astrojs/markdown-remark': 4.2.1 '@mdx-js/mdx': 3.0.1 acorn: 8.11.3 - astro: 4.4.4 + astro: 4.4.11(@types/node@20.11.24)(typescript@5.3.3) es-module-lexer: 1.4.1 estree-util-visit: 2.0.0 github-slugger: 2.0.0 @@ -1766,17 +1769,7 @@ packages: hasBin: true dev: false - /astro-expressive-code@0.33.4(astro@4.4.4): - resolution: {integrity: sha512-PtXLjd89WBA1WsDYlt3V1LZs9Pa8FFoXilaGDSyfxtbYJ2OPHjWh2JJvCiXmfXmY3HkPJ2oW9Jjo6om5vUlVcg==} - peerDependencies: - astro: ^3.3.0 || ^4.0.0-beta - dependencies: - astro: 4.4.4 - hast-util-to-html: 8.0.4 - remark-expressive-code: 0.33.4 - dev: false - - /astro-integration-kit@0.5.1(astro@4.4.4): + /astro-integration-kit@0.5.1(astro@4.4.11): resolution: {integrity: sha512-ef309UUNOjxUe0jjsDP5O3p+jkt53HAcrKOsWJ2NIgdUTOp5P/YKnAjbatfyu3bAuLFDfj5xhXm/rrwSe9d/hw==} peerDependencies: '@vitejs/plugin-react': ^4.2.1 @@ -1800,7 +1793,7 @@ packages: vue: optional: true dependencies: - astro: 4.4.4 + astro: 4.4.11(@types/node@20.11.24)(typescript@5.3.3) pathe: 1.1.2 recast: 0.23.5 dev: false @@ -1888,89 +1881,6 @@ packages: - typescript dev: false - /astro@4.4.4: - resolution: {integrity: sha512-EZrDTN888w4sFKqavGsHu8jSaymyxNwnoqIq5NKlMG9WNU/Xn4Yn41pUdBuAOrgNzRp1NyXXhhV6GV1pN71V2Q==} - engines: {node: '>=18.14.1', npm: '>=6.14.0'} - hasBin: true - dependencies: - '@astrojs/compiler': 2.6.0 - '@astrojs/internal-helpers': 0.2.1 - '@astrojs/markdown-remark': 4.2.1 - '@astrojs/telemetry': 3.0.4 - '@babel/core': 7.23.9 - '@babel/generator': 7.23.6 - '@babel/parser': 7.23.9 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.9) - '@babel/traverse': 7.23.9 - '@babel/types': 7.23.9 - '@medv/finder': 3.1.0 - '@types/babel__core': 7.20.5 - acorn: 8.11.3 - aria-query: 5.3.0 - axobject-query: 4.0.0 - boxen: 7.1.1 - chokidar: 3.6.0 - ci-info: 4.0.0 - clsx: 2.1.0 - common-ancestor-path: 1.0.1 - cookie: 0.6.0 - cssesc: 3.0.0 - debug: 4.3.4 - deterministic-object-hash: 2.0.2 - devalue: 4.3.2 - diff: 5.2.0 - dlv: 1.1.3 - dset: 3.1.3 - es-module-lexer: 1.4.1 - esbuild: 0.19.12 - estree-walker: 3.0.3 - execa: 8.0.1 - fast-glob: 3.3.2 - flattie: 1.1.0 - github-slugger: 2.0.0 - gray-matter: 4.0.3 - html-escaper: 3.0.3 - http-cache-semantics: 4.1.1 - js-yaml: 4.1.0 - kleur: 4.1.5 - magic-string: 0.30.7 - mdast-util-to-hast: 13.0.2 - mime: 3.0.0 - ora: 7.0.1 - p-limit: 5.0.0 - p-queue: 8.0.1 - path-to-regexp: 6.2.1 - preferred-pm: 3.1.3 - prompts: 2.4.2 - rehype: 13.0.1 - resolve: 1.22.8 - semver: 7.6.0 - shikiji: 0.9.19 - shikiji-core: 0.9.19 - string-width: 7.1.0 - strip-ansi: 7.1.0 - tsconfck: 3.0.2(typescript@5.3.3) - unist-util-visit: 5.0.0 - vfile: 6.0.1 - vite: 5.1.5(@types/node@20.11.24) - vitefu: 0.2.5(vite@5.1.5) - which-pm: 2.1.1 - yargs-parser: 21.1.1 - zod: 3.22.4 - optionalDependencies: - sharp: 0.32.6 - transitivePeerDependencies: - - '@types/node' - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - - typescript - dev: false - /available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} @@ -4959,14 +4869,6 @@ packages: unified: 11.0.4 dev: false - /remark-expressive-code@0.33.4: - resolution: {integrity: sha512-ucGzDknAY6LJKkcNSaYh9N0SEr1LDA0shageM1xa+4fu/o+7g6R1/ApF7d2c+cj1ERLvaF4OaUa87n5baY+MDA==} - dependencies: - expressive-code: 0.33.4 - hast-util-to-html: 8.0.4 - unist-util-visit: 4.1.2 - dev: false - /remark-gfm@4.0.0: resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} dependencies: