diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index d3760cbf..9400f2ec 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -47,7 +47,6 @@ jobs: - run: moon run site:export - run: moon run visualizer:build - run: moon run s2-visualizer:build - - run: moon run s2-tokens-viewer:export - run: moon run viewer:export - run: moon run release-timeline:build env: diff --git a/.gitignore b/.gitignore index e163e750..e60555d3 100644 --- a/.gitignore +++ b/.gitignore @@ -119,3 +119,6 @@ dist # test temporary directories temp-* **/test/temp-* + +# auto-generated token files (copied by prepare scripts) +docs/s2-tokens-viewer/tokens/ diff --git a/.lintstagedrc.js b/.lintstagedrc.js index e952873a..587c13a9 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,13 +1,13 @@ export default { "**/*.{js,jsx,ts,tsx,json,yml,yaml}": ["prettier --write"], "**/*.md": (files) => { - // Filter out changeset files - they need special handling - const nonChangesetFiles = files.filter( - (file) => !file.includes(".changeset/"), + // Filter out changeset and CHANGELOG files - they need special handling + const processableFiles = files.filter( + (file) => !file.includes(".changeset/") && !file.includes("CHANGELOG.md"), ); - if (nonChangesetFiles.length === 0) return []; + if (processableFiles.length === 0) return []; // Use -o flag (no path) to write back to same file - return nonChangesetFiles.map( + return processableFiles.map( (file) => `remark ${file} --use remark-gfm --use remark-github -o`, ); }, diff --git a/.lintstagedrc.json b/.lintstagedrc.json deleted file mode 100644 index 139ee3da..00000000 --- a/.lintstagedrc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "**/*.{js,jsx,ts,tsx,json,yml,yaml}": ["prettier --write"], - "**/*.md": ["remark --use remark-gfm --use remark-github --output"], - "!**/pnpm-lock.yaml": [], - "!**/package-lock.json": [], - "!**/yarn.lock": [], - ".changeset/*.md": [ - "pnpm changeset-lint check-file", - "remark --use remark-gfm --use remark-github --output" - ] -} diff --git a/README.md b/README.md index 94eb0aaf..abd36e08 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Note: for [Spectrum 2](https://s2.spectrum.adobe.com/) token data has been graduated to the `main` branch. If you need access to the S1 data, use the [`s1-legacy` branch](https://github.com/adobe/spectrum-tokens/tree/s1-legacy) and `v12.x.x` packages on [NPM](https://www.npmjs.com/package/@adobe/spectrum-tokens?activeTab=versions). +Note: for [Spectrum 2](https://s2.spectrum.adobe.com/) token data has been graduated to the `main` branch. If you need access to the S1 data, use the [`s1-legacy` branch](https://github.com/adobe/spectrum-design-data/tree/s1-legacy) and `v12.x.x` packages on [NPM](https://www.npmjs.com/package/@adobe/spectrum-tokens?activeTab=versions). The [Spectrum token visualizer](https://opensource.adobe.com/spectrum-tokens/visualizer/) shows the token data for S1. For Spectrum 2 data, use [opensource.adobe.com/spectrum-tokens/s2-visualizer/](https://opensource.adobe.com/spectrum-tokens/s2-visualizer/). @@ -6,43 +6,43 @@ The [Spectrum token visualizer](https://opensource.adobe.com/spectrum-tokens/vis This repo uses: -- [pnpm](https://pnpm.io/) for package management -- [moon](https://moonrepo.dev/moon) to manage task running -- [Changesets](https://github.com/changesets/changesets) for automated versioning and releasing -- [Prettier](https://prettier.io/) for code formatting/linting -- [commitlint](https://commitlint.js.org/) and [Convetional Commits](https://www.conventionalcommits.org/en/v1.0.0/) to standardize commit messages -- [husky](https://typicode.github.io/husky/) to automate formatting of committed files and linting of commit messages +* [pnpm](https://pnpm.io/) for package management +* [moon](https://moonrepo.dev/moon) to manage task running +* [Changesets](https://github.com/changesets/changesets) for automated versioning and releasing +* [Prettier](https://prettier.io/) for code formatting/linting +* [commitlint](https://commitlint.js.org/) and [Convetional Commits](https://www.conventionalcommits.org/en/v1.0.0/) to standardize commit messages +* [husky](https://typicode.github.io/husky/) to automate formatting of committed files and linting of commit messages Packages in this monorepo: ## Core Packages -- [Spectrum Tokens](packages/tokens/) design tokens for Spectrum, Adobe's design system. -- [Spectrum Component Schemas](packages/component-schemas/) JSON schemas for validating Spectrum component APIs and properties. +* [Spectrum Tokens](packages/tokens/) design tokens for Spectrum, Adobe's design system. +* [Spectrum Component Schemas](packages/component-schemas/) JSON schemas for validating Spectrum component APIs and properties. ## Documentation & Visualization -- [Spectrum Token Visualizer Tool](docs/visualizer/) a visualizer for inspecting S1 tokens. Published as a [static site](https://opensource.adobe.com/spectrum-tokens/visualizer/). -- [Spectrum Token Visualizer Tool S2](docs/s2-visualizer/) a version of the visualizer that shows the Spectrum 2 data. Published as a [static site](https://opensource.adobe.com/spectrum-tokens/s2-visualizer/). -- [Spectrum S2 Tokens Viewer](docs/s2-tokens-viewer/) an enhanced token viewer with component usage analysis for Spectrum 2 tokens. -- [Spectrum Tokens Docs](docs/site/) a static site to show the component options API and other token data. -- [Release Timeline Visualization](docs/release-timeline/) interactive charts showing release frequency and development activity patterns. Published as a [static site](https://opensource.adobe.com/spectrum-tokens/release-timeline/). +* [Spectrum Token Visualizer Tool](docs/visualizer/) a visualizer for inspecting S1 tokens. Published as a [static site](https://opensource.adobe.com/spectrum-tokens/visualizer/). +* [Spectrum Token Visualizer Tool S2](docs/s2-visualizer/) a version of the visualizer that shows the Spectrum 2 data. Published as a [static site](https://opensource.adobe.com/spectrum-tokens/s2-visualizer/). +* [Spectrum S2 Tokens Viewer](docs/s2-tokens-viewer/) an enhanced token viewer with component usage analysis for Spectrum 2 tokens. +* [Spectrum Tokens Docs](docs/site/) a static site to show the component options API and other token data. +* [Release Timeline Visualization](docs/release-timeline/) interactive charts showing release frequency and development activity patterns. Published as a [static site](https://opensource.adobe.com/spectrum-tokens/release-timeline/). ## Development Tools -- [Spectrum Token Diff Generator](tools/diff-generator/) a library and cli tool that reports changes made between two schema/releases/branches. -- [Optimized Diff Engine](tools/optimized-diff/) high-performance diff algorithm for large token datasets. -- [Release Analyzer](tools/release-analyzer/) tool for analyzing release history and generating data for change frequency visualization. -- [Token Changeset Generator](tools/token-changeset-generator/) automates creation of changeset files from token diff analysis. -- [Token CSV Generator](tools/token-csv-generator/) exports token data to CSV format for analysis and reporting. -- [Transform Tokens JSON](tools/transform-tokens-json/) utilities for merging and transforming token data between formats. -- [Token Manifest Builder](tools/token-manifest-builder/) generates manifest files for token distribution. -- [Spectrum Design Data MCP](tools/spectrum-design-data-mcp/) Model Context Protocol server providing AI assistants with structured access to Spectrum design system data. +* [Spectrum Token Diff Generator](tools/diff-generator/) a library and cli tool that reports changes made between two schema/releases/branches. +* [Optimized Diff Engine](tools/optimized-diff/) high-performance diff algorithm for large token datasets. +* [Release Analyzer](tools/release-analyzer/) tool for analyzing release history and generating data for change frequency visualization. +* [Token Changeset Generator](tools/token-changeset-generator/) automates creation of changeset files from token diff analysis. +* [Token CSV Generator](tools/token-csv-generator/) exports token data to CSV format for analysis and reporting. +* [Transform Tokens JSON](tools/transform-tokens-json/) utilities for merging and transforming token data between formats. +* [Token Manifest Builder](tools/token-manifest-builder/) generates manifest files for token distribution. +* [Spectrum Design Data MCP](tools/spectrum-design-data-mcp/) Model Context Protocol server providing AI assistants with structured access to Spectrum design system data. ## Setup monorepo locally 1. Install pnpm using [this guide](https://pnpm.io/installation). -1. Install dependencies +2. Install dependencies ```bash pnpm i ``` diff --git a/docs/release-timeline/CHANGELOG.md b/docs/release-timeline/CHANGELOG.md index d0116946..6ba0ef13 100644 --- a/docs/release-timeline/CHANGELOG.md +++ b/docs/release-timeline/CHANGELOG.md @@ -4,7 +4,7 @@ ### Minor Changes -- [#566](https://github.com/adobe/spectrum-tokens/pull/566) [`e0de953`](https://github.com/adobe/spectrum-tokens/commit/e0de953fb8ef5aba92782838094eeec3a4c78321) Thanks [@GarthDB](https://github.com/GarthDB)! - Add release timeline visualization and analysis tools for Spectrum Tokens change tracking. +- [#566](https://github.com/adobe/spectrum-design-data/pull/566) [`e0de953`](https://github.com/adobe/spectrum-design-data/commit/e0de953fb8ef5aba92782838094eeec3a4c78321) Thanks [@GarthDB](https://github.com/GarthDB)! - Add release timeline visualization and analysis tools for Spectrum Tokens change tracking. This adds new internal tooling for analyzing and visualizing the frequency and scope of Spectrum Tokens releases: - **Release Analyzer Tool** (`tools/release-analyzer/`): Parses git tags and CHANGELOG.md to extract release data and change scope metrics diff --git a/docs/s2-tokens-viewer/CHANGELOG.md b/docs/s2-tokens-viewer/CHANGELOG.md index 569dfb27..dd41f4fd 100644 --- a/docs/s2-tokens-viewer/CHANGELOG.md +++ b/docs/s2-tokens-viewer/CHANGELOG.md @@ -4,49 +4,49 @@ ### Patch Changes -- Updated dependencies [[`f64bee3`](https://github.com/adobe/spectrum-tokens/commit/f64bee3900c874775f2d3424516786a0d644d057)]: +- Updated dependencies [[`f64bee3`](https://github.com/adobe/spectrum-design-data/commit/f64bee3900c874775f2d3424516786a0d644d057)]: - @adobe/spectrum-tokens@13.16.0 ## 0.1.7 ### Patch Changes -- Updated dependencies [[`1e860c4`](https://github.com/adobe/spectrum-tokens/commit/1e860c4436c58ceca6f4500ea7e24d6d8cdd20c8)]: +- Updated dependencies [[`1e860c4`](https://github.com/adobe/spectrum-design-data/commit/1e860c4436c58ceca6f4500ea7e24d6d8cdd20c8)]: - @adobe/spectrum-tokens@13.15.1 ## 0.1.6 ### Patch Changes -- Updated dependencies [[`3df7197`](https://github.com/adobe/spectrum-tokens/commit/3df7197e7da23c9bb107f7dfcd935b5c62a86041)]: +- Updated dependencies [[`3df7197`](https://github.com/adobe/spectrum-design-data/commit/3df7197e7da23c9bb107f7dfcd935b5c62a86041)]: - @adobe/spectrum-tokens@13.15.0 ## 0.1.5 ### Patch Changes -- Updated dependencies [[`b4df84e`](https://github.com/adobe/spectrum-tokens/commit/b4df84e2f2ca246332907f9ddda94438288dd98e)]: +- Updated dependencies [[`b4df84e`](https://github.com/adobe/spectrum-design-data/commit/b4df84e2f2ca246332907f9ddda94438288dd98e)]: - @adobe/spectrum-tokens@13.14.1 ## 0.1.4 ### Patch Changes -- Updated dependencies [[`336f672`](https://github.com/adobe/spectrum-tokens/commit/336f67216dfd875f0feb65c10059d9f3fe6dcaf7)]: +- Updated dependencies [[`336f672`](https://github.com/adobe/spectrum-design-data/commit/336f67216dfd875f0feb65c10059d9f3fe6dcaf7)]: - @adobe/spectrum-tokens@13.14.0 ## 0.1.3 ### Patch Changes -- Updated dependencies [[`1d4973e`](https://github.com/adobe/spectrum-tokens/commit/1d4973e78d814575da231c2c4080ead8a190d2fc)]: +- Updated dependencies [[`1d4973e`](https://github.com/adobe/spectrum-design-data/commit/1d4973e78d814575da231c2c4080ead8a190d2fc)]: - @adobe/spectrum-tokens@13.13.0 ## 0.1.2 ### Patch Changes -- [#544](https://github.com/adobe/spectrum-tokens/pull/544) [`18dc0e1`](https://github.com/adobe/spectrum-tokens/commit/18dc0e12537e73d7290ae9b227754b5240807cf3) Thanks [@GarthDB](https://github.com/GarthDB)! - Fix moon.yml command chaining syntax for newer moon version +- [#544](https://github.com/adobe/spectrum-design-data/pull/544) [`18dc0e1`](https://github.com/adobe/spectrum-design-data/commit/18dc0e12537e73d7290ae9b227754b5240807cf3) Thanks [@GarthDB](https://github.com/GarthDB)! - Fix moon.yml command chaining syntax for newer moon version Updated command chaining in moon.yml tasks to use proper shell syntax instead of && as array elements. This resolves issues with the viewer:export task failing after moon version update. @@ -54,7 +54,7 @@ ### Patch Changes -- [#533](https://github.com/adobe/spectrum-tokens/pull/533) [`27fe5e4`](https://github.com/adobe/spectrum-tokens/commit/27fe5e44fed13b7b1fddd02f614251cc47c4f8eb) Thanks [@GarthDB](https://github.com/GarthDB)! - Improve S2 tokens viewer self-containment and deployment +- [#533](https://github.com/adobe/spectrum-design-data/pull/533) [`27fe5e4`](https://github.com/adobe/spectrum-design-data/commit/27fe5e44fed13b7b1fddd02f614251cc47c4f8eb) Thanks [@GarthDB](https://github.com/GarthDB)! - Improve S2 tokens viewer self-containment and deployment **Enhancements:** - Add workspace dependency on `@adobe/spectrum-tokens` package diff --git a/docs/s2-tokens-viewer/moon.yml b/docs/s2-tokens-viewer/moon.yml index 5d994506..15cb890f 100644 --- a/docs/s2-tokens-viewer/moon.yml +++ b/docs/s2-tokens-viewer/moon.yml @@ -18,15 +18,27 @@ tasks: command: - sh - -c - - "mkdir -p ../../site/s2-tokens-viewer/ && rm -rf ../../site/s2-tokens-viewer && mkdir -p ../../site/s2-tokens-viewer" + - "mkdir -p ../../site && rm -rf ../../site/s2-tokens-viewer && mkdir -p ../../site/s2-tokens-viewer" platform: system + prepare: + command: + - sh + - -c + - "mkdir -p tokens && cp -r node_modules/@adobe/spectrum-tokens/src/ tokens && cp -r node_modules/@adobe/spectrum-tokens/package.json tokens/" + platform: system + deps: + - tokens:build + inputs: + - package.json + outputs: + - tokens/ export: command: - sh - -c - - "cp -r ./index.html ../../site/s2-tokens-viewer/ && cp -r ./css ../../site/s2-tokens-viewer/ && cp -r ./data ../../site/s2-tokens-viewer/ && cp -r ./tokens ../../site/s2-tokens-viewer/" + - "mkdir -p ../../site/s2-tokens-viewer && cp -r ./index.html ../../site/s2-tokens-viewer/ && cp -r ./css ../../site/s2-tokens-viewer/ && cp -r ./data ../../site/s2-tokens-viewer/ && cp -r ./tokens ../../site/s2-tokens-viewer/" deps: - - ~:clean + - ~:prepare platform: system outputs: - - /site/ + - /site/s2-tokens-viewer/ diff --git a/docs/s2-tokens-viewer/tokens/color-aliases.json b/docs/s2-tokens-viewer/tokens/color-aliases.json deleted file mode 100644 index bc4c850f..00000000 --- a/docs/s2-tokens-viewer/tokens/color-aliases.json +++ /dev/null @@ -1,2407 +0,0 @@ -{ - "focus-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "fe914904-a368-414b-a4ac-21c0b0340d05" - }, - "static-white-focus-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{white}", - "uuid": "1dd6dc5b-47a2-41eb-80fc-f06293ae8e13" - }, - "static-black-focus-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "c6b8275b-f44e-43b4-b763-82dda94d963c" - }, - "overlay-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "af66daa6-9e52-4e68-a605-86d1de4ee971" - }, - "overlay-opacity": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.4", - "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.6", - "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.4", - "uuid": "8964a28b-af18-4623-b530-7f4446ee6fa4" - } - } - }, - "drop-shadow-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-100}", - "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb", - "deprecated": true, - "deprecated_comment": "Replaced with drop-shadow-color-100" - }, - "opacity-disabled": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.3", - "uuid": "fdf6fd5d-55a0-4428-a258-4e8fafc74b74" - }, - "background-base-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "e0d8739d-18dd-44bc-92ea-e443882a780b" - }, - "background-layer-1-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-50}", - "uuid": "7e6678b7-2903-434b-8ee2-06c83815b01d" - }, - "background-layer-2-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "b7b2bf98-b96a-40ca-b51e-5876d3418085" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-75}", - "uuid": "e30b7936-6ae7-4ada-8892-94a1f67d55c9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "b834a6a5-e582-4450-b87a-57fa23e12179" - } - } - }, - "neutral-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "95cf1481-f476-47ce-a45a-54da64b44255" - }, - "neutral-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "142f9467-e519-4ed7-bd98-69a31e876e70" - }, - "neutral-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "5a0fdda5-6ac2-4a31-a7b9-6b3a5dd868d6" - }, - "neutral-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "f52c6bfb-2d62-4fc8-a1cd-6c8d7420eeb4" - }, - "neutral-background-color-selected-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "fd1c9f2b-8358-4bd3-a5cc-d211673428bc" - }, - "neutral-background-color-selected-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "1c220122-5f32-42f9-848f-ae10061241e5" - }, - "neutral-background-color-selected-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "966c56d0-4461-45e7-9e20-0277f2111a34" - }, - "neutral-background-color-selected-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "9b8df7df-3439-4614-b446-97a4de782e27" - }, - "neutral-subdued-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "3b09b2fd-cbf9-4933-9655-27a75d984f06" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "fdcab585-e3a9-4026-bf40-e7fdd01bf05b" - } - } - }, - "neutral-subdued-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "a1ab50d5-1aa1-4198-9510-7ea8458cc62f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "81fb8734-c8c3-4f6e-8a14-177ce1d7db02" - } - } - }, - "neutral-subdued-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "300d2800-a6e5-4b78-9b6c-aaf2f4af39c6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "11bf9149-d8df-4f37-ba21-51ff911b0517" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "6e62476c-b60b-4d33-97c5-5fdf1f3a7930" - } - } - }, - "neutral-subdued-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "eece165c-743c-4d7a-b770-3ee50e1951cf" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "a1e08db6-3a72-4b8e-9475-b54a7b9be506" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "ee7dec87-de8b-4145-9985-f5ba78bc3a3b" - } - } - }, - "neutral-subdued-content-color-selected": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-subdued-content-color-down}", - "uuid": "ea46f6d3-4261-4482-a70f-2cddd113aa4a" - }, - "accent-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-900}", - "uuid": "d9d8488d-9b38-47e0-9660-dcad040f3ca8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-800}", - "uuid": "f24eb871-6419-4cef-88a2-cca8548ae31e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-900}", - "uuid": "1f4f6c48-633c-4eb5-b7d6-bf5a9a7fde18" - } - } - }, - "accent-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "9651d413-47dc-4b55-976f-91e5c6c91fb5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-700}", - "uuid": "9e140a94-c11f-470b-b7af-49880e58d4ce" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "a4fb3dc6-b724-4e5d-bbc4-c4d985e85975" - } - } - }, - "accent-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "026b1d5e-7cbc-4ee9-91e8-19766b9ac541" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-700}", - "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "a5201034-a592-47c6-be78-050ae951043e" - } - } - }, - "accent-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "43ca5f34-decc-4de8-9413-74ce57802b65" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-700}", - "uuid": "af809118-7a97-409c-925f-8d7636a791c8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "afb8dd77-7de2-4749-a594-1ff68b2fcd67" - } - } - }, - "accent-content-color-selected": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-content-color-down}", - "uuid": "9cfbf8bc-e4f3-4658-922e-9421e2ed126b" - }, - "informative-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-900}", - "uuid": "3acd52f0-d19c-4174-9ad5-42885ec9d49d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-800}", - "uuid": "da3a7c08-7f54-4486-bb66-146db21f0627" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-900}", - "uuid": "02e7121e-71eb-4228-a61a-963d7f2a531b" - } - } - }, - "informative-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "06dcb775-28b2-454e-89ce-fda34f30c7d7" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-700}", - "uuid": "092415a8-0054-4f6d-9a93-1541c767b2c5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "d0ad5e30-c689-4831-bbd0-2de373aa11b5" - } - } - }, - "informative-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "91f91b8c-0e65-4b7b-8c7b-60d3b6e235d8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-700}", - "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "109c9d4a-a024-4b41-9a99-4c0e671f1011" - } - } - }, - "informative-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "ea314056-fd9a-4325-b19a-33f56fad2859" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-700}", - "uuid": "e5292c94-ea4a-49ba-8c25-6ab1114e0fe3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "5bcac2b7-7ebb-405a-bfe3-1785d4e6fde6" - } - } - }, - "negative-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "46204746-7fe7-4f22-887e-2c9b85c3b7bc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-800}", - "uuid": "1117b73b-42e3-4ad6-8b26-af76859a27bb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "ebadb88b-90a3-492e-ba3c-e9f1232b5ce5" - } - } - }, - "negative-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "d2481a50-13a0-4f19-8faa-a1a215fee21d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-700}", - "uuid": "648da867-549e-47c3-9312-e9cfda288705" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "b1104fe3-4965-411e-95d3-87f59cdbc756" - } - } - }, - "negative-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "3c2d5afe-fff4-487d-a312-000f738c8704" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-700}", - "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "ce2e6ea6-c692-4cff-a2ac-f0c1c2e054ca" - } - } - }, - "negative-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "41a6ee21-8db2-410b-a694-fca1fbf70f2a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-700}", - "uuid": "f1470931-f4f8-47d9-b118-5b813e4c154a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "abcf178e-0e44-4f57-a62c-382cb9478be2" - } - } - }, - "positive-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-900}", - "uuid": "d878d795-2292-4d90-a9e2-37af1d97a532" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-800}", - "uuid": "82b54f71-7c9e-4388-9e3b-4d13f12fad60" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-900}", - "uuid": "27688f39-6b46-4b40-a3c5-67694a0ff672" - } - } - }, - "positive-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "d60ab5e9-9ada-4587-a75f-91f2b492800f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-700}", - "uuid": "2992a78b-9ce0-4b29-a4f6-ddbc51f820f2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "7c4bd8ad-72ce-4518-b91d-a7b7721fe920" - } - } - }, - "positive-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "4096a319-241e-410c-ad51-521d57155004" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-700}", - "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "45c598af-e0da-4e41-855a-55dfc77f198c" - } - } - }, - "positive-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "036525d0-c6c4-478c-9aa3-84242737c6b1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-700}", - "uuid": "56d371b4-437f-4ca9-854f-ae6daf5dcfce" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "74eef2ae-5b83-4a25-b882-5960f64ecef0" - } - } - }, - "notice-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-900}", - "uuid": "323428c1-792d-41b4-8a17-a12f1ac00e2a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-600}", - "uuid": "48f3445a-63d8-4477-a2f5-1fee6a022328" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-600}", - "uuid": "85515d6c-4674-435f-a2d4-b9bf8311781e" - } - } - }, - "disabled-background-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "a46de9d2-5c68-4a1e-97cd-7cbaf4038303" - }, - "disabled-static-white-background-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-100}", - "uuid": "fbd40c55-bb12-43ff-9fa6-c93884befc89" - }, - "disabled-static-black-background-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-100}", - "uuid": "579e401c-de49-41af-a8c7-a0a070c31979" - }, - "gray-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "5adeb281-3183-43e0-b20c-bd4e29f4da7e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "a3e71134-b44f-4b52-a84d-4841e01505e6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "385372e9-8b04-45ea-a7a2-f1f62ac68ad6" - } - } - }, - "red-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "8cec4a84-3eea-45d6-ae1b-64907be7da78" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "ce074ee2-a2a2-4da3-a99e-603524193d46" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "3fb6aa49-631f-489b-9dab-63a5712d72da" - } - } - }, - "orange-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-600}", - "uuid": "981c054e-9db5-4589-b9e7-eed307b115ca" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "3e9a6c2a-bd09-4d28-a95c-920109c1852f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-600}", - "uuid": "37c3db03-6dd6-47e5-a03c-25663d116c52" - } - } - }, - "yellow-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "f8e435de-1630-4628-8b6d-128987d66ddc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1100}", - "uuid": "61c5e375-bff3-479f-8c32-2d2a5edb906c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "ff49d6b0-4f39-4cbb-a580-db03b0579a71" - } - } - }, - "chartreuse-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-500}", - "uuid": "f6e68186-e7fe-4d36-b371-72461a271358" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-1000}", - "uuid": "5df9a029-dc91-4078-a198-574486948834" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-500}", - "uuid": "67d55f09-a468-4174-9b59-13008b32b44e" - } - } - }, - "celery-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-600}", - "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-900}", - "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-600}", - "uuid": "b6e14409-7a61-46fc-80d0-2b7854baf871" - } - } - }, - "green-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "d5cac08e-56e8-4217-a153-33f43c1a2059" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "49170573-9c22-42e1-a1ce-cd3d3972ddb7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "f7814be9-b21f-40ff-9d34-8c0a96eea93e" - } - } - }, - "seafoam-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-900}", - "uuid": "be1d8187-effc-430f-ac31-3904cf83a6d6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-800}", - "uuid": "9a727140-328d-430f-9b10-8965eebe77d1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-900}", - "uuid": "e2f2ef18-aabf-44fd-b074-d94f75862f3d" - } - } - }, - "cyan-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-900}", - "uuid": "12c060c6-db12-41ca-8b53-f4fc0afd2ed7" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-800}", - "uuid": "543af64f-9c28-4e88-8597-3259cd7ebf1f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-900}", - "uuid": "764bb832-de5a-4c21-b429-f911a931ead6" - } - } - }, - "blue-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "c6c435b6-34b3-4fc1-bf96-a56a15e01fe5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "83591a94-83e1-4557-8f50-cc1fe9793b76" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "db8b9268-68dc-46be-aace-1adf8d85061b" - } - } - }, - "indigo-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "23859fff-27f5-4576-83c9-0fbc316e880a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-800}", - "uuid": "b7f5a677-4e89-40e1-8324-7619a628ce8b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "dedf817e-2883-4632-936c-207fdafe7469" - } - } - }, - "purple-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "ed07d8f4-390f-4124-a4c4-81b62767c6cd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-800}", - "uuid": "e577d521-0271-4226-a094-624b35a05826" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "720cfaa3-6bb1-4df1-946f-94fabae54e7b" - } - } - }, - "fuchsia-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "5f61f890-93b3-4ab9-bc80-d75198a5bacf" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-800}", - "uuid": "7b4d71d3-ad78-4e02-a48e-fa79f40854a2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "13e66afc-a9d8-46a9-8b15-310c5b35e52f" - } - } - }, - "magenta-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "4e02601f-12da-4ce2-b58c-0aa0e309442d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-800}", - "uuid": "5867d764-d909-4490-b947-533e89997d0a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "c7b29eba-f8a3-43f7-b5b9-0c1a7f04bb38" - } - } - }, - "background-opacity-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "b7b25005-7188-4936-8dbc-e2dd15213f47" - }, - "background-opacity-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "048c326d-93b1-435f-a9e3-a4cbd3144fdd" - }, - "background-opacity-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "0718c9fc-3bb2-4887-97bd-e23b8ad308c5" - }, - "background-opacity-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "a35883a9-43fd-4be5-97ee-62fdf3a33f39" - }, - "neutral-content-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "43ca4c0d-7803-4e8e-b444-26fe70d5304c" - }, - "neutral-content-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "d236bdc5-037b-4838-8401-8a0d5136936c" - }, - "neutral-content-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "cf169d95-e427-4665-a983-c24727dbfa60" - }, - "neutral-content-color-focus-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-down}", - "uuid": "a370f375-b3b1-4af8-9628-fa901c0252fb" - }, - "neutral-content-color-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-down}", - "uuid": "f218dfd0-23be-4f07-becb-6027cc971c8b" - }, - "neutral-content-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "c2c538e0-6f8d-4586-953a-b98ef40c9eca" - }, - "neutral-subdued-content-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "7a058b23-341c-4dd3-83d8-358917277836" - }, - "neutral-subdued-content-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "a6d8a177-3e5c-4d28-a675-c21c2695d2f6" - }, - "neutral-subdued-content-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "8ab4accc-bd95-48e0-ae3a-539740a07cc6" - }, - "neutral-subdued-content-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "4e79877b-254d-4226-a28f-4c80d2d8b2f3" - }, - "accent-content-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-900}", - "uuid": "b14c876e-2930-413b-8688-1e0cf2358185" - }, - "accent-content-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "d6cd141c-d7a4-457f-bed5-9a725ca7a0fe" - }, - "accent-content-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "25d3b2d2-e7d5-4686-95ff-bfaaddc14ff1" - }, - "accent-content-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "71dcd137-f767-4d2c-b6ac-942b99ac8621" - }, - "negative-content-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "2a1b0c71-c3a4-4f4c-a625-346e026853e5" - }, - "negative-content-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "ff90152d-86bf-4a34-9a7e-ede61966bda0" - }, - "negative-content-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "f760cc99-ebec-4d34-931e-5621aef995a0" - }, - "negative-content-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "03a7aa1f-9493-4054-bb21-eb10e593da73" - }, - "disabled-content-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "8bf69fd3-1462-49b9-a78a-cc2f03380823" - }, - "disabled-static-white-content-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-400}", - "uuid": "fe319bca-0413-4ad8-a783-c64563e05816" - }, - "disabled-static-black-content-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-400}", - "uuid": "e75dbb08-80eb-4de5-afd4-55a532c69c97" - }, - "neutral-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "0dc6ed4d-17d5-4878-8ac3-bd99549b4f42" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "35ef6675-7e66-4ef5-8c8d-e8e70939b224" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "57233b29-bbc6-4f9e-83c1-9325fd6f964c" - } - } - }, - "accent-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-800}", - "uuid": "dbcb4372-f250-42bd-a5bc-b9d48cfb9322" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-900}", - "uuid": "8ccd197f-fc8e-4d31-866c-2b96049eea89" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-800}", - "uuid": "6e12afb7-c76e-4a83-acc2-f891953d5190" - } - } - }, - "informative-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-800}", - "uuid": "cd900a8d-1852-4592-9031-9edab2f9721f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-900}", - "uuid": "fd64c9ca-6ad7-415c-b0b8-2579399e33a5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-800}", - "uuid": "556d02fd-fecb-4772-92cb-921ac509bcae" - } - } - }, - "negative-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-800}", - "uuid": "d1beeda3-a00d-4f8c-8553-0a0f84093b1f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "70cb0316-5b7a-416c-bf93-7d8885c4fce6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-800}", - "uuid": "9211e320-de05-4097-8350-fef2293be6a0" - } - } - }, - "notice-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-800}", - "uuid": "b8b38df6-aac5-49fc-99bb-d64a543c5bf8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-900}", - "uuid": "2759c912-6385-40e4-9ed9-ff2e11815b4d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-800}", - "uuid": "e6e779ea-6015-467f-8df7-9027280bdea2" - } - } - }, - "positive-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-800}", - "uuid": "455acfc0-1997-4fee-b1dc-3c91bbd9fca2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-900}", - "uuid": "25e8289f-6c82-4485-8920-a187f790cd47" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-800}", - "uuid": "96075e1a-6739-41c8-985b-af30b09be6c3" - } - } - }, - "gray-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "744537db-023b-4833-8262-9c349b0915ee" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "0f7a39c2-3ee7-4ff0-873f-334c81054b77" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "e8113995-d2ec-4089-a050-9b393eb9e403" - } - } - }, - "red-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "7fe7c804-7e6b-48ac-b1fa-b88874e0a330" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-700}", - "uuid": "870f90ab-7f3e-41b6-9c11-59e9c4ff82c6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "834d0a71-9060-4ce0-8e25-8b062ef89b19" - } - } - }, - "orange-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "8fdaf9e0-bd3e-4188-84bd-7abf72e50b58" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "e7bf9977-2edf-48bc-8099-ad95e57b55b1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "f76b6279-2d64-47fe-a531-1737a834b21a" - } - } - }, - "yellow-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-600}", - "uuid": "73e40884-6d55-4a56-a376-bd788e615754" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1100}", - "uuid": "4a2ebbb5-b8b7-43a0-9d64-4974bb382a8b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-600}", - "uuid": "c14eedf9-0f34-4a38-9b89-7c9b5f3e0af6" - } - } - }, - "chartreuse-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-600}", - "uuid": "18735078-a942-442b-bc04-1b72bac77c98" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-900}", - "uuid": "a46d8e05-4f56-4b46-a279-0164abfa42e8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-600}", - "uuid": "a2cc3b6e-014f-4522-8d05-9e9d06464504" - } - } - }, - "celery-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-700}", - "uuid": "8f6f9f6e-1762-4ac3-a9b9-6cacd135dfac" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-800}", - "uuid": "37c1311b-29ed-44ab-b656-a7538726ad77" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-700}", - "uuid": "d8adaaf1-b6a3-400a-853b-6ba5a5c873e7" - } - } - }, - "green-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-700}", - "uuid": "83f76815-8660-425e-80e6-825a5be0628f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "1219770d-543d-4216-9e87-c158f8a74df6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-700}", - "uuid": "4aba2da7-3eed-4a11-830c-58cc4f6bb6cb" - } - } - }, - "seafoam-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-700}", - "uuid": "2b0a6584-db41-43b9-ba39-39171548c01a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-800}", - "uuid": "736e4768-7944-40ec-a412-4cd36299e03d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-700}", - "uuid": "15de4533-1a59-4a9f-899f-004a429471c7" - } - } - }, - "cyan-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-600}", - "uuid": "c3c126c9-2133-416a-ac0e-4ae00546941b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-900}", - "uuid": "091a2073-baa0-4cc6-b943-9dddc285ad62" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-600}", - "uuid": "ad004c2f-8cab-45d5-8e22-921d3f0332ea" - } - } - }, - "blue-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "b7cca44c-7c7d-4904-8f2c-d5bde4ea42a2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "63fe16ed-70fa-4eaf-918c-f642ff69ce05" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "0f058412-085d-4670-8cd5-964ed903a20a" - } - } - }, - "indigo-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-800}", - "uuid": "cb59d4d5-c17e-428d-a22a-e9a3fc02ac9c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "584ccbd4-3243-4041-b665-e2342d2b26e8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-800}", - "uuid": "056968e0-d29e-4b1c-a9b1-50853f6d159b" - } - } - }, - "purple-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-800}", - "uuid": "681fc141-b235-4cde-9c3a-f0033943d772" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "0ee2957b-c401-4106-8ff3-9de9fa544a03" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-800}", - "uuid": "ef836f5b-c6b9-4e6b-a671-e979dc53c407" - } - } - }, - "fuchsia-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-800}", - "uuid": "36b69bb1-d443-4ec6-807b-ea449a886825" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "38e60263-cb08-4090-a653-5acbd1664ae0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-800}", - "uuid": "656af4f3-a545-4445-9d2b-2c4a17ab46db" - } - } - }, - "magenta-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-800}", - "uuid": "8bc581a9-558c-424d-a72b-f24b48207b82" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "178e4bc6-6986-4e77-aab0-78dbe66f8e6f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-800}", - "uuid": "9bf3d052-42d1-454b-8ae6-ee0b40d9a9c8" - } - } - }, - "disabled-border-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", - "uuid": "474ae56c-709a-4f5a-a56b-62d01093f412" - }, - "disabled-static-white-border-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-300}", - "uuid": "c0dfeb64-983e-4f4c-a13e-24b5fbd2b791" - }, - "disabled-static-black-border-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-300}", - "uuid": "2df7303f-3c34-47d1-9ec9-b901dfbcf947" - }, - "negative-border-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "6effed65-3d52-465f-9eb2-7994f1ee90fb" - }, - "negative-border-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "496571fc-18ce-44a3-a89e-40ff6397adcd" - }, - "negative-border-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1100}", - "uuid": "0c35da5c-cf37-4349-82e4-8739ea94aa65" - }, - "negative-border-color-focus-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-border-color-down}", - "uuid": "63abd660-13c4-47b8-be9e-61e270b95212" - }, - "negative-border-color-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "aae2b3a5-1f68-4832-9539-62227179e69e" - }, - "negative-border-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "393cb93a-3d0a-4118-a2ee-451fdc871b0f" - }, - "background-elevated-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-75}", - "uuid": "4c19885d-0411-43dc-8f4a-db81905728e6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "2275e0fa-69a3-4542-9ec6-919e44035118" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "644ca621-9138-44e3-bdd7-123a9fccd9a6" - } - } - }, - "background-pasteboard-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "6a7c5092-c262-49b0-b5ec-5b8b4fa66d1e" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "4938710b-5a69-49eb-8517-6f5556c23298" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "93e51c98-d83e-4dad-86b7-f060a80a601e" - } - } - }, - "brown-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "12fd4bac-b0ef-4285-a0e4-5947526a91a9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "a25ac05c-c108-4caf-a77e-79b4fd36ee91" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "349dc3c5-fd57-403c-bc42-2a60b8325bd3" - } - } - }, - "cinnamon-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-800}", - "uuid": "86aa8b9c-b124-45ba-a359-a58295d28509" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-900}", - "uuid": "24026c61-470e-41b9-a247-58605b54706d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-800}", - "uuid": "9022dc27-f9d9-4697-b808-ebe36d216f8b" - } - } - }, - "pink-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "4be32a08-c731-4c59-b376-ba0ef134e14e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "496cef67-3a25-4d99-8545-e8aa9a7f0adc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "fcbf8451-ad82-4247-a867-a5d0034667b5" - } - } - }, - "silver-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "35f96ec6-0eae-4c55-aa54-134f03feda7d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "f7d55707-b9db-4711-b93f-dcc03932516c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "7e749788-d92d-4ad5-b4d2-446e77c5a041" - } - } - }, - "turquoise-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "2c31e5bc-cf23-42d6-85e8-9947e305d1ff" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "04c6819d-5049-4e18-bb83-95239fa3d8c2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "bc700351-a33c-4164-9ba7-3f86733ebe54" - } - } - }, - "brown-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "168c3534-c54e-415b-a623-27c2a8caea8c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "c6dcdb8e-4966-4de6-a74a-fffa0793d58e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "fbd8df06-a6c9-462b-ad25-a3f77016128e" - } - } - }, - "cinnamon-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-900}", - "uuid": "6dc7df67-2cfb-440f-9b1c-b7262a7cc2d3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-800}", - "uuid": "d442e5b5-5083-443d-ba60-12c60406c452" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-900}", - "uuid": "8e940601-2401-46ff-a5fb-9137d12678b7" - } - } - }, - "pink-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "78fc6322-a961-429a-bd40-3e1c1bf2c4e9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "3a363aa8-cf27-48a1-8c61-b1f1eaff6110" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "b60042cd-3ce7-4952-aeae-338d2b5fe98d" - } - } - }, - "silver-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "13d332e4-45b0-4549-a1a3-a608034960a1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "a6e04390-003e-4565-bf96-e0fb8a791cb9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "e0bb7dad-7f1b-4b6e-b2fe-99f8b14f3240" - } - } - }, - "turquoise-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "e763acbc-2c17-46c5-8484-1d8536e7ef10" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "6beacbfc-6d61-4567-86fe-39771550cf20" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "50eb3d20-ab84-4541-8807-551391016b54" - } - } - }, - "title-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "a7e9c20c-ab9b-46de-bf6a-c8fec9a8986b" - }, - "drop-shadow-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "5c0f0543-7e9b-43d6-9fea-c771b9b524c6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.36)", - "uuid": "8d7e0eb7-c3c7-485e-896c-d5d5107e3b8f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "4110e60c-efd6-421d-9c5c-0356cfff8697" - } - } - }, - "drop-shadow-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.16)", - "uuid": "5945eb42-744c-41df-a4ab-a3d61f8782ee" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.48)", - "uuid": "c88f7b8e-e5f5-4d0e-a8dd-025f8d274948" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.16)", - "uuid": "6e379d86-d4cc-48d4-a8a4-8b4be9cfc912" - } - } - }, - "drop-shadow-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.2)", - "uuid": "84ced765-054d-44f4-9dbe-5be607f65a16" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.6)", - "uuid": "8fd7fa72-67c3-4004-b8b3-af55a4b9cada" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.2)", - "uuid": "e91afe82-e2db-4c13-86cd-bcb2e866edf2" - } - } - }, - "drop-shadow-emphasized-default-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-100}", - "uuid": "af4e0a7a-7c6a-4cf2-a17b-0b07ef365869" - }, - "drop-shadow-emphasized-hover-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-200}", - "uuid": "4c84adb3-9edf-4a5d-b39a-5f31a0d3529c" - }, - "drop-shadow-elevated-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-200}", - "uuid": "e475981f-97af-479c-859b-7619dd87c448" - }, - "neutral-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", - "uuid": "9a9589e8-c08c-486f-a42f-8e139dedaa37" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "64b2528e-4c1b-4850-a67f-8bd7bb05d36c" - } - } - }, - "static-black-text-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "9b7919b5-764c-4f93-b4c7-39d8bf7f2b51" - }, - "static-white-text-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{white}", - "uuid": "13ee65f0-4bb9-4213-905d-92c1b788a702" - }, - "track-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", - "uuid": "6f2bb13a-8579-495c-8fe3-0046b1f99b01" - }, - "static-black-track-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-300}", - "uuid": "c6d40ce0-bcee-4b56-9e63-a51ee1579ef0" - }, - "static-white-track-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-300}", - "uuid": "23791534-8963-4ff8-bfb4-15108da47103" - }, - "static-black-track-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-900}", - "uuid": "0599d3b0-4d9e-4a12-ae0e-8f60e3533ab9" - }, - "static-white-track-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-900}", - "uuid": "a1cbc282-1376-48d1-b8bb-92f10aef7c6f" - }, - "drop-shadow-dragged-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-300}", - "uuid": "83c30113-68b5-475b-ba46-9179c9ff7e8d" - }, - "gray-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "83fd0c1f-fbf3-4540-b370-6f44a6dbba7e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", - "uuid": "a95998aa-d6ce-4090-9743-614196862acf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "6529e76c-0c21-449f-a318-2629cf90a58a" - } - } - }, - "blue-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "7d52711e-43fa-4a95-a7b1-3a7367570596" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-300}", - "uuid": "7da4709c-caf3-401a-a2ce-07186a7e8e8c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "93563495-60af-4a84-b811-9672fc46a1cc" - } - } - }, - "green-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-200}", - "uuid": "3b582b64-988e-4b5d-a08d-e04269403536" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-300}", - "uuid": "e10ef55e-c18d-4b73-97d0-330b480e9aa4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-200}", - "uuid": "3911fa84-a5b3-4ea1-b6ad-47f222482ddb" - } - } - }, - "orange-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "e7e1eb3c-7590-4622-a261-8de879bb1500" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-300}", - "uuid": "9b2505cc-2a71-4b1e-804d-3f2ffa69d06c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "a9671857-3e09-4132-a522-cd8f5b4cf8ff" - } - } - }, - "red-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "5d7cd7c1-66fa-49d4-923b-8cca2dcb4726" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-300}", - "uuid": "c098c385-7fce-4f16-b1d1-54a86c608e64" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "8a6b560b-50b2-4dbf-900b-0ed63233df8b" - } - } - }, - "brown-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-200}", - "uuid": "4f1f131b-b6d1-401b-82ff-be6fc0cce9f3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-300}", - "uuid": "77b47209-4527-462b-a11f-b3e5f47857ec" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-200}", - "uuid": "ac6995d9-8982-4dac-ba85-4c79ec7850a1" - } - } - }, - "cinnamon-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-200}", - "uuid": "4d114a18-a876-4b01-a356-64b6098496f4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-300}", - "uuid": "68b6af88-a951-48f8-89c3-9d599a05f4dc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-200}", - "uuid": "f326443a-8f5d-4aa2-8bbb-17dc7b0420d6" - } - } - }, - "celery-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-200}", - "uuid": "cf459b71-0d91-4cb4-96b8-f536e553f66e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-300}", - "uuid": "67618d20-60a0-44d9-b98a-a84faf409788" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-200}", - "uuid": "2182ee3c-55aa-4d07-9cc1-f827c88ce3d6" - } - } - }, - "chartreuse-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-200}", - "uuid": "2dd50902-f9bb-4f79-b31c-3997f4fd2163" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-300}", - "uuid": "b80c47b0-222b-49a2-9012-1465a4575092" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-200}", - "uuid": "ab75a3ba-17ce-4aae-902f-2b3e0233b726" - } - } - }, - "cyan-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-200}", - "uuid": "084200e3-85bf-496e-b12a-b439e108b9fb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-300}", - "uuid": "740e1c42-e68c-4c10-9bcd-30dc0bae6418" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-200}", - "uuid": "2f72eaf9-547a-436e-86ab-695979db4f93" - } - } - }, - "fuchsia-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-200}", - "uuid": "9bb9c1e9-6067-49a4-b4af-13ccd87830d9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-300}", - "uuid": "3e62d682-c770-498d-a25a-5544775aeaa1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-200}", - "uuid": "28ef060d-098c-4388-b600-00f4f8fe49aa" - } - } - }, - "indigo-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-200}", - "uuid": "dda05431-bce9-4686-8738-78fb409ab28f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-300}", - "uuid": "533023cb-f78a-4f1c-af52-244b3c10a7bb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-200}", - "uuid": "2110b943-24cf-4afd-81b2-31676f1400f8" - } - } - }, - "magenta-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-200}", - "uuid": "09787c85-44e0-4efe-b427-f6e7dde544a4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-300}", - "uuid": "143b0387-7069-4bef-b852-9c456d692b88" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-200}", - "uuid": "b526e518-47b2-4a1c-b54b-42596381b7fd" - } - } - }, - "pink-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-200}", - "uuid": "41f3d269-85d6-4c82-9b1c-e40ea508fa78" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-300}", - "uuid": "72400c8f-2e44-4757-8be6-3c1eb28d9606" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-200}", - "uuid": "d726501f-8920-4434-b397-b0974037161a" - } - } - }, - "purple-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-200}", - "uuid": "a53f9f9a-8fde-4de2-83a3-944e1c4556c1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-300}", - "uuid": "896f2a2f-4d02-4104-ac33-a3705a9c61e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-200}", - "uuid": "1d628f99-7c9c-423d-a470-a260d84d0d8d" - } - } - }, - "seafoam-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-200}", - "uuid": "7623166b-5320-40eb-8a5f-2cd12f17bdb2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-300}", - "uuid": "73620c8b-3943-46c0-acb8-d517e7e6081e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-200}", - "uuid": "0acaf55e-7e99-45f9-b99b-e461fa78a481" - } - } - }, - "silver-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-200}", - "uuid": "c80f665a-801e-45c8-b59b-8b9b47ebb356" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-300}", - "uuid": "6f596774-e326-4d80-bf1d-23f7ad1f4ccb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-200}", - "uuid": "ec3dddb5-3944-493c-b5c8-f08c3272dc06" - } - } - }, - "turquoise-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-200}", - "uuid": "aa7d44fd-6c77-43dc-8981-4200356fd02a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-300}", - "uuid": "5e5d9ba8-df94-43e1-ad40-f78312925ec5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-200}", - "uuid": "4e874813-4ebc-4855-bcb3-83024a6d1ba2" - } - } - }, - "yellow-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-200}", - "uuid": "5d5cfc7a-e6f4-4d6d-a39b-359350ddd280" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-300}", - "uuid": "fcb0fe04-3498-4cfa-964d-5134bbcc74c6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-200}", - "uuid": "a238d434-3d0b-48fe-a413-a07e9229cdda" - } - } - }, - "drop-shadow-ambient-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.08)", - "uuid": "edc729e0-5998-42ac-bf4a-fdc4bfabd771" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.24)", - "uuid": "3dd12e5d-91b3-4466-94db-4c2089238661" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.08)", - "uuid": "df3a555d-3f22-4499-9269-4311c4b657e0" - } - } - }, - "drop-shadow-transition-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.04)", - "uuid": "0fe5c2a3-3f07-490d-bfe2-95dffa6a11c0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "aca70da5-3d6d-4d02-b23b-9e2f8374f6e6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.04)", - "uuid": "52d1ce61-a695-439c-80a5-3978505aa04d" - } - } - }, - "drop-shadow-emphasized-key-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.08)", - "uuid": "c6fd25ed-1d86-4b7b-aa56-9ac371b2bbe6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.24)", - "uuid": "7a9a257f-538c-4e1b-a3f4-a652e59582c9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.08)", - "uuid": "5e946c9e-6b78-43f7-b8fa-74a3dbd2cc48" - } - } - }, - "drop-shadow-emphasized-hover-key-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "8acbc847-76d3-4805-a9fd-f68bfe49ddc6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.36)", - "uuid": "e03b0800-c48d-46f0-93b0-5beeb290efe0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "5a1da245-ffb1-405f-be44-20696c0d5ad4" - } - } - }, - "drop-shadow-elevated-key-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "6a3837b8-70b6-44b1-a439-551a6e2f75cd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.36)", - "uuid": "e78e9604-1919-4b7d-8338-5900bdbde89f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "ba2ff175-d2d0-4a53-a070-57c41283cb50" - } - } - }, - "drop-shadow-dragged-key-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.16)", - "uuid": "5973a140-c745-4835-897c-f6648351f182" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.48)", - "uuid": "73e17173-3695-4dcd-b37a-1714bb45a696" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.16)", - "uuid": "0b9777dc-6689-4b97-b7a6-d113272f4576" - } - } - }, - "drop-shadow-emphasized": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/drop-shadow.json", - "value": [ - { - "x": "0px", - "y": "2px", - "blur": "8px", - "spread": "0px", - "color": "{drop-shadow-ambient-color}" - }, - { - "x": "0px", - "y": "1px", - "blur": "4px", - "spread": "0px", - "color": "{drop-shadow-transition-color}" - }, - { - "x": "0px", - "y": "0px", - "blur": "1px", - "spread": "0px", - "color": "{drop-shadow-emphasized-key-color}" - } - ], - "uuid": "71163f17-f6c6-4123-ac65-2fc30271acf1" - }, - "drop-shadow-emphasized-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/drop-shadow.json", - "value": [ - { - "x": "0px", - "y": "4px", - "blur": "12px", - "spread": "0px", - "color": "{drop-shadow-ambient-color}" - }, - { - "x": "0px", - "y": "2px", - "blur": "6px", - "spread": "0px", - "color": "{drop-shadow-transition-color}" - }, - { - "x": "0px", - "y": "0px", - "blur": "2px", - "spread": "0px", - "color": "{drop-shadow-emphasized-key-color}" - } - ], - "uuid": "35d75867-6bc7-49f2-89d5-e353e1117a94" - }, - "drop-shadow-elevated": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/drop-shadow.json", - "value": [ - { - "x": "0px", - "y": "4px", - "blur": "12px", - "spread": "0px", - "color": "{drop-shadow-ambient-color}" - }, - { - "x": "0px", - "y": "2px", - "blur": "6px", - "spread": "0px", - "color": "{drop-shadow-transition-color}" - }, - { - "x": "0px", - "y": "0px", - "blur": "2px", - "spread": "0px", - "color": "{drop-shadow-elevated-key-color}" - } - ], - "uuid": "8ecd414e-72e6-4fac-953d-5a1fbe048835" - }, - "drop-shadow-dragged": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/drop-shadow.json", - "value": [ - { - "x": "0px", - "y": "12px", - "blur": "16px", - "spread": "0px", - "color": "{drop-shadow-ambient-color}" - }, - { - "x": "0px", - "y": "6px", - "blur": "8px", - "spread": "0px", - "color": "{drop-shadow-transition-color}" - }, - { - "x": "0px", - "y": "0px", - "blur": "6px", - "spread": "0px", - "color": "{drop-shadow-dragged-key-color}" - } - ], - "uuid": "40668dc3-1bc4-4572-8bc8-32818c192a40" - } -} diff --git a/docs/s2-tokens-viewer/tokens/color-component.json b/docs/s2-tokens-viewer/tokens/color-component.json deleted file mode 100644 index 18aba096..00000000 --- a/docs/s2-tokens-viewer/tokens/color-component.json +++ /dev/null @@ -1,598 +0,0 @@ -{ - "swatch-border-color": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" - }, - "swatch-border-opacity": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.42", - "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" - }, - "swatch-disabled-icon-border-color": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" - }, - "swatch-disabled-icon-border-opacity": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.42", - "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" - }, - "thumbnail-border-color": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" - }, - "thumbnail-border-opacity": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" - }, - "thumbnail-opacity-disabled": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{opacity-disabled}", - "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" - }, - "opacity-checkerboard-square-light": { - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{white}", - "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" - }, - "opacity-checkerboard-square-dark": { - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "f783b8cb-d31f-46c2-b550-990639752510" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "35fcf7b1-7140-4522-8410-48547aaf6fd6" - } - } - }, - "avatar-opacity-disabled": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{opacity-disabled}", - "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" - }, - "color-area-border-color": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" - }, - "color-area-border-opacity": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" - }, - "color-slider-border-color": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" - }, - "color-slider-border-opacity": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" - }, - "color-loupe-drop-shadow-color": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-elevated-color}", - "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9", - "deprecated": true, - "deprecated_comment": "Use `drop-shadow-elevated-color` instead" - }, - "color-loupe-drop-shadow-y": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-elevated-y}", - "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b", - "deprecated": true - }, - "color-loupe-drop-shadow-blur": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-elevated-blur}", - "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d", - "deprecated": true - }, - "color-loupe-inner-border": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-200}", - "uuid": "d2c4cb48-8a90-461d-95bc-d882ba01472b" - }, - "color-loupe-outer-border": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{white}", - "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" - }, - "card-selection-background-color": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-600}", - "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-600}", - "uuid": "81c0608b-c977-490e-b8d7-830d0676fdad" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-600}", - "uuid": "5dd9406f-9b36-43f1-8b35-b1bb7f2a4c8d" - } - } - }, - "card-selection-background-color-opacity": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.95", - "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" - }, - "drop-zone-background-color": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-visual-color}", - "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" - }, - "drop-zone-background-color-opacity": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" - }, - "drop-zone-background-color-opacity-filled": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.3", - "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" - }, - "coach-mark-pagination-color": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" - }, - "color-handle-inner-border-color": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" - }, - "color-handle-inner-border-opacity": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.42", - "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" - }, - "color-handle-outer-border-color": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" - }, - "color-handle-outer-border-opacity": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{color-handle-inner-border-opacity}", - "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" - }, - "color-handle-drop-shadow-color": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "deprecated": true, - "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", - "value": "{drop-shadow-color}", - "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" - }, - "floating-action-button-drop-shadow-color": { - "component": "floating-action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-300}", - "uuid": "d66d3a56-1ba0-4ce7-a263-eb46a4d17af0" - }, - "floating-action-button-shadow-color": { - "component": "floating-action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{floating-action-button-drop-shadow-color}", - "uuid": "f843b1b7-4b2f-496e-a679-b0372e49d575", - "deprecated": true, - "deprecated_comment": "Use `floating-action-button-drop-shadow-color` instead" - }, - "table-row-hover-color": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" - }, - "table-row-hover-opacity": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.07", - "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" - }, - "table-selected-row-background-color": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-background-color-default}", - "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" - }, - "table-selected-row-background-opacity": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" - }, - "table-selected-row-background-color-non-emphasized": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-background-color-selected-default}", - "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" - }, - "table-selected-row-background-opacity-non-emphasized": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "1ef41e27-3dea-4589-ad7a-140a03a77384" - }, - "table-row-down-opacity": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "75ae742c-e96e-494f-9880-746bb2849575" - }, - "table-selected-row-background-opacity-hover": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" - }, - "table-selected-row-background-opacity-non-emphasized-hover": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" - }, - "menu-item-background-color-default": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "f4d97d6a-c1f3-4ef5-b7e5-8fbee1365a83" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "9b9e8b32-46b8-470d-85b9-352c00e90138" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "ae0fb15e-c8a2-42c4-b973-0fb523003b79" - } - } - }, - "menu-item-background-color-hover": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "857e82a6-537e-4534-9084-353c5401f567" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "f68ff159-e886-4519-b95e-e93879a2f535" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "1329d684-6ac9-4f46-9bbc-046e2de5276e" - } - } - }, - "menu-item-background-color-down": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "d609bd79-ab48-4a7a-95b1-da5a88ac5338" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "7ccdd9e8-3677-4de8-b9df-19efa80d88c0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "e31108a0-1b8a-4d5e-b579-592a01619bd0" - } - } - }, - "menu-item-background-color-keyboard-focus": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "dd044387-57b9-4867-90fa-b3c4c4a62e5c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "ae9dc785-2406-407e-ab47-d42d6fbf65f6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "e9b046ee-408e-4781-a2cd-1d321bde4529" - } - } - }, - "menu-item-background-color-disabled": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "211d6540-cf9d-4d80-815b-885844283fa6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "0e2c2900-180c-443a-86ff-49170166e616" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "5924d0c5-6938-4660-8be3-9374bb3e5b0c" - } - } - }, - "popover-border-color": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-25}", - "uuid": "66da6f53-5446-43c1-bbe0-73b46763fde1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "825dc035-7b1c-4ddd-b1a9-be1546dae7e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "92133ef4-9b81-4fbd-9736-8b83078ef053" - } - } - }, - "popover-border-opacity": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "05c58363-1d34-4991-a7f7-7be7da4df50a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "1.0", - "uuid": "fa9feacc-0c82-41a7-badc-5803c45a703b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "55ab7957-997f-41a7-b31d-0994a2f77859" - } - } - }, - "coach-indicator-color": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "bfd387b8-0ce0-45ff-8d66-fc5de2f4900c" - }, - "swatch-group-border-color": { - "component": "swatch-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "08b8d06a-5475-47bf-ad2e-9f52ee07345a" - }, - "avatar-border-color": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "bae79ea7-2b3e-4d43-af42-7deab67acc7c" - }, - "standard-panel-gripper-color-drag": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "69e2d0b3-6807-4e46-9f8a-72bf49439f36" - }, - "standard-panel-gripper-color": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "71840c7b-acdd-45b9-a228-5091591f5405" - }, - "bar-panel-gripper-color": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "5a46c025-32b4-4bda-bab0-5ab0fb69ca8e" - }, - "bar-panel-gripper-color-drag": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "16431c28-23e4-4077-bcfa-138f90583282" - }, - "select-box-selected-border-color": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "4bbb81b1-09fb-4ebe-80b5-cebb75c13839" - }, - "tree-view-row-background-hover": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "39d26185-da40-47b5-b4b3-e47689129256" - }, - "tree-view-selected-row-background-color-emphasized": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-background-color-default}", - "uuid": "65854450-ed1a-49ea-ab29-d257b8a0569e" - }, - "tree-view-selected-row-background-default": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "8f19994d-f49a-42ea-97bd-98ab1d76d02d" - }, - "tree-view-selected-row-background-hover": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "c325ed8f-8248-40c3-a0f0-efba57638f24" - }, - "color-wheel-border-color": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "a60c3946-dff7-4245-bdcd-b61445066e48" - }, - "color-wheel-border-opacity": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "be8fac27-b644-492e-a89d-6c87cfecb8a1" - }, - "action-bar-border-color": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-25}", - "uuid": "166159cc-9353-4d22-90f0-64718533d73a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "dac0d761-d8c1-4b1f-bfbe-766651122ecf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-25}", - "uuid": "e242c2e1-54db-40c5-98ee-abebdcd59f4d" - } - } - }, - "card-background-well-color": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "c9c0e684-6b6c-4314-9b5b-7ba5e3333071" - }, - "card-background-loading-color": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "6022f845-b182-493f-bdae-f86f6336efaa" - }, - "stack-item-background-color-hover": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "022a6244-ce6c-4c3f-82a1-e2f5118d3c5e" - }, - "stack-item-background-color-down": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "c99360a4-de28-48e6-80ad-93adb714d388" - }, - "stack-item-background-color-key-focus": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "a0251da6-7517-4712-85a1-29ca7f16ef91" - }, - "stack-item-selected-background-color-default": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "128c4963-471a-44e3-9fb5-328d92d0266d" - }, - "stack-item-selected-background-color-hover": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "a1bcd6c6-ef3e-42e4-8d88-2fafe2b318da" - }, - "stack-item-selected-background-color-down": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "1ad58d16-66da-44ae-829e-9ee1ff56a857" - }, - "stack-item-selected-background-color-key-focus": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "93f433f2-2d0b-4225-8b39-b10000808360" - }, - "stack-item-selected-background-color-emphasized": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-background-color-default}", - "uuid": "95685612-09b7-477f-9c13-06eb58abe5c8" - } -} diff --git a/docs/s2-tokens-viewer/tokens/color-palette.json b/docs/s2-tokens-viewer/tokens/color-palette.json deleted file mode 100644 index cb65677a..00000000 --- a/docs/s2-tokens-viewer/tokens/color-palette.json +++ /dev/null @@ -1,6749 +0,0 @@ -{ - "white": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "9b799da8-2130-417e-b7ee-5e1154a89837", - "private": true - }, - "transparent-white-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0)", - "uuid": "98a7279b-e21c-41ae-9bae-8b9b2b243e35", - "private": true - }, - "transparent-white-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.04)", - "uuid": "db1dbf26-fa48-42e1-b724-7953b0a6a543", - "private": true - }, - "transparent-white-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.07)", - "uuid": "28d11d38-570d-4d99-b581-855781b972c5", - "private": true - }, - "transparent-white-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.11)", - "uuid": "a1b64a62-7c78-415e-a9be-c86acbf361ca", - "private": true - }, - "transparent-white-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.14)", - "uuid": "936db837-bc5a-40b0-a0e8-8e39b9fc62cb", - "private": true - }, - "transparent-white-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.17)", - "uuid": "5ffa0283-ce9c-4f96-9227-f559ec54ee0c", - "private": true - }, - "transparent-white-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.21)", - "uuid": "12e610d4-e3dc-4e86-9c09-09d86915b6f1", - "private": true - }, - "transparent-white-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.39)", - "uuid": "89c1380f-3e8e-4895-b025-027cee7ecd5b", - "private": true - }, - "transparent-white-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.51)", - "uuid": "b24431ee-5c72-4a73-8733-746c6f5d77c0", - "private": true - }, - "transparent-white-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.66)", - "uuid": "3ecc14ec-a21e-47ba-8225-915509a532af", - "private": true - }, - "transparent-white-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.85)", - "uuid": "b85836bf-af47-412a-900a-4ec5ad0733b2", - "private": true - }, - "transparent-white-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.94)", - "uuid": "c5c823c6-1911-4e0e-ba2f-5105f467e108", - "private": true - }, - "transparent-white-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "1409a50a-9a9d-463d-957f-fa2e4f98a0cd", - "private": true - }, - "black": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 0, 0)", - "uuid": "28dea8b0-4e9a-46f9-babb-c8910e6ae783", - "private": true - }, - "transparent-black-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0)", - "uuid": "d0867b86-6245-4c02-8617-ea7fd5c80288", - "private": true - }, - "transparent-black-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.03)", - "uuid": "d6aa176c-30bd-423f-b05f-4360672bd87e", - "private": true - }, - "transparent-black-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.05)", - "uuid": "d33a66ea-ca60-416f-9e92-967dbbb1e983", - "private": true - }, - "transparent-black-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.09)", - "uuid": "7565eb32-d745-4fc3-8779-a717f8ba910a", - "private": true - }, - "transparent-black-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "a84ecad8-8005-4ce4-add6-7f83f7e05ba0", - "private": true - }, - "transparent-black-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.15)", - "uuid": "16a871e1-d9df-42bb-8889-99059d70e82e", - "private": true - }, - "transparent-black-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.22)", - "uuid": "b769453b-586c-4dd2-b3a1-ddf5964160bc", - "private": true - }, - "transparent-black-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.44)", - "uuid": "cebedd9f-9e4b-47cf-addb-45d8ff9c9179", - "private": true - }, - "transparent-black-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.56)", - "uuid": "199e19a5-bf7d-4933-8425-d7d5881e4cf5", - "private": true - }, - "transparent-black-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.69)", - "uuid": "56da822f-98ea-4ad1-b993-3f052de45f36", - "private": true - }, - "transparent-black-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.84)", - "uuid": "3e89f180-b0f0-4de0-904b-c80f0210a361", - "private": true - }, - "transparent-black-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.93)", - "uuid": "c0a331f9-53e3-4c72-b5e3-139d730a1752", - "private": true - }, - "transparent-black-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 0, 0)", - "uuid": "098f2f56-e52f-47b1-943a-d1d7218de484", - "private": true - }, - "gray-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(17, 17, 17)", - "uuid": "ac61b090-d356-4f7f-ac6d-b4f20617c9e3" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "a8c6363c-5297-41e3-ad76-1b6d0d3a3cc9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(254, 254, 255)", - "uuid": "0906f3b2-74a9-4012-9e26-4d8f68f0eba9" - } - }, - "private": true - }, - "gray-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(248, 248, 248)", - "uuid": "f6e408a6-81ae-4658-8375-a532f324eba0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(27, 27, 27)", - "uuid": "0913be1e-b648-4b80-9976-fd8e5e53f4fc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 253)", - "uuid": "16ee1a81-e7d0-46ff-af81-5eca376ce203" - } - }, - "private": true - }, - "gray-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(243, 243, 243)", - "uuid": "01cd6c7e-f2eb-4b5d-9e2a-30940e1ab37b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 34, 34)", - "uuid": "1666d544-ad1b-445a-9a57-d2277fb752eb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(241, 244, 251)", - "uuid": "4b6e738d-ac71-4d34-83eb-cd45e511b144" - } - }, - "private": true - }, - "gray-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 233, 233)", - "uuid": "64e2dbc2-05fa-43d7-80ae-d4d11c55348f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 44, 44)", - "uuid": "abd011c4-87a5-4b1f-82e2-e94d118f417f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(228, 234, 249)", - "uuid": "3605974e-8f93-4907-81b3-fb6ab55d03f8" - } - }, - "private": true - }, - "gray-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(225, 225, 225)", - "uuid": "8de4888d-8da5-45a0-8d5d-64a734993ae4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(50, 50, 50)", - "uuid": "0a676e7a-8a89-4607-a918-3abcfb0234a2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(214, 224, 246)", - "uuid": "eaad36fe-2827-4404-8876-060de75c2b34" - } - }, - "private": true - }, - "gray-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(218, 218, 218)", - "uuid": "aad52960-a7ec-4f69-85f9-3e1a87975120" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(57, 57, 57)", - "uuid": "cc8c4299-c40d-4e93-80b2-c052ee8aaf40" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(207, 219, 245)", - "uuid": "57d4b287-c9d9-4c56-894b-2df496d9a3b4" - } - }, - "private": true - }, - "gray-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(198, 198, 198)", - "uuid": "9a4b4fc4-25e4-4ca8-b0d1-949c5851b47e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(68, 68, 68)", - "uuid": "c34dd99f-e576-4c98-a89d-86dd47514c55" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(180, 199, 239)", - "uuid": "4634f126-2240-4de9-b244-ab2b833d70ef" - } - }, - "private": true - }, - "gray-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 143, 143)", - "uuid": "7fa86c73-f058-4922-be8d-19902515cf44" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(109, 109, 109)", - "uuid": "05808575-f14b-49d1-aefb-e3667ec0f5a4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(108, 142, 217)", - "uuid": "bc09529e-716c-4541-a75a-081ed9fdd860" - } - }, - "private": true - }, - "gray-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 113, 113)", - "uuid": "e6a41088-a188-483c-b197-63ed3c70463d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(138, 138, 138)", - "uuid": "8880b8f1-7850-49ef-a7ab-fd4e16cb37a6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(72, 110, 194)", - "uuid": "3ab25385-aece-42c4-af86-01ea97ed2455" - } - }, - "private": true - }, - "gray-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(80, 80, 80)", - "uuid": "97111e8e-5823-47f2-af64-c3244b8d3492" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(175, 175, 175)", - "uuid": "3cc563c6-386e-4b08-850d-68d4a292e559" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 77, 149)", - "uuid": "b5201efc-0a69-4a87-8b9b-e869bcf03457" - } - }, - "private": true - }, - "gray-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(41, 41, 41)", - "uuid": "2caf1f36-80b9-4659-90be-8d89672bb19f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(219, 219, 219)", - "uuid": "d39fc368-ec71-40cd-85e9-afb07862f2b7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 46, 93)", - "uuid": "22e79b14-2a60-4721-8e9b-800fa9e7a128" - } - }, - "private": true - }, - "gray-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(19, 19, 19)", - "uuid": "59093f0d-98b7-4659-bea6-3248ad20e96c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 242, 242)", - "uuid": "90d25d68-afb1-4b2a-9dba-3fe22d44976f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(10, 19, 39)", - "uuid": "93fb6cac-b190-4a5a-951f-f5dc4c0d5978" - } - }, - "private": true - }, - "gray-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "5ce8c477-ae6e-427a-ac5c-79d15c8056ab" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 0, 0)", - "uuid": "457fbeb8-56cd-4f3c-9950-f5e01f83f07c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 0, 0)", - "uuid": "e804baf9-ae2c-4574-96d9-10cd5253fe47" - } - }, - "private": true - }, - "blue-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(245, 249, 255)", - "uuid": "bb610367-a43d-4ba9-b667-84b4d8da69b2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(14, 23, 63)", - "uuid": "7d56ac58-fd58-41b3-9bbd-448ae0a7dd85" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "05ffb7a9-8bd9-46cd-bfb0-66217d52ceb1" - } - }, - "private": true - }, - "blue-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 240, 254)", - "uuid": "989a37a5-66f2-4a84-a118-8d36caee6695" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(15, 28, 82)", - "uuid": "7b7d1fd8-cc1e-4053-b320-e481b8f64c46" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "1f9bd0a5-d1ed-4d24-b8bf-273f5f22a5f4" - } - }, - "private": true - }, - "blue-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 226, 254)", - "uuid": "58dc7d3a-3a6d-4ee4-ad38-5e01a07335bd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 33, 117)", - "uuid": "d88d1685-29dc-486b-a0b9-9c90f60b8cde" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "94ed3997-5b56-41e8-9746-1d7515244c6e" - } - }, - "private": true - }, - "blue-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(172, 207, 253)", - "uuid": "9c39c15f-04ee-4cb3-acf3-04c390f14780" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 45, 154)", - "uuid": "29d339bb-ef80-40f8-a69b-afa778b60805" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "23852b5e-2d80-4c89-946c-1c8c2fe37b39" - } - }, - "private": true - }, - "blue-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(142, 185, 252)", - "uuid": "ccc5c654-280e-4f46-964e-9d589f571bc6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(26, 58, 195)", - "uuid": "a61ed901-7f77-4667-9d19-fff6bab20623" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "ca7117db-c105-446f-85e5-72f1191b9cfd" - } - }, - "private": true - }, - "blue-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 158, 253)", - "uuid": "b781aad3-054c-4e81-a368-a8165e6035fd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(37, 73, 229)", - "uuid": "7e770996-780a-4494-91ea-08c1ae6cfa80" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "560dddaa-d4ae-4d84-8750-30eb72f9e33c" - } - }, - "private": true - }, - "blue-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 137, 255)", - "uuid": "1a25f1fe-6d20-49f9-b8f9-d304efc83626" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 91, 248)", - "uuid": "5cc66280-e13a-459d-8529-c3f531aa5e4e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "0a50f1d3-8ae9-4955-9b1e-3d18121a3302" - } - }, - "private": true - }, - "blue-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(75, 117, 255)", - "uuid": "5ac73d3a-a6cc-4403-a8d5-46bc262d62e9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 105, 253)", - "uuid": "cf0bafc5-f5c6-4986-a17a-6660dc542b71" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "84bc6532-7cb0-47ea-8951-b16bc2a7aab9" - } - }, - "private": true - }, - "blue-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 99, 251)", - "uuid": "3451c170-3e78-449b-86f2-8b7dbea24c1c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(86, 129, 255)", - "uuid": "82b09b04-6a70-4a95-9eb5-a321a66a6465" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "895407bb-8fda-4857-92a9-bf0cc06f2c3f" - } - }, - "private": true - }, - "blue-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 77, 234)", - "uuid": "da15fc4a-a3ce-4cbe-a2d1-bf5a2e77e5c4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(105, 149, 254)", - "uuid": "147ed079-b4f0-4cd7-89cd-7ec93750d688" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "a50fef9e-d01f-490c-9baa-8c9672f1ac96" - } - }, - "private": true - }, - "blue-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 62, 207)", - "uuid": "7044000c-09c4-4c12-8b37-94f8601217e2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(124, 169, 252)", - "uuid": "2a5d2e32-930d-4c50-b1fd-6781a1dc1db5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "85683533-e660-4037-ad0a-3d5e7714a757" - } - }, - "private": true - }, - "blue-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(21, 50, 173)", - "uuid": "aae7bf70-35c6-49f9-a6da-ba40ee217c3d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 192, 252)", - "uuid": "ce7da4ba-77ed-4bdd-a154-90f389af6c2a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "ccde5f80-26bb-4de8-9982-0f7fd3a97e7d" - } - }, - "private": true - }, - "blue-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(16, 40, 140)", - "uuid": "c6fce6c2-ca99-4a3d-b2af-d96a35ec70dc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 213, 253)", - "uuid": "2bc63c0d-691c-4cc4-95b6-b4e530a44978" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "4dbbc998-deeb-4268-9a6a-c49a57ff0bcc" - } - }, - "private": true - }, - "blue-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 31, 105)", - "uuid": "af563d02-b975-4ba5-82d3-02bcf30f762c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(213, 231, 254)", - "uuid": "eb86d777-ec23-47e4-adc6-1203709dc00d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "0284c8ef-fd73-4c33-8f31-bc9a83a5a84f" - } - }, - "private": true - }, - "blue-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(238, 245, 255)", - "uuid": "616c28b4-d9bf-4ff3-9075-6acaad6c112c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(14, 24, 67)", - "uuid": "a24a53d4-d3c3-4d84-b6eb-048326659524" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "07862296-803e-42fc-8ba1-ff8c25e76f66" - } - }, - "private": true - }, - "blue-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "7e8a7cd3-c803-41a9-9178-b43f9eb2e735" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 11, 30)", - "uuid": "29610c54-a311-470d-ad77-c28c000730e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "9d380e6c-f6e9-433d-a8d8-f2432181736c" - } - }, - "private": true - }, - "red-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 246, 245)", - "uuid": "c9e0870a-8cf0-438e-9395-8141c316ad57" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(54, 10, 3)", - "uuid": "04f6044b-d0fa-4705-858c-2dc5721ec30f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "b9752d64-5683-4ddc-ae30-164c475a5d90" - } - }, - "private": true - }, - "red-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 235, 232)", - "uuid": "a1f7b6a3-4195-44dc-a772-9a04d3cf859c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(68, 13, 5)", - "uuid": "b18ca77b-898e-4e09-88e2-8901de3e9172" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "1d78cfc4-2c54-450e-9c5a-e3d3a40bcf32" - } - }, - "private": true - }, - "red-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 214, 209)", - "uuid": "3a393af6-c7f2-45bb-a4bc-9b55518c71ac" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(87, 17, 7)", - "uuid": "fcfcf026-be31-4a05-b833-6757cacb8b05" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "c020ab70-b666-478b-aaf2-8e06c033f307" - } - }, - "private": true - }, - "red-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 188, 180)", - "uuid": "49e7cf3a-1f2a-4487-a0a9-3869a30593f1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(115, 24, 11)", - "uuid": "8f9fa135-5aca-4e42-b247-fdfbf74bc07b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "4ca331f0-9278-4ad7-9328-766e8a5f83e6" - } - }, - "private": true - }, - "red-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 157, 145)", - "uuid": "70b11bf5-60c8-48a6-a1d5-2a74bc22e283" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(147, 31, 17)", - "uuid": "ec50a21c-88aa-41a8-b607-c8b1c407ac4f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "92784233-e6b0-4de0-8069-f3c037472dec" - } - }, - "private": true - }, - "red-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 118, 101)", - "uuid": "00d13447-f1f9-4cda-89b4-6a839260e91a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(177, 38, 23)", - "uuid": "ff0fa040-17d6-4570-84b5-7a88c5bb9f45" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "3fe966a7-eac1-4e06-9652-271182ff332d" - } - }, - "private": true - }, - "red-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 81, 61)", - "uuid": "a84b6ffe-5235-4517-9beb-320ed79cf6b0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(205, 46, 29)", - "uuid": "cb2486de-b2be-45e5-b459-6e371b29d357" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "fd598b48-a775-4c72-92e5-55f357c33537" - } - }, - "private": true - }, - "red-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(240, 56, 35)", - "uuid": "6c3daf67-9cdc-4c02-9912-ff0b902c22ed" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(223, 52, 34)", - "uuid": "9ff36ad0-608e-46a7-ab56-00af3d307d83" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "abc67d6b-bd80-4e94-a91b-1f52216a5013" - } - }, - "private": true - }, - "red-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(215, 50, 32)", - "uuid": "d5d3bc64-629c-44b0-8ff5-81f260521f5b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 67, 46)", - "uuid": "ccb79099-59f4-4bf2-b149-0de72f556a45" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "f9fbdd87-77f6-4b99-b5f5-357604b57a48" - } - }, - "private": true - }, - "red-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 40, 24)", - "uuid": "4a585714-4331-44b1-b81f-25a8ff1cc8ea" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 103, 86)", - "uuid": "95621c5a-1768-4707-a2ce-bd15c61c89f4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "d3c2852d-4d9f-4493-af1a-cba5269baf22" - } - }, - "private": true - }, - "red-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(156, 33, 19)", - "uuid": "a02ee7fb-b9de-45f1-bee7-8ffe2145cbec" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 134, 120)", - "uuid": "53617d38-1075-4b47-87c7-4695b385a2d7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "fb1cf925-d51e-4b6a-9cd1-ee711193a03a" - } - }, - "private": true - }, - "red-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(129, 27, 14)", - "uuid": "ea79c634-9d94-4012-bae0-903479c34dc5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 167, 157)", - "uuid": "e7820c1c-ff58-431d-b521-b81ee3281db0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "2caf3838-8be9-41d9-9cb9-fa2e6a2f8373" - } - }, - "private": true - }, - "red-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(104, 21, 10)", - "uuid": "63934482-260f-4c73-a176-cad11427c537" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 196, 189)", - "uuid": "7691bca6-3749-4cb7-a950-a94fe3d2910f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "5e630b5e-ff35-4463-8db5-79519a54d64f" - } - }, - "private": true - }, - "red-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(80, 16, 6)", - "uuid": "1c208bc2-2eca-4727-a195-f80fe0e7ea11" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 222, 219)", - "uuid": "aaafa24c-cb3c-48cd-9cb7-e164be140ab5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "e70a8b5a-06ec-4771-9c16-9e74ae15c9bc" - } - }, - "private": true - }, - "red-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 242, 240)", - "uuid": "e99ac2fd-25ab-4202-a279-41808cc8dbc6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 11, 4)", - "uuid": "45ef3c1f-fb24-4a0e-98c3-69c6027eb709" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "421ec0d6-4d71-4c2d-8a39-19e3700451f0" - } - }, - "private": true - }, - "red-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "685778a4-bc17-4d74-a713-1776fc2516af" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 5, 2)", - "uuid": "3d8a70af-6e0b-449f-98e3-515498bf00ca" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "50807cbc-ade6-4f6d-8711-f569a52adaf8" - } - }, - "private": true - }, - "orange-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 246, 231)", - "uuid": "8bfd5eff-55b4-4b98-9b2e-2871e4ec6ff6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(49, 16, 0)", - "uuid": "974ab8ec-6691-4696-b38c-77e16fb3df88" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "e4fff178-2055-4ec8-83e8-636a4ea8bb8c" - } - }, - "private": true - }, - "orange-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 236, 207)", - "uuid": "64371717-ac11-4ec3-a0aa-9042cf43fa8f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 21, 0)", - "uuid": "587d4ce3-4275-4d2a-916c-2b1bf78c38ea" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "47e53be7-b33b-48e3-abdf-fe48d59f8819" - } - }, - "private": true - }, - "orange-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 218, 158)", - "uuid": "f34f9b32-ef46-4473-bfd6-10b858e53f55" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(80, 27, 0)", - "uuid": "74f40bbb-5afd-4c88-89d3-e69de9e2b604" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "c455298b-cc23-4504-b731-27be6433fbcd" - } - }, - "private": true - }, - "orange-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 193, 94)", - "uuid": "15bea688-4c32-44c0-9ee3-242bdb50954c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(106, 36, 0)", - "uuid": "b912089a-b6c9-49ef-8a4b-0a1f6fbbe963" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "2c08292c-e6cc-4dcb-9046-8a2af09d1e43" - } - }, - "private": true - }, - "orange-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 162, 19)", - "uuid": "33bd4908-1259-4e75-8e96-bd410bebcfd6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 47, 0)", - "uuid": "8a56b352-d7d4-45d4-b403-448557656dab" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "e6c70e40-f9e7-4975-af39-9458a8325c6f" - } - }, - "private": true - }, - "orange-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 125, 0)", - "uuid": "eeede364-d711-40e5-9d2a-0255b10d36f2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(162, 59, 0)", - "uuid": "27b198b5-bf02-476a-a440-84c9a5bd2ce3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "8a201cca-353e-4538-a6b5-efbc2fc86186" - } - }, - "private": true - }, - "orange-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(232, 106, 0)", - "uuid": "a4527b6f-e2d4-4a0f-b013-007dc5a2d3ac" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(185, 73, 0)", - "uuid": "f9e84513-57d6-4786-b8db-c86055cebfc6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "58992b4e-69ab-4919-922a-dd9277cb770e" - } - }, - "private": true - }, - "orange-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(212, 91, 0)", - "uuid": "437e4f5b-e68c-4491-b26c-a9fa1503561b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(199, 82, 0)", - "uuid": "5a88ed4e-94f9-4533-ab13-3995b5a60a5a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "8f42ee1b-59a5-4759-bef3-614835b348b2" - } - }, - "private": true - }, - "orange-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(194, 78, 0)", - "uuid": "e9df9a43-f509-44f3-89f6-c277f7445651" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(224, 100, 0)", - "uuid": "0fbe4f46-02a8-444d-ace5-c245c6f15112" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "69637678-cb68-46f1-9353-1c7d0f86e51e" - } - }, - "private": true - }, - "orange-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(167, 62, 0)", - "uuid": "7dc902b9-6512-429e-9cb4-c2f97ca08e99" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(243, 117, 0)", - "uuid": "92e06ff6-8347-4320-9a98-3054ba458d0e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "bc744bfa-dd64-4660-b67c-105f07e66644" - } - }, - "private": true - }, - "orange-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(144, 51, 0)", - "uuid": "b6c1e499-f043-4b5a-81cf-4224a0f83fce" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 137, 0)", - "uuid": "a571e2cd-2aff-4344-b608-45a48162cb61" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "7aea0d8d-0fb0-47c1-ae6a-97510159359b" - } - }, - "private": true - }, - "orange-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(118, 41, 0)", - "uuid": "14da1231-c89f-45a1-845e-f3bd902f704b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 173, 45)", - "uuid": "8e3fe8e0-2b14-4331-869f-de2680ea60ac" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "269da724-5ec7-4ceb-991d-1e83495cfaed" - } - }, - "private": true - }, - "orange-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(95, 32, 0)", - "uuid": "f650301b-6586-4193-9937-9f12d6c3f99f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 201, 116)", - "uuid": "06afaefe-7e0a-42e2-99b5-e62674e1185d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "c1389efc-8e68-4e2d-94b1-17e193264be7" - } - }, - "private": true - }, - "orange-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(73, 24, 0)", - "uuid": "99a43835-df3a-4447-b91d-9d943659b07f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 225, 178)", - "uuid": "9f2f551f-b606-48ce-9493-888587d3ccb6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "0d6ed0c9-b185-4656-9985-04904a39f5e6" - } - }, - "private": true - }, - "orange-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 243, 225)", - "uuid": "48b0167c-d675-4fc5-9130-1b36a94fd163" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 18, 0)", - "uuid": "8aa75bbd-fd78-463d-a321-8672e5a537d6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "ea973b33-e10f-44b6-a621-92c752edb8af" - } - }, - "private": true - }, - "orange-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "b2f21ea2-e546-4b1a-a72d-e840172857b4" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 8, 0)", - "uuid": "e99566f3-7b29-4c75-a4bd-ce17c0d84c3f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "c93608b1-700d-496c-90c4-298870776956" - } - }, - "private": true - }, - "yellow-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 248, 204)", - "uuid": "910d2e36-245f-4df6-a99c-92a5bb4d4cce" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(37, 23, 0)", - "uuid": "7bef094a-1523-4392-a0ca-59c48409f17a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "be46f4fb-64d6-4e04-abd1-1f87c634d272" - } - }, - "private": true - }, - "yellow-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 241, 151)", - "uuid": "0ebcaa53-4d19-4eed-99d1-4477f4358a58" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(47, 29, 0)", - "uuid": "f4fdc925-63b3-4670-9f2b-a057c27c834a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "2e4d1e66-b660-4e99-8f01-ff9964aa19d8" - } - }, - "private": true - }, - "yellow-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 222, 44)", - "uuid": "97ea0771-52c6-48f0-8725-dc514b0738d4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 39, 0)", - "uuid": "238147c6-0302-4d43-b3a3-42df832c7857" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "6547eb52-a3a5-4004-8125-df92fed7a062" - } - }, - "private": true - }, - "yellow-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(245, 199, 0)", - "uuid": "8ffb47cc-cc5c-4179-807e-4a1cb45c6496" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(83, 52, 0)", - "uuid": "62ab6892-66ea-4b55-8c1a-fcc191d29717" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "2c6515da-f97b-4961-93cf-5b6c668fc0fc" - } - }, - "private": true - }, - "yellow-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(230, 175, 0)", - "uuid": "68a43979-6dee-45b9-963d-3e827b2554f4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 67, 0)", - "uuid": "efa1fdd8-4478-411a-892c-0ecf23939489" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "8e450204-2aa5-4cb2-959b-8fc28f7f55bf" - } - }, - "private": true - }, - "yellow-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(210, 149, 0)", - "uuid": "8c86293e-334b-49ed-a7aa-eb4fe987002f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(130, 82, 0)", - "uuid": "8ae3c5ec-aabe-47a0-b822-ba0907e67ed4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "dfdf38c7-1e23-44a8-8a62-a5f6c3a341bf" - } - }, - "private": true - }, - "yellow-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(193, 131, 0)", - "uuid": "881b7389-0c65-46e6-a391-d1d5800c535c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(151, 97, 0)", - "uuid": "ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "69c7c213-9a1c-4cd2-ac90-2142aa955e00" - } - }, - "private": true - }, - "yellow-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(175, 116, 0)", - "uuid": "b9ee2410-9573-4acd-bff8-ce11bf0f72a0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 106, 0)", - "uuid": "67e8d9aa-d843-4536-9c97-bd51e62da8ee" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "9ebe0ca0-5580-4083-899a-ba4a4638254d" - } - }, - "private": true - }, - "yellow-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(158, 102, 0)", - "uuid": "1b030fd3-f5bc-4e84-8efd-33db77bf64b8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 124, 0)", - "uuid": "a12f6cac-7fdc-4fd4-8120-ad957823ff6b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "a9e4cb0b-80af-417f-b8d5-b1a7aefa15e5" - } - }, - "private": true - }, - "yellow-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(134, 85, 0)", - "uuid": "a9d84db4-e9db-45a8-9010-4e64822f0408" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 141, 0)", - "uuid": "4cf4a500-37a2-4dd8-a243-14f6c012b53c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "7e7a2c49-bf61-4402-b85b-bf4df9ca8ff0" - } - }, - "private": true - }, - "yellow-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 72, 0)", - "uuid": "b6001568-2f26-4722-85e2-e6a3a8ad0ec8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(218, 159, 0)", - "uuid": "4eee9daf-e19d-4e0b-b12d-4fdcc4852956" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "b54bc7bb-2347-4265-ba88-8af7fa420bdf" - } - }, - "private": true - }, - "yellow-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 59, 0)", - "uuid": "7be15b50-51c6-4d0c-9ec8-89b4ac170a5a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 183, 0)", - "uuid": "69059dfa-e2e1-4f8d-b06b-058a8724e071" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "2e92e2de-12fa-45d3-be1d-5d875311bf1e" - } - }, - "private": true - }, - "yellow-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(75, 47, 0)", - "uuid": "b5808c39-38db-4378-96db-1f6d44ce5172" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(249, 206, 0)", - "uuid": "b2a1039c-cbfe-44bf-a0fe-822c5f576f52" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "21c27c6d-f054-48b4-abb8-5b0907e238e2" - } - }, - "private": true - }, - "yellow-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(56, 35, 0)", - "uuid": "65ad1c10-fb0d-4dd2-a9f5-66ab34dcc86b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 230, 86)", - "uuid": "dfd355e7-82fd-4fdb-96bd-b584d7268ee9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "e0d95ec7-193d-40d1-9bd9-e68ff27c0275" - } - }, - "private": true - }, - "yellow-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 246, 195)", - "uuid": "166ee2cc-b727-4f3c-9c08-5c586a0f6c11" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(40, 25, 0)", - "uuid": "d8eebb60-7b0c-496e-ae04-1f1fc61f3013" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "8be0ad1a-0cdf-409d-953f-0a203282e1d9" - } - }, - "private": true - }, - "yellow-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "3df0b31f-656a-4400-99c4-d559da586714" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 11, 0)", - "uuid": "ada313e4-768c-4fd0-b93c-b6f6d2a50f68" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "15f47c52-fa9c-4982-ad9c-684024a9a667" - } - }, - "private": true - }, - "chartreuse-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 251, 222)", - "uuid": "b7cca467-abe9-4632-b01a-dda350c93480" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(23, 28, 0)", - "uuid": "bdc6a473-3109-44c6-9e2f-198d3224d75f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "cc59e104-9997-4ed2-a29e-0af0b1a04b67" - } - }, - "private": true - }, - "chartreuse-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(234, 246, 173)", - "uuid": "c1146153-61bf-4a31-8254-54a1d25a93c5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(30, 36, 0)", - "uuid": "b18f4550-5bbe-496c-b4a5-13df8fd0c7d7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "838a5de8-2ec7-4814-8ba9-eaa4b0ad8e55" - } - }, - "private": true - }, - "chartreuse-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(208, 236, 70)", - "uuid": "f8812b11-742b-44d6-a21a-7fd3db39fe71" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 47, 0)", - "uuid": "b98dec90-df71-4593-946d-91df7918caac" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "bbb32db5-4835-4520-8bb1-ef2c8916c604" - } - }, - "private": true - }, - "chartreuse-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(182, 219, 0)", - "uuid": "32e471ce-5b0d-40f1-a77a-67feff02775e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(53, 63, 0)", - "uuid": "6a974b7d-ccd2-4778-baae-8caf419a529c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "eb857d3b-1956-4870-98cb-eaaffffaed85" - } - }, - "private": true - }, - "chartreuse-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(163, 196, 0)", - "uuid": "fe3be762-b55e-43cb-9163-68ee7dafc53e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(68, 82, 0)", - "uuid": "46d8fd3b-0e51-4cdd-a33c-de184b82dcc5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "7bffe928-4940-41b1-a9d4-3cbee27cb472" - } - }, - "private": true - }, - "chartreuse-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 172, 0)", - "uuid": "d61e865b-6538-42a8-aba8-0842359b80c2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(83, 100, 0)", - "uuid": "965174d2-e743-41df-a8e2-570b2ae2f447" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "788108ff-5238-4a75-8936-092df93a3fd0" - } - }, - "private": true - }, - "chartreuse-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 153, 0)", - "uuid": "3d0fd171-80f3-4f08-9ac0-eb46d0e755f9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(97, 116, 0)", - "uuid": "a615bb51-0249-4201-b1c9-1c6269b82ec2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "0386fb0b-3653-4015-a3a1-cbf047435f0f" - } - }, - "private": true - }, - "chartreuse-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 137, 0)", - "uuid": "9a0701e4-81a0-420b-b751-c6a46670fbf3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(106, 127, 0)", - "uuid": "343f1685-2314-4a64-bc7a-5b7b3fd9fdcf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "c8046b7e-506c-47b7-8105-4d7e805f6b92" - } - }, - "private": true - }, - "chartreuse-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(102, 122, 0)", - "uuid": "7d22a144-0f7c-435e-ad05-b2d7672dff08" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 147, 0)", - "uuid": "1637c50e-88e4-4273-8a75-6e8a233a690c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "5f1f16c2-d562-4dd8-9b96-9d19b9a88093" - } - }, - "private": true - }, - "chartreuse-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(86, 103, 0)", - "uuid": "00100510-9965-4086-ba82-0cb62ffebba1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(136, 164, 0)", - "uuid": "7dbedc59-e21c-4953-a7af-5e91d170604a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "9a6983b0-a2ba-4633-a618-f3b4ac8f05c6" - } - }, - "private": true - }, - "chartreuse-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(73, 87, 0)", - "uuid": "e964b654-261d-44a5-ab0a-78c8137a7783" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(151, 181, 0)", - "uuid": "90417b40-97dd-47b3-9dbc-4ac45f8e4a5f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "8e44257e-ec8e-4459-863e-0bbbab65f6e0" - } - }, - "private": true - }, - "chartreuse-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(60, 71, 0)", - "uuid": "6bf184f6-f0e1-41af-94a4-47aa1a37b0aa" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 203, 0)", - "uuid": "e4b04d5d-e99d-41c5-8b24-540d653ef3ff" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "9af36936-6d05-4ba4-8beb-9b65bafb9277" - } - }, - "private": true - }, - "chartreuse-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(47, 57, 0)", - "uuid": "e320e57d-2794-4c1e-97ef-3a8b04be1328" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(187, 225, 0)", - "uuid": "615841b9-08b2-4e21-981a-b8f5247e9e89" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "acb36528-7ad1-497c-baf7-c53171ce4112" - } - }, - "private": true - }, - "chartreuse-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 43, 0)", - "uuid": "56b4f40c-d9f2-4360-99eb-7097aafedf94" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(219, 240, 117)", - "uuid": "a75188c9-02e3-4337-8056-9a6f8f39001f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "485b7081-a921-42ee-b781-8a99bfeb84fa" - } - }, - "private": true - }, - "chartreuse-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 249, 206)", - "uuid": "d7f569e2-f91c-439e-8e5a-8c8c825367ff" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 30, 0)", - "uuid": "63f13dcb-6d61-4ff0-9999-33e16d30e5d6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "75e5c281-4c83-4ffe-a1de-aedfa65be894" - } - }, - "private": true - }, - "chartreuse-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "753f7aa2-6c7d-4b43-baf9-c72adbd9279d" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 14, 0)", - "uuid": "01b68e1d-06d7-44a3-91e6-08e17353008c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "a8d9965e-14d9-4015-9a6f-421400c6d011" - } - }, - "private": true - }, - "celery-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 255, 220)", - "uuid": "b4a22d71-d90a-4f6e-8f6d-e4967849376f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 31, 0)", - "uuid": "43feed9a-9a2a-44e0-9506-9bc5eb8eab1d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "a52ac86a-8627-483b-b747-6e8aa5fa7249" - } - }, - "private": true - }, - "celery-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(197, 255, 156)", - "uuid": "30941af9-354a-4d61-9462-aca4bcd50093" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(15, 38, 0)", - "uuid": "741a30fb-62a9-4c76-a78e-cc2590af9c7d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "a83229ca-de1f-4fdb-a72b-b8a3498a31bb" - } - }, - "private": true - }, - "celery-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(157, 247, 92)", - "uuid": "3562f589-ba34-465e-9549-2600e2527ab8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(21, 51, 1)", - "uuid": "5eda4487-8f82-48ed-8b22-aa38601bbf88" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "5b271002-0fe2-4407-be21-7c09646a2303" - } - }, - "private": true - }, - "celery-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(129, 228, 58)", - "uuid": "d86c4477-a2f4-449a-8883-daaf33608fde" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(31, 67, 4)", - "uuid": "646d80c1-7073-4e13-bbfe-4bd0c2226079" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "813b3e86-659b-48ee-b88d-122c13fa96e8" - } - }, - "private": true - }, - "celery-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(110, 206, 42)", - "uuid": "9c5fc2d5-30cc-4389-b219-2db69f8a86f9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(41, 86, 8)", - "uuid": "7d4c282b-78ce-4b2c-ab39-26bf02366e4d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "13e77335-22c0-470a-a5e5-da6363f622e0" - } - }, - "private": true - }, - "celery-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 180, 31)", - "uuid": "c2cfbc22-b556-4cb5-b5ee-670254d5ecbc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(50, 105, 11)", - "uuid": "260d8921-3810-4a5d-a20f-cd00170cf951" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "a52a4fbf-dc30-4c09-b1d8-b25bcead712c" - } - }, - "private": true - }, - "celery-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 161, 25)", - "uuid": "59b03f98-f898-4888-ad71-07a434e2fc7e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(60, 122, 15)", - "uuid": "7e7e6abb-a2e9-4308-ac8e-e6866ec17c64" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "3e9a8018-a0bf-4562-867d-555c75c08d9f" - } - }, - "private": true - }, - "celery-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(72, 144, 20)", - "uuid": "41747345-10ab-476a-9d3d-e657f9383e8e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(66, 134, 18)", - "uuid": "3b130e0d-eb9b-49e6-84db-eda6ee95eee5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "7a5096e0-6845-4ae5-bab4-d958c7e3dadb" - } - }, - "private": true - }, - "celery-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 129, 17)", - "uuid": "deec9c21-caeb-4ec4-bca4-a7661a2c5f91" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(78, 154, 23)", - "uuid": "706f3a95-ab27-497f-aab7-f4ed806eef30" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "10c7c9b0-0d15-43ae-bf6f-84384783a9aa" - } - }, - "private": true - }, - "celery-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 109, 12)", - "uuid": "3d509755-d653-4a3f-a5a3-fcbed0c2e21c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(88, 172, 28)", - "uuid": "021a55b8-26ae-4767-82fb-06b20c58762b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "085d2bcb-85b1-4b55-842b-9559c457a1a0" - } - }, - "private": true - }, - "celery-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 92, 9)", - "uuid": "ea7327bb-48a8-41dd-b139-c7bda3dedaee" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(100, 190, 35)", - "uuid": "e091babe-6e02-4393-a67e-63222ab860b4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "5c9ac732-7e1a-448c-b338-18d3b265d5d1" - } - }, - "private": true - }, - "celery-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 75, 6)", - "uuid": "fc4dedc3-0009-4a5a-8e93-f52ba4155e0a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(116, 213, 46)", - "uuid": "9913e84a-4070-476f-a570-a16781a924cf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "865fc403-cab2-4e38-a181-e5e10523e04d" - } - }, - "private": true - }, - "celery-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(27, 60, 3)", - "uuid": "7a3d9646-272f-4ca1-a4e6-0708eb2cd378" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(136, 234, 65)", - "uuid": "d2d8dc91-da75-4c56-a0d8-e6e9802434ad" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "cc88021a-ce1a-4f69-9208-d1b897a1d71b" - } - }, - "private": true - }, - "celery-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(19, 46, 0)", - "uuid": "02e66104-cbf7-4e27-89cf-f18b1ef04f2d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(170, 251, 112)", - "uuid": "c5c3c68c-8293-4ebb-a8d1-9f4af902906e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "0fd51556-72b0-48ea-86f2-435bf64de316" - } - }, - "private": true - }, - "celery-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(222, 255, 198)", - "uuid": "ad9c1278-7296-4aef-9e19-6cabc2997bfa" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 33, 0)", - "uuid": "ca5c139e-1784-4139-89a3-281a83dbeb99" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "fe522078-7e21-447e-bd4f-e5f2ea6845d9" - } - }, - "private": true - }, - "celery-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "f1a7d5b6-4414-493a-a5d8-77d81a0121a2" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(4, 15, 0)", - "uuid": "56e0d793-ce33-4da3-8e67-d7df10b2cd89" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "99fb92f6-7186-4432-99ec-d5fa5b35c5be" - } - }, - "private": true - }, - "green-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 252, 241)", - "uuid": "4428dba5-df85-4125-ba54-1c022b986847" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 30, 23)", - "uuid": "e5a14d4a-47c5-4a53-84c5-589a0749d906" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "f0702380-ed81-4f16-844c-b4c3b797161c" - } - }, - "private": true - }, - "green-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(215, 247, 225)", - "uuid": "9d32cd19-8375-4da3-9324-0e8334c2e714" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 38, 29)", - "uuid": "e8f294f5-cb17-4fdc-b370-ca2e3f95d342" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "b5d964d5-e68d-44c6-880f-2e23d2bae7ec" - } - }, - "private": true - }, - "green-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 238, 197)", - "uuid": "88bac762-84e1-4652-8152-384f3b1faf59" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 51, 38)", - "uuid": "cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "1aaecce9-f58c-44a5-9bb9-f62172ebcd21" - } - }, - "private": true - }, - "green-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 227, 162)", - "uuid": "5cb02868-9f86-4e20-85e0-e4f5df24853c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 68, 48)", - "uuid": "c5e88879-9773-446c-883e-96531bcb8fad" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "8143aced-4012-4dc3-a132-2b5701e09a52" - } - }, - "private": true - }, - "green-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(43, 209, 125)", - "uuid": "8b315766-4fa0-4acc-a679-89da4162a15c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(2, 87, 58)", - "uuid": "27649ccc-69a8-48d6-9d52-6d6e2e28ae17" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "9418d6a8-69a1-49a4-ac3d-d81c81a633be" - } - }, - "private": true - }, - "green-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 184, 103)", - "uuid": "4c6c7b90-29ac-4186-a991-c298f19aa83d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 106, 67)", - "uuid": "a0513e49-8483-40f8-8b8f-41fdc222f13d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "57d2a064-3028-4225-82c4-e200e4abc6a3" - } - }, - "private": true - }, - "green-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 164, 93)", - "uuid": "19a07ad0-9e01-4adc-861d-f7634de1f1ab" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(4, 124, 75)", - "uuid": "9c24175e-34a5-46c8-b646-f70c08292776" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "fa823d25-6075-455b-a6f4-18de77a01f06" - } - }, - "private": true - }, - "green-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 147, 85)", - "uuid": "1be225f8-3612-422c-923f-b35f1ec4fc00" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(6, 136, 80)", - "uuid": "412da16e-4db2-47d8-84d4-583ae35534f9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "12755af6-ac1f-441a-80fb-07c3d61dc6c9" - } - }, - "private": true - }, - "green-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(5, 131, 78)", - "uuid": "cd39a520-2020-41d0-96d1-3b0fdb453fef" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(9, 157, 89)", - "uuid": "5afee2ee-a5d5-4dcf-a917-11dfdd0c3691" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "81174c05-0b05-4030-a8b7-e2fc13533954" - } - }, - "private": true - }, - "green-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 110, 69)", - "uuid": "b0846caa-d394-4614-aaa2-af179de285f4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(14, 175, 98)", - "uuid": "3d6732a1-a1f9-4e18-927b-93cebaae3895" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "a1c41ddd-5c54-4dce-bea3-51768998639c" - } - }, - "private": true - }, - "green-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(2, 93, 60)", - "uuid": "8d0742b8-c334-41e0-a8e1-50fc8ea3b3ef" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(24, 193, 110)", - "uuid": "a2f8f6c6-07b4-43a4-8f59-995ea2bf4e82" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "7f426d3d-5ff9-4ee2-b0e1-07282fe389df" - } - }, - "private": true - }, - "green-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(1, 76, 52)", - "uuid": "4ea6f2d0-bc92-44fa-90e9-9618806a19c2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(57, 215, 134)", - "uuid": "07fa1b72-bf84-4fd5-9565-28373fae6a1f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "515298b6-f629-4c08-9e0f-18a5ba8fe20f" - } - }, - "private": true - }, - "green-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 61, 44)", - "uuid": "569d58d2-c7e4-4a0c-b92a-841e45fcbc09" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(126, 231, 172)", - "uuid": "c5ec27ed-3a16-44fe-bb8d-a21edd2f4d73" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "ce02582f-b327-4367-9f66-92dcc67fd072" - } - }, - "private": true - }, - "green-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 46, 34)", - "uuid": "c0711ebf-a91a-4041-8e1a-259ed6c3c54c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(189, 241, 208)", - "uuid": "df5458e5-891b-4a88-a96c-748a812978a7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "51b8502d-e045-4b40-93e1-e2b49f6bf90c" - } - }, - "private": true - }, - "green-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 250, 236)", - "uuid": "8efbb45d-4d6d-423e-8a3d-cb7117f9fbf8" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 33, 25)", - "uuid": "f853b643-e7bf-4af6-81f4-bc6de9007f3c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "490cf084-b56e-4464-8e38-1bb15458213e" - } - }, - "private": true - }, - "green-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "ce6f19ce-d3fe-4bad-a4fc-7863ea9fd186" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 15, 12)", - "uuid": "2b4c3a1a-8ea4-4149-862d-801b559e4f65" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "96e3e83b-1878-460e-9bc2-aa25a36ff887" - } - }, - "private": true - }, - "seafoam-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 251, 246)", - "uuid": "2330ab05-6153-47a1-ab56-18f3cb1c579f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 30, 27)", - "uuid": "080b56a3-6f95-422a-9f4b-d850966c4984" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "3c862893-b1e9-45df-99da-33906686d3c1" - } - }, - "private": true - }, - "seafoam-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(211, 246, 234)", - "uuid": "870298fd-4e1f-4649-bfbc-5ad5b768c2e3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 39, 35)", - "uuid": "2876bdd7-af97-4cd6-89cc-bdb9c2110946" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "4115d94a-b52e-4cc8-8067-cd9184030ffe" - } - }, - "private": true - }, - "seafoam-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 237, 216)", - "uuid": "1fe5483a-95bd-4597-802a-9e84c1486dbe" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 50, 44)", - "uuid": "d90b7496-0f54-41ce-96eb-c973457661ae" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "56c4f393-086d-41d9-87d0-babaea86a2a4" - } - }, - "private": true - }, - "seafoam-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 225, 194)", - "uuid": "e2b4d354-9a1d-4153-b988-4fc24c117252" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 67, 59)", - "uuid": "ec603c2c-b2b2-4769-a889-ba7c91a458eb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "21467045-093e-461e-86ac-dc65b657bf50" - } - }, - "private": true - }, - "seafoam-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(16, 207, 169)", - "uuid": "a1da1af7-df37-455d-8d27-2920b36f209f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(2, 86, 75)", - "uuid": "c24b866c-5ac0-49de-857b-48c655fa9990" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "50117040-ca43-4b90-832d-7e4c2d83c31c" - } - }, - "private": true - }, - "seafoam-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(13, 181, 149)", - "uuid": "cfd8a8b3-d567-4eb4-9b6f-5db352607dab" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(4, 105, 89)", - "uuid": "73b58f7e-008b-44ae-8969-19d981d444d6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "0a450ad0-dd5e-414c-9b76-dac4ca20a1b8" - } - }, - "private": true - }, - "seafoam-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 162, 134)", - "uuid": "a036b309-95ec-45e6-b035-f30f0f922422" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(6, 122, 103)", - "uuid": "0b8528e6-ceea-47a5-9727-24e97d7bc138" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "c26d7e9d-fef9-4aa9-991b-bbac307e3c7a" - } - }, - "private": true - }, - "seafoam-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(9, 144, 120)", - "uuid": "ac4f12a3-a3f0-4053-87f4-5fc42b08cf23" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 134, 112)", - "uuid": "df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "7a88f0bf-59cb-4af3-9542-f7648fecd50e" - } - }, - "private": true - }, - "seafoam-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 129, 109)", - "uuid": "74cb44f8-8ab0-4a36-9920-0735756e0ddc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(10, 154, 128)", - "uuid": "dca23a18-2b19-48bf-9894-2f0948f6c05e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "8e444b02-f977-4948-b862-63275642ad58" - } - }, - "private": true - }, - "seafoam-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(5, 108, 92)", - "uuid": "84e4e598-4fd7-445a-a6cf-2884c0aae4d0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 173, 142)", - "uuid": "c416b5c5-0506-419f-88ca-f722f12a9d86" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "72873817-3cf5-4a14-aa93-1f86b4c6f7f2" - } - }, - "private": true - }, - "seafoam-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 92, 80)", - "uuid": "d1bb038a-f83b-4e97-b95f-b215c7bc2916" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(14, 190, 156)", - "uuid": "4a853bfc-f1b0-4e39-8cd8-da0350c99cd5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "fb3f4cf4-e032-4cc1-94b1-d122f0d695ac" - } - }, - "private": true - }, - "seafoam-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(1, 75, 67)", - "uuid": "0eab9416-b6f5-4d26-bde6-9b8a840f7681" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 214, 176)", - "uuid": "8e4c65b7-d819-4ffd-9398-71e9d294ba63" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "8a7fb1d7-90ca-41d1-a04c-84bd1d70d9ec" - } - }, - "private": true - }, - "seafoam-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 60, 54)", - "uuid": "a88e0c6e-dfd5-4a43-8d43-97fa10101165" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 229, 203)", - "uuid": "ef35ace8-870d-42e0-8ce6-2df61415431f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "3e88a833-9ef2-4f37-86a1-041e76850e1e" - } - }, - "private": true - }, - "seafoam-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 46, 40)", - "uuid": "52c9177c-bc81-41b1-ba6d-9b075fbe8541" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 241, 222)", - "uuid": "9499384b-336c-4a41-af05-645a92ae40d4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "badc0d78-4232-44f0-8911-e9e2f0eab94f" - } - }, - "private": true - }, - "seafoam-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 249, 243)", - "uuid": "6e538a2b-05f7-41f5-af4b-89bc3039c25a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 33, 29)", - "uuid": "4cbacecc-89c9-482d-b3f5-7d8f85f0a3f1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "fd0d5cda-892b-4628-a125-353dcd123987" - } - }, - "private": true - }, - "seafoam-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "29aae26e-f4a4-4e5a-acd2-02df01f6cc90" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 15, 14)", - "uuid": "ebbfe9f4-5c24-46b2-983a-98570ed5ec78" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "6685e580-982d-4f86-800a-19797f1675af" - } - }, - "private": true - }, - "cyan-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(238, 250, 254)", - "uuid": "72bef490-0c3a-4627-9341-fc6627cf3f74" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 29, 39)", - "uuid": "24a8bb5a-93c3-4dd1-9ea2-d48c11479fe7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "28fe7c7b-b43c-4650-9155-5b0f5ec27a09" - } - }, - "private": true - }, - "cyan-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(217, 244, 253)", - "uuid": "c2aaf729-7f39-499a-8b67-e23801073b05" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 36, 49)", - "uuid": "3445cf4b-2460-4692-acf2-71844d687da4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "b6b314ea-f9ba-4f49-a115-f4177ecb7bbc" - } - }, - "private": true - }, - "cyan-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 231, 252)", - "uuid": "b54275ad-3ea6-4e69-aea2-97f488308fcc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 48, 65)", - "uuid": "e4bcf4fc-aaec-49a5-a2bb-6bb55e7fff47" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "f7d51b4b-6c95-4271-a51e-4ad5a1660591" - } - }, - "private": true - }, - "cyan-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(138, 213, 255)", - "uuid": "a33de292-77a9-40b7-961e-41ebfe331ad0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 64, 88)", - "uuid": "94a5bd53-d69a-4063-b630-1976230d4f2d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "6c2a20c7-e453-4401-a0b4-8e0d1d7edd7e" - } - }, - "private": true - }, - "cyan-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 192, 255)", - "uuid": "f3e8ff9f-e60b-4bce-9c39-280aef6fcb08" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 82, 113)", - "uuid": "909baeef-fd2f-4550-89ea-fb7ac9ea2db5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "39f96e8f-c9c8-4158-8da9-6825cd084fc3" - } - }, - "private": true - }, - "cyan-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(48, 167, 254)", - "uuid": "d65f3e1d-ad9d-4fa7-ac06-37235124e999" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 99, 140)", - "uuid": "d753ef33-bfc0-424b-a2ac-ea87ecbee590" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "6f67dfce-62d0-4147-aac6-33873a325cd3" - } - }, - "private": true - }, - "cyan-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 149, 231)", - "uuid": "08b4548a-618d-4ab5-ae46-2a60c7936f57" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 115, 168)", - "uuid": "3cb348d4-14a9-43da-84c4-068cf46c8c6f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "08173787-f50d-48a7-badc-141a9e7b7981" - } - }, - "private": true - }, - "cyan-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 134, 205)", - "uuid": "6dbdd00d-3b03-4eab-a77c-3a1f16d5e6ef" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(13, 125, 186)", - "uuid": "ee8673ca-c39c-437e-b3a5-416f4e8664d3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "a006424a-ad2b-4091-a38d-b4af80ddc03e" - } - }, - "private": true - }, - "cyan-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 120, 179)", - "uuid": "71769f93-467d-497a-b214-45c8753f34f5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(24, 142, 220)", - "uuid": "9c183829-4858-4908-b1ac-d89f40f2e903" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "03de1fef-9ae1-457d-917b-6f22fb545d00" - } - }, - "private": true - }, - "cyan-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(4, 102, 145)", - "uuid": "25c689a1-7876-44fa-8849-3a8db03a866c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(38, 159, 244)", - "uuid": "04f3d463-9118-43d5-973d-8bf94417912d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "8dd5e110-aa2f-47b2-aa21-30bc4241db86" - } - }, - "private": true - }, - "cyan-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 87, 121)", - "uuid": "57ca59a9-1677-4813-9c0d-28267233ba35" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(63, 177, 255)", - "uuid": "62a7ebff-a49b-4e7a-981f-692a506b4146" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "4698ba84-dab0-4b6b-a2b1-e289261aa7b4" - } - }, - "private": true - }, - "cyan-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 71, 98)", - "uuid": "d6ba8ac5-09d4-44e2-8ade-216c626eb154" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 199, 255)", - "uuid": "36a2af99-eef4-476b-a3b8-58eade0931b7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "8e12e7fe-546a-4e8c-92eb-56673446b1bb" - } - }, - "private": true - }, - "cyan-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 57, 78)", - "uuid": "1b179218-9e53-457d-977b-902509ef28aa" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 219, 255)", - "uuid": "5f3df12b-1330-4482-ad34-c623bd36253c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "958d5c96-6b57-47c2-a9a5-f589c054aa13" - } - }, - "private": true - }, - "cyan-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 43, 59)", - "uuid": "3eac8807-136f-4687-8403-203fb49fbd74" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(195, 236, 252)", - "uuid": "fe63b8a3-ebb9-45fe-99c2-e246b53e06a6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "8a2d9c8d-a95a-48ac-b6eb-0ca1d5e69bd7" - } - }, - "private": true - }, - "cyan-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(230, 248, 253)", - "uuid": "ce687c28-38ce-4fbe-8181-060e566b4196" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 31, 43)", - "uuid": "4d029c4c-4658-4207-b43c-d69b138b25a3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "6aa5f844-ba8d-40a3-86ec-109e9430ace5" - } - }, - "private": true - }, - "cyan-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "291e6a5c-41b3-4bf1-ad10-38d427e80e48" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 14, 20)", - "uuid": "e6cd6257-d8de-428e-8ebf-c1c812031e5e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "9bf84aeb-6822-40c9-b027-8db8a49fd54b" - } - }, - "private": true - }, - "indigo-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 248, 255)", - "uuid": "04cf76e0-1e7c-479a-9411-0dcad2f6ab25" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(30, 0, 93)", - "uuid": "e60cb247-c265-4009-9f0a-bcbbbb801dd4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "37af1036-6ba7-4eac-b1a5-9442ff55036f" - } - }, - "private": true - }, - "indigo-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 238, 255)", - "uuid": "ab568cfd-20e5-4e20-a3bf-32292297df8f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 0, 110)", - "uuid": "56c709dd-b41e-478a-8098-21014e3f9ec8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "401d532f-8374-4e5a-99c5-51c4ec9bc344" - } - }, - "private": true - }, - "indigo-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 222, 255)", - "uuid": "a220a225-3bb9-446c-8ee3-732a96a150d2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(47, 0, 140)", - "uuid": "716f244e-67c5-4566-b824-ed7f2192b585" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "fb607a6f-2d62-4163-a6a3-068b80a084da" - } - }, - "private": true - }, - "indigo-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 201, 255)", - "uuid": "891799a7-b51d-4769-abe3-62dd0da6e190" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(62, 12, 174)", - "uuid": "c256e06e-07bc-4dcd-9239-48841916c93b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "5cd6358b-bdc0-488e-a5fe-089a769b6bfb" - } - }, - "private": true - }, - "indigo-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(167, 178, 255)", - "uuid": "2751b8ae-f347-4a57-938d-98a5ee86071c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(79, 30, 209)", - "uuid": "1ea0564b-6e88-456e-a796-4620d57b8771" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "a9e657da-8f33-425a-b2ab-dca9d1337bf3" - } - }, - "private": true - }, - "indigo-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(145, 151, 254)", - "uuid": "2d69bbe7-37c1-4302-9fee-39733bb13a86" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(95, 52, 235)", - "uuid": "df590853-ce16-4ddf-bbe9-a912695eae17" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "233a1b84-3ab6-4899-9b41-d9177356c175" - } - }, - "private": true - }, - "indigo-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(132, 128, 254)", - "uuid": "3c57f9f6-e837-450b-9443-a702caa049a4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(109, 75, 248)", - "uuid": "0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "feeeaa05-5c75-4a06-b5be-ed8bf3ecd773" - } - }, - "private": true - }, - "indigo-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 106, 253)", - "uuid": "f5a317ea-25f2-4193-9305-f20c231e786e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(116, 91, 252)", - "uuid": "97e84a30-1de4-4e84-8d59-e625f9ec9ab1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "63e9a41c-ee85-43c1-b550-3ca8ce7c0986" - } - }, - "private": true - }, - "indigo-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 85, 250)", - "uuid": "87b65e85-d767-47bb-8af5-01b85282c663" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 119, 254)", - "uuid": "5cb7ff5e-ec53-4df8-b59d-a1419190a6cf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "39f6823f-ca35-413c-ad64-31529710cf3c" - } - }, - "private": true - }, - "indigo-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(99, 56, 238)", - "uuid": "9d1a9aa9-a7b3-4254-9e55-a992784bb7b5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(139, 141, 254)", - "uuid": "0bf6170c-50d7-4600-96fe-2d1af93f173a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "ef5ddbb5-3e37-4806-b863-9369294dc07a" - } - }, - "private": true - }, - "indigo-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(84, 36, 219)", - "uuid": "2f59721c-2922-4ad3-b50a-37327d592050" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(153, 161, 255)", - "uuid": "c85ea1d9-e28d-46c5-abd0-c053858770e0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "f4c7c283-b412-4acc-b2f5-0339f946ff3d" - } - }, - "private": true - }, - "indigo-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(69, 19, 191)", - "uuid": "4aaedaea-2d42-4593-84e4-18a12ce5efc2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(176, 186, 255)", - "uuid": "91f9622a-03b4-47b0-b380-5f6d64c13b5d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "91d7c77f-6cb0-4f1d-92ea-03965a296cc6" - } - }, - "private": true - }, - "indigo-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(55, 6, 160)", - "uuid": "f8300596-def6-4640-8d9a-c08fea25bfda" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(199, 208, 255)", - "uuid": "c0bfd081-7859-4ed5-aa4c-c1f547dab8f3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "a274d960-197e-4045-99d3-9919cfa90e6e" - } - }, - "private": true - }, - "indigo-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 0, 129)", - "uuid": "4e8c10e6-0c7e-4f48-91a0-ff460915725d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(223, 228, 255)", - "uuid": "080f9ea4-1d87-4691-adb7-3875a7708555" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "46fa9ff8-5758-41c3-b0aa-fefd075eb739" - } - }, - "private": true - }, - "indigo-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(243, 244, 255)", - "uuid": "498d2f9c-7304-406d-a3f8-802a2cbd3502" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(31, 0, 98)", - "uuid": "2653368d-d90b-4a5a-97f3-8380fe2e7551" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "72c07c8d-19f8-44de-8e73-98997502cf86" - } - }, - "private": true - }, - "indigo-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "c498c300-86e8-4c71-bd3e-5a344324b9c1" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(17, 0, 54)", - "uuid": "6a0ad8e2-b574-4148-b151-e0607c4d5317" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "2f76990f-4bfd-4b4d-b063-aa374ea9df83" - } - }, - "private": true - }, - "purple-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(251, 247, 254)", - "uuid": "e80b112b-a26d-4392-a431-844b33d8bac8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(41, 0, 79)", - "uuid": "ffc5aa7a-c339-4583-a586-3e8b1329d16d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "8898f93b-9e3f-4143-bb78-fd0afd4c4ee0" - } - }, - "private": true - }, - "purple-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(244, 235, 252)", - "uuid": "65816c3d-544e-4bbd-bf0e-c0981e08a5cb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(50, 0, 96)", - "uuid": "2d67627b-372c-46af-b015-6c95bd027664" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "0980d65e-bf37-40c7-a59c-5a0c80795211" - } - }, - "private": true - }, - "purple-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 218, 249)", - "uuid": "bea266d7-8f53-43b7-b7df-0daa5b7e6f89" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 0, 122)", - "uuid": "be628028-f41d-4ace-abf3-f7f38ecb2e01" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "2f450b24-782a-428f-80ff-9d762e22e44c" - } - }, - "private": true - }, - "purple-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(221, 193, 246)", - "uuid": "b68c2d3d-02e6-4130-9904-d2d32e67d115" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(83, 0, 159)", - "uuid": "474fed30-921a-4795-8999-2310521c64c5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "7faf15d0-6890-4cde-919e-1b720d5bfc0a" - } - }, - "private": true - }, - "purple-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(208, 167, 243)", - "uuid": "9625edd4-fcdd-406a-9a66-068dcfeb3bd9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 6, 195)", - "uuid": "b912e8ba-ed77-4179-9b80-7448f9e37193" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "2473ee91-ecb3-414d-ac05-8b040aee3283" - } - }, - "private": true - }, - "purple-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(191, 138, 238)", - "uuid": "bfd24d4f-9100-4937-a45d-7614ce0ece74" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(130, 34, 215)", - "uuid": "05638159-aaf7-4f3e-849e-a46e80cd9ee6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "78f628a8-2d9f-4532-8502-bf389ec8ae7d" - } - }, - "private": true - }, - "purple-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(178, 114, 235)", - "uuid": "2f218111-4cef-432b-8d69-06492e7c40c1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(148, 62, 224)", - "uuid": "fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "8cdcca2d-71d7-4a08-b7a0-072e954980fe" - } - }, - "private": true - }, - "purple-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(166, 92, 231)", - "uuid": "a6205c53-9e63-475c-85f4-bdd5963e1eb2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(157, 78, 228)", - "uuid": "30aae683-83e3-47a1-bdcb-ebe658e110a3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "32ee4548-9a32-476b-a245-f0af6c701fdb" - } - }, - "private": true - }, - "purple-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 71, 226)", - "uuid": "b72cb9ff-2b75-487c-914f-1c10bff76f75" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 105, 233)", - "uuid": "12d86845-fd54-4d30-aac8-bb9451560ba5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "1f898f83-cd72-4bf1-bd66-ee1486a0f70d" - } - }, - "private": true - }, - "purple-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(134, 40, 217)", - "uuid": "163a3d87-cba9-48de-8384-c2820cf03984" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 127, 237)", - "uuid": "e527a3bd-3543-4b40-8a9c-eb465695bdb9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "2287f92f-6851-4f5f-b48c-3a43067a7a08" - } - }, - "private": true - }, - "purple-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(115, 13, 204)", - "uuid": "991db22a-d0c2-4f1a-a45b-95aaf13d747d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(197, 149, 240)", - "uuid": "18265c0a-e466-4575-a364-3dfda9e71bd4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "ed68aade-7d0a-4029-bf17-9a3b88f08ceb" - } - }, - "private": true - }, - "purple-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 0, 177)", - "uuid": "b71041e1-ca59-4d0c-87e4-2a8e8821b3ab" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(212, 176, 244)", - "uuid": "ae071768-dcdd-4e30-8f72-d066abac97af" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "aa502b60-e84f-4a35-910f-de28016d44fc" - } - }, - "private": true - }, - "purple-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(75, 0, 144)", - "uuid": "7a524851-d57b-40f7-930a-f67739c0e138" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(225, 201, 247)", - "uuid": "fbaaff02-da93-4f45-830a-5fc449a58f0b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "eeb7a71b-1a59-4629-a1fd-4fe9bae6d3db" - } - }, - "private": true - }, - "purple-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 0, 111)", - "uuid": "e1609d80-a6ba-46b6-bd52-83f32fd009ad" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(238, 224, 250)", - "uuid": "9ae063c9-5817-45b4-9f57-4b2196c845b9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "10c0a8e7-8496-4421-bfa0-cc41af6271d7" - } - }, - "private": true - }, - "purple-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(248, 243, 253)", - "uuid": "d96c8fa3-5872-4bd2-81a3-0109ddf0bf18" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 0, 84)", - "uuid": "f43e7a56-8663-41a9-b688-5b6471e3fcff" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "05c1a879-e716-4f67-97ab-7f524b713815" - } - }, - "private": true - }, - "purple-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "0f10b720-c0f8-46db-9205-fdde265d05f7" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(23, 0, 45)", - "uuid": "8adc4493-0971-4b9c-bff7-c5ce8100fc43" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "1d742643-035d-4966-aba9-2be2bbfb793e" - } - }, - "private": true - }, - "fuchsia-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(254, 246, 255)", - "uuid": "2a8743fc-d3b3-444a-b3f1-8ad816945941" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(50, 0, 61)", - "uuid": "3a434405-c4b0-40ef-b383-7cb9a9b60cab" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "c826bbb3-badb-48a1-becf-86f5f395eef7" - } - }, - "private": true - }, - "fuchsia-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(253, 233, 255)", - "uuid": "a304f27a-7a17-4c12-88d1-07171fa3ca75" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 0, 74)", - "uuid": "779ec441-475d-41de-b207-3e139c7c3168" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "eed8370d-a367-4333-ba69-56843a7657ba" - } - }, - "private": true - }, - "fuchsia-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(250, 211, 255)", - "uuid": "723a23a1-0bb0-4c11-89cf-0eca2a421867" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(79, 0, 95)", - "uuid": "5fa7110f-0c33-4139-8277-eff40921939e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "7b52a8c6-67b3-4d8c-b506-aa5eeababdfb" - } - }, - "private": true - }, - "fuchsia-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 181, 255)", - "uuid": "ce8ce579-0dca-462c-a9d3-49e451931812" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(102, 9, 120)", - "uuid": "a81bfdd6-4b80-4f1a-922d-2f6e04c27e01" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "670788fe-2614-4673-bda2-681622680109" - } - }, - "private": true - }, - "fuchsia-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(243, 147, 255)", - "uuid": "779bda09-25fd-4912-9aa8-8e3a5643d0cb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(127, 23, 146)", - "uuid": "7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "906889fa-ad69-4129-978c-23ea12d2b362" - } - }, - "private": true - }, - "fuchsia-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(236, 105, 255)", - "uuid": "bd2db3f8-5eae-4fcb-a1f6-307d3b8e4139" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(151, 38, 170)", - "uuid": "0fb76488-9965-4cf9-878f-ceed7fc2be43" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "0b09ae9a-7aa8-4b63-b6c4-4317b03dc3ff" - } - }, - "private": true - }, - "fuchsia-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(223, 77, 245)", - "uuid": "42525649-03ba-44f7-bc8c-9a824b898920" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 51, 192)", - "uuid": "5f971453-aa30-4c1f-8cbc-be45ff042fcd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "02b7bf12-ff14-4829-aa9b-52c3033b0652" - } - }, - "private": true - }, - "fuchsia-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(200, 68, 220)", - "uuid": "3b2867ea-80f8-44ca-9394-7bb17e8c5a22" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 60, 206)", - "uuid": "5848fed6-5b42-42ef-9800-8f32e42cf6ba" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "a6344998-b1e8-4651-a4c9-b1b2aa22d48b" - } - }, - "private": true - }, - "fuchsia-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 57, 200)", - "uuid": "5fa3362b-01ee-4861-9a02-6af6da804f61" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(213, 73, 235)", - "uuid": "3c6d42c9-4cba-4373-a61c-c8617c509f92" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "2a29020c-1524-4b9b-a249-25b9927d4a54" - } - }, - "private": true - }, - "fuchsia-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(156, 40, 175)", - "uuid": "fa79840c-fe56-4f21-b9c5-f1e24f89e031" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(232, 91, 253)", - "uuid": "a13d5f15-e4cc-4f7c-928f-aaccbf0d590e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "7606b799-458c-466e-96c6-a0a7e949a83c" - } - }, - "private": true - }, - "fuchsia-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 27, 154)", - "uuid": "44aeb8b3-dd63-43a5-adb6-67cca83ca4c5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(240, 122, 255)", - "uuid": "0a4eb3af-d067-4d9f-af91-66c676e49e26" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "aa82e21e-e5a2-4bcd-a63d-a2d76c467ac7" - } - }, - "private": true - }, - "fuchsia-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 15, 131)", - "uuid": "fc66406d-0e4c-4f82-9fa6-aec444f04070" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(245, 159, 255)", - "uuid": "0d93ff9f-63e8-4caf-9e7b-714e56d968d4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "bdb3a49e-331e-44b9-96e2-4f1dccdae565" - } - }, - "private": true - }, - "fuchsia-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 4, 109)", - "uuid": "00cfb450-b2b1-47ea-aaf2-221827cca75d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(248, 191, 255)", - "uuid": "abd44b32-b837-4e11-95c7-4ba1c34db44b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "c53a7f46-12aa-48c9-afdf-20e7a26bbb09" - } - }, - "private": true - }, - "fuchsia-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(72, 0, 88)", - "uuid": "e5fc57ed-6d37-4496-a89c-db93104cb333" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(251, 219, 255)", - "uuid": "7c819391-d74c-4326-ae0d-fe3534eb44e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "ee6b1d77-41ce-4c87-9d95-098f5fc66da9" - } - }, - "private": true - }, - "fuchsia-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(253, 241, 255)", - "uuid": "ff510e34-7c7c-4795-a224-b1e1c5cc25e0" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(54, 0, 66)", - "uuid": "afdfcd22-19fd-4306-a069-c8f9cd0d4f2d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "a8afc139-5eeb-4b56-9acd-62433f802563" - } - }, - "private": true - }, - "fuchsia-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "c06ab95f-6471-4840-99cc-710851d25de4" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 0, 35)", - "uuid": "38117e2a-efd1-4edd-8284-6fb0bc7482cc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "cd37d695-d1b0-4322-92f7-9bc0a347aa90" - } - }, - "private": true - }, - "magenta-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 245, 248)", - "uuid": "06219a66-5150-42ab-a9fd-c743058728af" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 0, 22)", - "uuid": "9149371a-1978-4136-a89c-8895edd35e7d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "3f70bddc-f8e3-41a1-a68e-9500ac9a2474" - } - }, - "private": true - }, - "magenta-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 232, 240)", - "uuid": "0a9c01d3-0659-4884-a0e8-7032deeee766" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 0, 27)", - "uuid": "f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "074993b8-2652-448c-a6ca-b18a39176ed9" - } - }, - "private": true - }, - "magenta-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 213, 227)", - "uuid": "bfe2436d-c026-4641-8cd7-a9824f6948dd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 0, 34)", - "uuid": "673ab9b4-e296-4472-b0b5-15adf9f1f762" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "04b09fbb-08cb-4fe3-a287-d7de2bf39312" - } - }, - "private": true - }, - "magenta-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 185, 208)", - "uuid": "4419b5e5-344d-4905-b39d-8935bedf7d6c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(123, 0, 45)", - "uuid": "60560de2-28e6-44b4-bcff-f357fe13a4a7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "41d578d1-c853-4360-95e9-b94ad61e7786" - } - }, - "private": true - }, - "magenta-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 152, 187)", - "uuid": "d7c3e696-4ec4-497f-89c5-bad17cb4699a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 7, 60)", - "uuid": "830123a6-0e42-4c4f-9b20-2f4204d37af8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "0734c859-3e4c-4974-98e2-700c49c69bcd" - } - }, - "private": true - }, - "magenta-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 112, 159)", - "uuid": "329f4efa-6f0b-4bc1-95f7-1121bda7f421" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 19, 76)", - "uuid": "e6b14a1d-e26e-41c4-b386-7fb3f95b8c93" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "e70126f5-e8d6-47e2-9737-0dbb17655b1f" - } - }, - "private": true - }, - "magenta-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 72, 133)", - "uuid": "fcacf0f0-c919-4705-b4c2-6edbe2796fb0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(207, 31, 92)", - "uuid": "11055a6b-7e81-4b59-9feb-8b0b6352be07" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "e5ffefaa-72d6-444d-8f9f-3fb08a9f2480" - } - }, - "private": true - }, - "magenta-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(240, 45, 110)", - "uuid": "21e774f7-89d8-438d-9fc4-aa93261022d1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(224, 38, 101)", - "uuid": "6676db79-7b7e-4fcf-868b-321f9372517a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "6dca10b8-2ed2-463c-82f5-fad66a833675" - } - }, - "private": true - }, - "magenta-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(217, 35, 97)", - "uuid": "0166ed9b-52e7-447a-b45d-de29ba85eb0d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 51, 119)", - "uuid": "fa5e523e-7ee3-46d0-971f-4ee95c7222b8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "991792f1-03ed-494b-ada7-1beb965e39c9" - } - }, - "private": true - }, - "magenta-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 22, 80)", - "uuid": "98125f18-a061-4aa7-a0c5-a746d635c4c5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 96, 149)", - "uuid": "bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "8a8e447b-6b31-4758-b59e-51acad7c9210" - } - }, - "private": true - }, - "magenta-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(163, 5, 62)", - "uuid": "29d203d7-7c2c-4f36-a5f3-d84fab6be9f1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 128, 171)", - "uuid": "548a74eb-4401-44f4-85b4-921287d84ac9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "9784741b-612e-4986-952b-a102c04e2afd" - } - }, - "private": true - }, - "magenta-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(136, 0, 51)", - "uuid": "2a9f4ecf-5678-4345-973a-da1e066eaf10" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 163, 194)", - "uuid": "9c634688-1ad5-438b-bd44-a92c64ef9934" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "3c632a35-bf86-4182-9475-84854a20f15a" - } - }, - "private": true - }, - "magenta-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(111, 0, 40)", - "uuid": "0be3f108-028b-4fdd-9a98-8bb24deec2d8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 193, 214)", - "uuid": "6c441ca7-0294-462f-ac18-7b28ff20d7ff" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "030c6431-3ea5-429b-a492-1a01dd396d44" - } - }, - "private": true - }, - "magenta-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(86, 0, 30)", - "uuid": "40d9a0f7-0085-4001-a22e-3c22d3887846" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 220, 232)", - "uuid": "15f36ded-01af-4c5d-8b11-45523e7d908e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "b6dd1b22-5f8f-46d8-924e-4ce02ad5a99f" - } - }, - "private": true - }, - "magenta-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 241, 246)", - "uuid": "d2814529-9c64-47fd-a317-8669d565cf67" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 0, 22)", - "uuid": "70dd220b-46cd-4975-ad8b-5ca31f7c33dc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "950ba124-e6b5-47b6-b1b8-31960f7cc380" - } - }, - "private": true - }, - "magenta-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "c24954cd-f17c-47b4-8a3e-8cb019a3e330" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 0, 12)", - "uuid": "fd25d1ee-438b-49a3-93d8-1d59b2a06f72" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "2fc90f48-a54e-4aae-9b9f-aa3c4d7e55de" - } - }, - "private": true - }, - "pink-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(58, 0, 37)", - "uuid": "bd616b1d-fe15-498b-b8c3-02b3ec12917c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 246, 252)", - "uuid": "89d9aa85-aef2-47fa-8939-e6774f5fa2de" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "4c01ddf8-d689-4433-826c-75b33bc2214d" - } - }, - "private": true - }, - "pink-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(71, 0, 44)", - "uuid": "b27db3ca-2a1d-40f0-aa6b-d7256262a70c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 232, 247)", - "uuid": "d80ed3c8-4db1-48e7-bd16-1d34580a3108" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "d4e972fb-fbd5-4b37-bd20-9487ed47d243" - } - }, - "private": true - }, - "pink-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(90, 0, 57)", - "uuid": "b4a885e9-96d3-498f-b8a9-87c448723198" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 211, 240)", - "uuid": "3041a3b2-4275-41fb-94ff-607108d94df3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "83e9b8e8-ff2a-49fc-9ac8-349c694c1aec" - } - }, - "private": true - }, - "pink-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(115, 7, 75)", - "uuid": "3a4e3a24-0f21-44a4-ad80-f721ad6acb38" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 181, 230)", - "uuid": "c86af74f-6fe2-41a1-a934-2589f56fd041" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "ba838eaa-0dc0-4bbd-be25-300e8bd89272" - } - }, - "private": true - }, - "pink-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 18, 97)", - "uuid": "14b4ffb1-3dcb-4155-b470-1006982eec4c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 148, 219)", - "uuid": "e526f977-736d-473b-b851-475fd08f5276" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "356a4b99-8ffc-4d11-b56e-a88c5e70194d" - } - }, - "private": true - }, - "pink-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(171, 29, 119)", - "uuid": "77da83cc-1a57-486b-bb43-e74e6b5ac041" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 103, 204)", - "uuid": "d383f12e-48f4-446c-abb4-595a50fd29a2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "527b5dcd-0896-4dbc-82f9-866297227eb0" - } - }, - "private": true - }, - "pink-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(196, 39, 138)", - "uuid": "6c1ae7db-8ca1-4dbe-9d1e-2b3f5ab28a5c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 76, 184)", - "uuid": "91406d69-6d53-4231-be9e-e90d8ad0cc51" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "873c22cd-488b-45d4-a79d-0473fc4f3c7f" - } - }, - "private": true - }, - "pink-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(213, 45, 151)", - "uuid": "86b686e1-d580-4fc0-9246-8b94ad2fed96" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(228, 52, 163)", - "uuid": "af67d2bf-e92e-42f2-93d6-2f0b45fba0ac" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "b50fbb92-1897-469d-a867-d9f6e5070c2e" - } - }, - "private": true - }, - "pink-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(236, 67, 175)", - "uuid": "fb259e11-a051-4116-a7cb-f567cf814df5" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(206, 42, 146)", - "uuid": "a53ae96d-64bc-4baa-b51f-4490242047df" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "85c314fe-cdfe-4542-856f-f58acfad1aee" - } - }, - "private": true - }, - "pink-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(251, 90, 196)", - "uuid": "89cc3b46-c438-4e65-bf43-c373cb6af83f" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(176, 31, 123)", - "uuid": "8d8448ee-5b8d-4953-a2f8-ba34a3c7f796" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "deac6200-0e75-47d5-9073-3aaa390f1cd1" - } - }, - "private": true - }, - "pink-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 122, 210)", - "uuid": "ee41ab95-9c22-4523-94ce-efab466cc261" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 22, 104)", - "uuid": "889ea4ff-1362-474e-ab12-15eb08bec89b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "b9911ab3-fa6b-42e7-9247-c341b68ee151" - } - }, - "private": true - }, - "pink-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 159, 223)", - "uuid": "670f5ea8-1435-4dd6-9ee9-f1886378b18f" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 12, 85)", - "uuid": "ac7fa4bb-da89-44ef-95d0-5d15fd8df976" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "4c73d77d-95e3-4311-b644-2b55ad4552cf" - } - }, - "private": true - }, - "pink-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 191, 234)", - "uuid": "c70eb5b9-80fa-4e03-9589-88001bbed4e2" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(105, 3, 68)", - "uuid": "a10ffb76-fc1a-4f2f-ac43-dace44726820" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "efa5d789-8e54-493d-9787-8e5dce4180a0" - } - }, - "private": true - }, - "pink-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 219, 243)", - "uuid": "bb85af92-a0c8-4b12-b651-a2a084d6d1cc" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(83, 0, 53)", - "uuid": "8c14e640-5df8-4753-8a47-295c1aee63c5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "4d10b352-648d-404a-a863-3fd3308b2696" - } - }, - "private": true - }, - "pink-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 241, 250)", - "uuid": "0344a02f-ae86-4c77-bb36-480da43b3be1" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(62, 0, 39)", - "uuid": "886065e2-949f-4f4c-9aa9-0a843c3d8cf2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "13813529-7eb8-4171-a40b-a719c430299b" - } - }, - "private": true - }, - "pink-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "fd715951-5fb7-433c-8a9d-2d10707893e5" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(33, 0, 21)", - "uuid": "0612a373-58a7-4393-b789-7dcf8e388b2c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "44800628-6a86-49de-b44f-256ca36c4127" - } - }, - "private": true - }, - "turquoise-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 30, 33)", - "uuid": "7be82e76-2525-4496-9425-c180746f12df" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(238, 251, 251)", - "uuid": "8e69d558-2c95-496f-8244-56c1abecef5f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "094b2708-cb1f-4936-96ee-503cf113ab7a" - } - }, - "private": true - }, - "turquoise-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 37, 41)", - "uuid": "f70fdb17-da0b-4163-8af6-2daa65327e3a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(209, 245, 245)", - "uuid": "2dd6c94d-b55e-491e-91a9-bf9b4e3ceb54" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "e5a0aca5-4d22-4d1a-9732-6e0e2c98e72d" - } - }, - "private": true - }, - "turquoise-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 49, 54)", - "uuid": "eb6f8d2a-1a82-42ef-b668-0aac077d4053" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 236, 237)", - "uuid": "7eda1d2a-4c4a-495c-8b2f-c663be8c22f8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "c4877ffd-985b-4260-b1c3-3ac37392315a" - } - }, - "private": true - }, - "turquoise-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 66, 72)", - "uuid": "e354eda3-17c2-4f07-b64b-3620692a12f3" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(111, 221, 228)", - "uuid": "7a80623f-07eb-426a-9a64-ced6e3d09df1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "f136369b-3ac7-4041-871e-90c90f3da3a9" - } - }, - "private": true - }, - "turquoise-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 84, 92)", - "uuid": "de4d07fb-1d63-44cc-a9bf-1cd2e2ed4e59" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 202, 216)", - "uuid": "1fae7edd-0b41-4ae6-a436-c1e5ecda3e3a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "4320a8e7-3509-45c6-b133-02bf0e779a42" - } - }, - "private": true - }, - "turquoise-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(5, 103, 112)", - "uuid": "ae1d9dc7-e778-4c78-b12d-ab187cc3c254" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(15, 177, 192)", - "uuid": "be19fd97-84da-40ed-82a2-1afa75b6f405" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "1ce42e96-435f-4895-896d-268dcdf16b21" - } - }, - "private": true - }, - "turquoise-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 120, 131)", - "uuid": "08f4307e-74f1-446d-9051-8a4c11546289" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 158, 171)", - "uuid": "0a313605-1db7-4801-afac-28aeb30aa005" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "9ffcdab9-e422-4ece-b292-6b8ce227bef8" - } - }, - "private": true - }, - "turquoise-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(9, 131, 142)", - "uuid": "69ae2217-ba32-41ca-a38f-8f19dcc5cf76" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(10, 141, 153)", - "uuid": "cb62cb21-ce76-4f47-a88d-14682eb6e06d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "a6548e62-22e6-4089-b098-0a8bb60676ec" - } - }, - "private": true - }, - "turquoise-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 151, 164)", - "uuid": "2ce15c64-8c38-4935-bc65-7580df395231" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 126, 137)", - "uuid": "b1e2b910-c19d-4b83-9f49-f9e858ab58b9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "2084f7e5-221c-4a4e-96e0-fa0ff2fa40f1" - } - }, - "private": true - }, - "turquoise-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(13, 168, 182)", - "uuid": "89d12308-9718-40d6-a089-73b9fcf1185b" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(5, 107, 116)", - "uuid": "f46bb42a-00fe-44ae-8421-16fbdbe1a9e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "7c82b1ca-e445-45a0-b7b2-5ed3030e92e7" - } - }, - "private": true - }, - "turquoise-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(16, 186, 202)", - "uuid": "7f0dafc6-6863-4542-b58c-610bd97f79fa" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 90, 98)", - "uuid": "7c957f48-f033-4814-a4e0-127e67169771" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "e3e88d56-d236-41f7-8eaa-3804576b6161" - } - }, - "private": true - }, - "turquoise-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 208, 220)", - "uuid": "70ca07eb-a370-4059-9d5a-b55f6a9c9f31" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(1, 74, 81)", - "uuid": "d85163b6-fbaf-4c49-b61b-f0b7b9529ff7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "1ca86f12-0424-40b5-a606-912e2fcc5cc1" - } - }, - "private": true - }, - "turquoise-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 225, 231)", - "uuid": "c1f51874-6699-4250-bcd3-9d15add56a86" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 59, 65)", - "uuid": "c9ab3575-f393-45db-a92b-07eccd4696bb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "07b5d5b0-8952-4901-a0e5-227fa3e1aacf" - } - }, - "private": true - }, - "turquoise-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 240, 240)", - "uuid": "f2f63354-d6fb-4687-abf8-554c4ab95fbf" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 44, 49)", - "uuid": "6ee374d9-95c4-4e5d-8f4d-fa1912cf6514" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "81180029-eec8-4d26-9fe0-3966aa372151" - } - }, - "private": true - }, - "turquoise-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(228, 249, 249)", - "uuid": "d4b79c34-286d-40f0-87ce-bbfb6b217dba" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 32, 35)", - "uuid": "d3e919d4-3777-4dca-93f9-0e04ab00d0dd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "1162302d-4bcf-478a-a95e-660785220434" - } - }, - "private": true - }, - "turquoise-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "4ae14c01-10b1-4daf-a064-dab9f6fdea9d" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 15, 17)", - "uuid": "6af4ec29-d7c5-4562-be2c-a838aa919aed" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "21be860b-80bb-40a1-9aaf-20a97b2ddc77" - } - }, - "private": true - }, - "brown-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 24, 8)", - "uuid": "478633c7-4a14-4e39-a05c-bfa07aeb4a85" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 247, 242)", - "uuid": "aa01448b-bf3b-4da2-b483-127a3ed708f7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "3d64c998-df63-4695-a1d1-00d78ed2097b" - } - }, - "private": true - }, - "brown-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 31, 11)", - "uuid": "ec81816f-120e-46f9-a5b0-adb94814d1eb" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 238, 225)", - "uuid": "1b19a7b6-469e-4f5a-b30b-f3f465021d25" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "5d0e6309-481d-40f9-81b9-7d0bee9cf794" - } - }, - "private": true - }, - "brown-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(58, 40, 14)", - "uuid": "3c253e65-bd9a-4e52-ad68-83aca3b197e6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(239, 221, 195)", - "uuid": "9f0a77f8-aab8-4942-8119-332b09441939" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "e710f0e9-90a7-4ed9-8d2b-6a8c9ed778db" - } - }, - "private": true - }, - "brown-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(78, 55, 19)", - "uuid": "a9daa02d-c0aa-4c05-80ee-2bf55165dd36" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 200, 157)", - "uuid": "e33616c5-157c-42aa-a349-90d05f50beba" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "7a9223ac-0dee-4dd5-8b11-b04815683c6b" - } - }, - "private": true - }, - "brown-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(98, 71, 30)", - "uuid": "f455957b-e647-44b3-a917-7d6e19807d40" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(214, 177, 123)", - "uuid": "5346904d-2c85-4dd5-815c-ea2708a4d380" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "bca8a6a6-557e-4930-b765-0dcc9867c42a" - } - }, - "private": true - }, - "brown-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(115, 88, 47)", - "uuid": "41f83cff-cdd4-4760-a4bd-0bb1ceb46854" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 155, 104)", - "uuid": "970fd8ac-c68b-4789-84a6-1397b2514e2f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "ef14139b-0550-4a5a-b2f5-eb787bcf406d" - } - }, - "private": true - }, - "brown-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(132, 104, 61)", - "uuid": "dc738913-4af6-446e-8a1b-09c84993c8e5" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(171, 138, 90)", - "uuid": "621aa30e-95de-4b69-814f-821dfe12b78d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "45f999be-146e-4b0f-97de-ef1f7e82d675" - } - }, - "private": true - }, - "brown-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 114, 69)", - "uuid": "e21a0edf-a81a-46a0-a849-11111cb89516" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 123, 77)", - "uuid": "b15bdc92-c03f-4ad4-a385-110d635e66af" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "2c0181c8-ef5c-46c8-bc3e-703d08f3692b" - } - }, - "private": true - }, - "brown-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(163, 132, 84)", - "uuid": "79d7de9d-7bab-4762-acd9-ecf28556906a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(139, 109, 66)", - "uuid": "b0445ddb-ec22-4dde-81a1-21ea14ed195a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "6756882c-f521-49fc-b7c9-3dc8f4d39d5a" - } - }, - "private": true - }, - "brown-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 147, 98)", - "uuid": "6fd7a375-e670-4bde-8061-b1b2ba5116be" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(119, 91, 50)", - "uuid": "0dd635ef-0b0a-4914-8900-999ab7ce436e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "a2a5c52d-7381-47b8-9b67-5d3c86e8ff21" - } - }, - "private": true - }, - "brown-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(199, 163, 112)", - "uuid": "26df5572-cbdb-4988-8847-672ee1669acd" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(103, 76, 35)", - "uuid": "d14770ac-d032-4408-b5de-637de47bf151" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "1c1c2c57-890d-4638-b219-5b5e1953ba57" - } - }, - "private": true - }, - "brown-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(222, 185, 130)", - "uuid": "c1965544-ed0e-438f-aed0-b1f31836950c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(88, 61, 21)", - "uuid": "1a2cfeec-1d02-4225-a2a1-ecad878a0372" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "df9afc4f-bb87-4dae-b2b6-f7d27a590593" - } - }, - "private": true - }, - "brown-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(232, 207, 169)", - "uuid": "41d1432f-1b3a-4e93-8b57-2e48d0e66096" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(70, 49, 17)", - "uuid": "88621915-f832-4401-b42f-4026cbf6720c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "1e9a6104-d427-4197-8e01-25673c917143" - } - }, - "private": true - }, - "brown-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 227, 206)", - "uuid": "91db9b52-530b-4147-be4f-c4d73a82eac3" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 37, 13)", - "uuid": "fa6e22f6-adb1-4123-b685-dd6050b0a248" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "2ceb2cda-a535-44eb-ae23-b922edcb8bb8" - } - }, - "private": true - }, - "brown-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(250, 244, 236)", - "uuid": "d4d71d28-ce37-4f3f-8487-807cd1c42b9a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(38, 26, 9)", - "uuid": "ddac3cfe-8338-4df5-94c5-baf4e04e6c46" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "19c96dc5-7a37-4381-a7e8-ac1c442afda6" - } - }, - "private": true - }, - "brown-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "bca1e3d9-9242-4b81-95ab-08735905047b" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(16, 12, 4)", - "uuid": "e2753343-f81b-4677-899c-6dfbcc9378fe" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "cb18b0b7-7ad5-419f-863c-fdbb05c624c3" - } - }, - "private": true - }, - "silver-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(26, 26, 26)", - "uuid": "0c4a28ee-a473-4437-924e-c46a9bc0771b" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 247, 247)", - "uuid": "e190b39c-3e1f-4ad7-bc70-0b98c1770f61" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "7e0c8012-9ec4-40c3-a572-dd551627e54f" - } - }, - "private": true - }, - "silver-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(33, 33, 33)", - "uuid": "99b20fba-8fa9-414b-9119-dbaccc5af3c5" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(239, 239, 239)", - "uuid": "f0bae14e-1c9a-4a03-9dbf-dcd3213463c1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "240ade94-eb1b-4ddd-b667-7c05af2b196a" - } - }, - "private": true - }, - "silver-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 44, 44)", - "uuid": "27ca065d-5baf-470f-b1aa-09e9934055d0" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(223, 223, 223)", - "uuid": "41989dfb-ef46-493d-8b50-d9422b221ee8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "da36dc54-21c0-412f-baa1-ae3a2810b926" - } - }, - "private": true - }, - "silver-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 59, 59)", - "uuid": "0c4f7cca-a9fc-40d5-9503-04c505962f33" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(204, 204, 204)", - "uuid": "4bdcf062-a1b6-4615-ad8e-747082107f44" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "a52e646b-54c7-419b-850e-1da7abc74dd3" - } - }, - "private": true - }, - "silver-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(76, 76, 76)", - "uuid": "98e7bc6e-bfed-47c4-8f6e-ab1e035deef7" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 183, 183)", - "uuid": "1bd72e90-6ec1-4a55-beb2-04ad5afd03d5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "696e8452-cd1b-4ab8-b9d6-eb2b76bdf020" - } - }, - "private": true - }, - "silver-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 92, 92)", - "uuid": "9e46a3c3-25d1-41f5-b76d-d4d136668589" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(160, 160, 160)", - "uuid": "1354b7a3-d0b5-4f48-8631-6b4afd7efe4f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "b0f8e027-ba0e-4460-8d45-b0ada27327d9" - } - }, - "private": true - }, - "silver-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(108, 108, 108)", - "uuid": "d66afc23-a9aa-4a50-a094-3dfebe044a08" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 143, 143)", - "uuid": "8c7b40e3-239d-4b57-a846-eb5d9f96615d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "907d96cc-375b-49a7-abe0-afb229c98474" - } - }, - "private": true - }, - "silver-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(118, 118, 118)", - "uuid": "3f481be4-bdd3-45b8-bcfe-c7577cac40d4" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 128, 128)", - "uuid": "bbfb55a6-5bca-424d-8a27-e1e54fff7309" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "8ed554bc-be40-4ebb-9a83-c85c73c0cb3d" - } - }, - "private": true - }, - "silver-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(137, 137, 137)", - "uuid": "66efbf5e-008b-41f6-a623-ee3722e41c69" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 114, 114)", - "uuid": "39cdbda8-3c8c-4977-a90e-3883647d93a6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "3f1bbfff-8a14-4984-a725-211aba36fa98" - } - }, - "private": true - }, - "silver-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 152, 152)", - "uuid": "ee71e6fd-283f-4ba3-a6a3-b23491ce86d0" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 96, 96)", - "uuid": "943f1415-fc31-4724-8434-9e9cdb51d2b4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "28a8b564-c9fb-41ab-b989-47516f9c0135" - } - }, - "private": true - }, - "silver-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 169, 169)", - "uuid": "e1239867-313d-44f8-8ac7-ebdb9f34724e" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(81, 81, 81)", - "uuid": "28748667-93d7-4752-8c75-419af48b4d1d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "69a3ff9a-dec9-4a96-b54f-f9ca12568e59" - } - }, - "private": true - }, - "silver-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 190, 190)", - "uuid": "5ce07115-c390-4b72-b1ce-4e1f5346ac59" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(66, 66, 66)", - "uuid": "f1033f5b-aa7f-4351-9100-43ce546f6a8d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "18013461-754d-434e-8b05-269dd307d45a" - } - }, - "private": true - }, - "silver-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(211, 211, 211)", - "uuid": "426823de-8002-4acb-a591-8ace92d1e0cd" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 52, 52)", - "uuid": "77bcd85e-90f8-47b8-a9a3-ec59cd7ffe14" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "8119e422-4eb8-44fc-bf69-b1f76963afca" - } - }, - "private": true - }, - "silver-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 229, 229)", - "uuid": "b4cae4c1-1075-4776-a217-940423c4297c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 39, 39)", - "uuid": "369bdb1d-bd52-41b4-8512-159cb20c5d64" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "9313f4d5-1105-4cb0-81f4-a8a5109594a0" - } - }, - "private": true - }, - "silver-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(244, 244, 244)", - "uuid": "196c4205-2175-4317-82e1-c2fdeb990c4b" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(28, 28, 28)", - "uuid": "b9b53281-a4f9-4073-8552-d3d4cec25271" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "dba91bae-1dae-4687-be68-d831a5bd42ba" - } - }, - "private": true - }, - "silver-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "8509cb0b-461b-441c-b909-0384737ca553" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 12, 12)", - "uuid": "fc85bffe-09d4-4fb6-bb7b-5f1053139b97" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "cd1b844a-29bf-4643-a246-4f124544e25d" - } - }, - "private": true - }, - "cinnamon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(48, 17, 4)", - "uuid": "4d68b861-ba0c-438b-b10b-c209d4943206" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(253, 247, 243)", - "uuid": "27d84774-6d32-4499-8ba9-9d05c8fca55d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "3c3b2fb7-053d-47ca-86a6-4d1ee07b6f3f" - } - }, - "private": true - }, - "cinnamon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 21, 5)", - "uuid": "bd680dfb-0c2f-45e8-b814-627b496a986c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(249, 236, 229)", - "uuid": "a8d1aa1d-f9be-448e-8209-afc6097f38ed" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "07d13e6d-0df2-4eee-8550-ef033f954e9e" - } - }, - "private": true - }, - "cinnamon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(79, 28, 7)", - "uuid": "4d086a5c-1b70-4750-be79-db934e7bc010" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(244, 218, 203)", - "uuid": "56c7eeb3-990f-48e3-b024-56d36b0378f5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "74d44818-bbbd-44a3-b9f0-7131fb036498" - } - }, - "private": true - }, - "cinnamon-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(100, 41, 15)", - "uuid": "e5ab12a9-84b3-4bfe-94be-f734ae39f10d" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 196, 172)", - "uuid": "d4760c87-d0e2-4c5c-84f3-81e0c4c8fbb3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "2a7d78f3-ad8d-4301-96e8-f2a4ed378c00" - } - }, - "private": true - }, - "cinnamon-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 57, 28)", - "uuid": "641a2424-c699-4920-8a27-68bc1bb178a1" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 170, 136)", - "uuid": "39effb8c-2bba-4018-b6df-2465f2f7e0a0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "c607ecc8-35ed-4d47-a683-54d57b816fbd" - } - }, - "private": true - }, - "cinnamon-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 74, 40)", - "uuid": "6ccccd38-af76-4045-8ffb-a70bed76b365" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(212, 145, 108)", - "uuid": "7d4de908-322f-4326-b623-a868b454b031" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "d46ae80e-04ba-418f-8368-1d8c0633c0d1" - } - }, - "private": true - }, - "cinnamon-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(163, 88, 52)", - "uuid": "74c0ef96-2f6e-434a-bd89-69c6d9745a45" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(198, 126, 88)", - "uuid": "0601d1ba-9a38-4fc9-ac89-ef332e906f3d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "71085b67-c49c-4b1e-b708-6b38c16b9d37" - } - }, - "private": true - }, - "cinnamon-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(176, 98, 59)", - "uuid": "58777c5b-8e62-49fe-8e0b-0f8b5127225c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(184, 109, 70)", - "uuid": "560d578a-4128-40d5-979f-80d3057294a0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "e78bd82d-f4c0-4617-92bb-08a69153bacd" - } - }, - "private": true - }, - "cinnamon-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 119, 80)", - "uuid": "7b65cc42-f559-42de-8077-d808c9e096b6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(170, 94, 56)", - "uuid": "50199dcc-deae-42ba-99e7-cb98346789eb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "cdaaa5e1-7ca5-43a8-bdb4-3ef8fedbb30d" - } - }, - "private": true - }, - "cinnamon-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(206, 136, 99)", - "uuid": "40d50298-0ea6-4c7f-8349-2e149ca288aa" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(147, 77, 43)", - "uuid": "b6943b69-7cec-4707-a556-aa350d9d8b89" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "696315e6-4d82-49a0-8781-853beb0d1f5b" - } - }, - "private": true - }, - "cinnamon-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(220, 154, 118)", - "uuid": "219f9efa-0717-4d41-80ac-695297b92cf8" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 62, 32)", - "uuid": "62edca31-5c84-4353-9707-f3648c8e1936" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "41f0e438-0ca6-4240-84e7-dedfcff1aa21" - } - }, - "private": true - }, - "cinnamon-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(232, 179, 149)", - "uuid": "a48f0d44-c67a-4e95-b5b9-81379363aebe" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(110, 48, 21)", - "uuid": "e8b6ac17-268d-4ebc-99bc-480d15554356" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "87e41d92-4099-4248-963c-394d43e33657" - } - }, - "private": true - }, - "cinnamon-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(239, 203, 183)", - "uuid": "4aae0490-5f12-430c-824f-f7de008a4e15" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 35, 11)", - "uuid": "4330fb2e-d402-43bc-b7a0-502c7f6d99ea" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "2c86bff2-dddd-4fea-b6da-99873fa74da3" - } - }, - "private": true - }, - "cinnamon-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 225, 214)", - "uuid": "1e29a372-600e-4cda-a190-b865c5521aa6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(72, 25, 6)", - "uuid": "6fe88344-7920-46a6-bbe4-be3cfa20298e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "2ec58374-b4c1-4e03-8f3f-57c747a7ed47" - } - }, - "private": true - }, - "cinnamon-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 244, 239)", - "uuid": "7b880574-db1b-47ee-8c66-6504ada37f56" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 18, 4)", - "uuid": "fe6e5407-3f9b-4dd0-9589-7029c19f35b5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "1adb9cd6-2ba1-4501-ab9d-f377ae07d399" - } - }, - "private": true - }, - "cinnamon-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "1d04ed6a-8efc-472b-b7c7-0fbc160ce7fd" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(24, 8, 2)", - "uuid": "e3727e22-c955-4116-b5a7-2877df6ef2fe" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "321a9931-be34-4ce9-8180-8e7fd87e30f4" - } - }, - "private": true - }, - "static-blue-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 99, 251)", - "uuid": "e193b8bb-6a0b-4c23-9851-83634f3797f8", - "private": true - }, - "static-blue-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 77, 234)", - "uuid": "8402b6ad-f3da-4ea2-8b55-174a9794950d", - "private": true - }, - "static-fuchsia-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 181, 255)", - "uuid": "6bf55034-f65e-4ce5-af39-b36c2ef2af0b", - "private": true - }, - "static-fuchsia-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(236, 105, 255)", - "uuid": "47d7dca9-deed-4508-aec4-55713e1548ce", - "private": true - }, - "static-fuchsia-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(200, 68, 220)", - "uuid": "d4d44881-8175-414b-b707-e94d3f97a983", - "private": true - }, - "static-fuchsia-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 57, 200)", - "uuid": "7629af9c-2f91-449e-a82f-c60a771b0e6f", - "private": true - }, - "static-fuchsia-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(156, 40, 175)", - "uuid": "0aee9ad6-2d79-4479-bdb6-aafa07a98673", - "private": true - }, - "static-indigo-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 201, 255)", - "uuid": "61c77769-5598-4509-8ec6-579838e2ca0c", - "private": true - }, - "static-indigo-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(145, 151, 254)", - "uuid": "def10fcb-9261-4869-b221-48707c4037fb", - "private": true - }, - "static-indigo-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 106, 253)", - "uuid": "f1fb98f5-401c-40ff-88da-b06c97ef8a39", - "private": true - }, - "static-indigo-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 85, 250)", - "uuid": "970ddf30-3683-4f48-9ac7-8a9e42902fd3", - "private": true - }, - "static-indigo-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(99, 56, 238)", - "uuid": "fb3003ec-6793-47b0-947d-a89e642652fc", - "private": true - }, - "static-magenta-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 185, 208)", - "uuid": "d8fc21df-dcf5-4d7e-9366-f1df094c95c2", - "private": true - }, - "static-magenta-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 112, 159)", - "uuid": "f743ffcd-019e-4f25-b559-5d563a2d8996", - "private": true - }, - "static-magenta-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(240, 45, 110)", - "uuid": "a6fb2dc7-d4b9-497d-af1a-863217a84b2a", - "private": true - }, - "static-magenta-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(217, 35, 97)", - "uuid": "5b34bb1d-a23e-4799-ad59-8fa8f51d3726", - "private": true - }, - "static-magenta-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 22, 80)", - "uuid": "058a8ff9-740d-4e11-bdb6-7473a77f872b", - "private": true - }, - "static-red-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 188, 180)", - "uuid": "59ce78e2-3fbb-4e2a-be17-07afce5ca987", - "private": true - }, - "static-red-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 118, 101)", - "uuid": "865349c3-a5e0-4940-b404-918616390195", - "private": true - }, - "static-red-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(240, 56, 35)", - "uuid": "341e5068-62cb-4e3f-a0a1-54c107db50cc", - "private": true - }, - "static-red-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(215, 50, 32)", - "uuid": "d31011ef-7270-4c83-802d-05701ae9a3c8", - "private": true - }, - "static-red-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 40, 24)", - "uuid": "3a65213c-4d36-48ec-8bf9-1b163a81299d", - "private": true - }, - "static-cyan-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(138, 213, 255)", - "uuid": "c83a7db4-4fbe-467b-a6b7-34e37544c8a4", - "private": true - }, - "static-cyan-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(48, 167, 254)", - "uuid": "3d8f857c-09fb-4be9-a557-76b5d3f95439", - "private": true - }, - "static-cyan-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 134, 205)", - "uuid": "341fd624-7f99-4d2e-93b1-5f9b06af6796", - "private": true - }, - "static-chartreuse-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(182, 219, 0)", - "uuid": "956d3239-08e0-4f24-86ed-f9a3c63407a8", - "private": true - }, - "static-chartreuse-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 172, 0)", - "uuid": "c1a4bb2c-5823-41fb-abab-02024e601b2e", - "private": true - }, - "static-chartreuse-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 137, 0)", - "uuid": "5b878f8b-b097-4bcd-aac7-adde5b8b704f", - "private": true - }, - "static-green-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 227, 162)", - "uuid": "43ad64e7-95b1-4edf-8a25-3ea6e047a549", - "private": true - }, - "static-green-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 184, 103)", - "uuid": "a8264c36-acc7-4082-8be7-037016b1e79a", - "private": true - }, - "static-green-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 147, 85)", - "uuid": "16a05db4-e5e1-48ff-92d2-72fc6d3e1ebe", - "private": true - }, - "static-orange-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 193, 94)", - "uuid": "333615da-5ca1-44be-9407-4613fba38999", - "private": true - }, - "static-orange-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 125, 0)", - "uuid": "fa30a6d2-df6f-40b0-8877-f826f5f62adb", - "private": true - }, - "static-orange-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(212, 91, 0)", - "uuid": "77e8a380-26f9-4b61-8131-421b8ccf2212", - "private": true - }, - "static-purple-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(221, 193, 246)", - "uuid": "40c4db9a-eaea-4266-b00f-5793afc95422", - "private": true - }, - "static-purple-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(191, 138, 238)", - "uuid": "c1cc646a-21a9-4c3b-bcda-be77e4b2d735", - "private": true - }, - "static-purple-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(166, 92, 231)", - "uuid": "a6bfb1a2-9fd6-4247-b615-af1d4fc4c476", - "private": true - }, - "static-turquoise-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(111, 221, 228)", - "uuid": "86ef11d6-aacd-470b-9d61-ffd7c5c09b45", - "private": true - }, - "static-turquoise-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(15, 177, 192)", - "uuid": "60816b84-ee3f-4b17-9bcb-fd26f194dd32", - "private": true - }, - "static-turquoise-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(10, 141, 153)", - "uuid": "94f1f308-c049-4b5e-ae02-2d609c114e83", - "private": true - }, - "gradient-stop-1-avatar": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0, - "uuid": "8d9e0c2d-d692-47a0-86cd-6349649ec6e2", - "private": true - }, - "gradient-stop-2-avatar": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.6666, - "uuid": "a7791b29-4e4d-4b9f-ab34-0240ac4d6769", - "private": true - }, - "gradient-stop-3-avatar": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, - "uuid": "620ee6f3-eb3d-40ad-854b-9edceb897c7f", - "private": true - } -} diff --git a/docs/s2-tokens-viewer/tokens/icons.json b/docs/s2-tokens-viewer/tokens/icons.json deleted file mode 100644 index 766c908c..00000000 --- a/docs/s2-tokens-viewer/tokens/icons.json +++ /dev/null @@ -1,1317 +0,0 @@ -{ - "icon-color-inverse": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-50}", - "uuid": "9e04025f-b58c-491a-8569-1965ae074f7b", - "deprecated": true - }, - "icon-color-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-default}", - "uuid": "d143f2f2-e0d8-4eb3-b06c-86233321fb61" - }, - "icon-color-blue-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "f53f030b-755f-46ca-b411-7d62f4eb901e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "1bac9a3f-4bc8-4a4d-8dfd-53c542b1d1d8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "a306b28e-f698-427d-a576-439b2ab378fc" - } - } - }, - "icon-color-green-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "a0717159-cc62-4ba1-b1f1-a69dfb88c6ee" - }, - "icon-color-red-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "89656cae-d490-4b9f-93eb-75912b29ecf5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-700}", - "uuid": "a60f2744-ad15-4cf7-b9dc-89ca307ed444" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "16bbb033-224a-43e6-881c-bd29ffd70d1b" - } - } - }, - "icon-color-yellow-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "59cd6057-b3d8-4bdf-b752-7df17c2c4a95" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1200}", - "uuid": "5ebf8291-23f8-4806-865d-4ebab38ff03c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "fc16cbe3-7cf3-4744-a571-5bd2bdcef29e" - } - } - }, - "icon-color-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-hover}", - "uuid": "2a3d8ce3-6294-41b2-ad19-c6b9b6ed7e10" - }, - "icon-color-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-down}", - "uuid": "83223069-7a05-4b61-b1ec-2af8e712e0a2" - }, - "icon-color-blue-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "d5f07e5a-b59b-4613-9eab-eae3a74c67f2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "17dd2bcd-e66f-4c86-8335-47bd3828a2cf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "95cd46ba-7b1f-4ae4-86c1-1957c007a6a2" - } - } - }, - "icon-color-blue-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1100}", - "uuid": "2d2a2756-332e-4d78-9385-e50fd8b5edcf" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "b775d1a5-2951-4d51-9a48-265f46e8edc3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1100}", - "uuid": "c32c7711-0889-4f62-afe6-4b744166a66e" - } - } - }, - "icon-color-brown-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "59038eb6-5b6f-4fa7-8a5d-9bf78db26fa9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-700}", - "uuid": "bd6c966d-0b33-4f68-9b84-9e7ae0082805" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "afdc8658-f6a4-4205-af17-553c04cca24d" - } - } - }, - "icon-color-brown-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "5821a2cf-320d-4947-8289-2537eeef3154" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "00757309-91b4-4a6a-9897-32db62d9e94b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "bffb9e2b-565a-4774-8f57-ef03768b4176" - } - } - }, - "icon-color-brown-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-1000}", - "uuid": "16f958d5-8128-4774-b3ec-3ba5dd41f4fa" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "ac16c318-bf3a-49f7-a696-a7aaf8eb4335" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-1000}", - "uuid": "b2474c42-cecc-4f91-b3e9-a0855a79d5ed" - } - } - }, - "icon-color-celery-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-700}", - "uuid": "347e56ff-3c87-49ca-b5c3-b359f33a0203" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-900}", - "uuid": "c7a01756-b63e-4f18-b700-26b3f183e2c8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-700}", - "uuid": "c3f8622e-4ee4-4a68-be5d-c7b9f583c686" - } - } - }, - "icon-color-celery-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-800}", - "uuid": "00213ade-1251-4e7f-9020-08d3f46bb3a6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-1000}", - "uuid": "44a0a5c5-7131-42c4-859d-fa9541dff287" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-800}", - "uuid": "a32205e0-b208-4539-9fe4-5eb2d7464d91" - } - } - }, - "icon-color-celery-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-900}", - "uuid": "4d42768e-6c50-4b41-bfa9-f626119d92b0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-1100}", - "uuid": "a16feeab-27da-4d04-af0b-2a45cc14982c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-900}", - "uuid": "f9fa057e-58f4-472f-8ab7-6bae7d1d27eb" - } - } - }, - "icon-color-chartreuse-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-600}", - "uuid": "ded3802a-2b38-405d-a437-193bf1e061a0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-1000}", - "uuid": "a407df08-a00b-421a-b999-d37097debc26" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-600}", - "uuid": "6bfd7aea-dfd9-47ee-9f18-e4431886e1cf" - } - } - }, - "icon-color-chartreuse-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-700}", - "uuid": "b263dc42-bcc1-4073-a230-81707fe7f388" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-1100}", - "uuid": "a63751a9-4d3d-4dfb-9028-3aaecf11df47" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-700}", - "uuid": "6d3438e5-cc32-4c26-960d-434b24dbb1e0" - } - } - }, - "icon-color-chartreuse-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-800}", - "uuid": "dc16f7b1-8b33-42d8-a292-f6efbd3d9f43" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-1200}", - "uuid": "a8dcf645-ae32-4870-90bf-4d802837cf08" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-800}", - "uuid": "d00300aa-5990-483d-8218-229169e9cd74" - } - } - }, - "icon-color-cinnamon-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-800}", - "uuid": "fcf4219b-fa42-4693-ba34-fc5f46bfcde8" - }, - "icon-color-cinnamon-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-900}", - "uuid": "a91d68ae-30ac-496b-9558-39272e9926c4" - }, - "icon-color-cinnamon-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-1000}", - "uuid": "6cb36abc-7d86-4df0-a96d-36a4308a8ebd" - }, - "icon-color-cyan-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-800}", - "uuid": "2855caf0-9b6d-4d45-bdb8-30aab37a237c" - }, - "icon-color-cyan-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-900}", - "uuid": "2f68ac4a-be55-4fc7-b96e-987bdb5956ca" - }, - "icon-color-cyan-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-1000}", - "uuid": "c6ae865c-1938-4eec-b89c-7f793dc3f049" - }, - "icon-color-fuchsia-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "0aedb32f-f3d7-4fa9-82d2-aee9ca727cfe" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-700}", - "uuid": "ec2b1658-d174-49c9-a36a-7f80d97a1ee8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "75b0d002-84b7-4c75-8c74-3b1ff15ff10a" - } - } - }, - "icon-color-fuchsia-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-1000}", - "uuid": "fd2f3488-d5bb-4f36-8799-a0168ae8ca5c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-800}", - "uuid": "0a66c0d9-0a0a-4f0d-9bb3-cbdb2bc12842" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-1000}", - "uuid": "53acea92-bc9f-4c41-93b9-e18cde613305" - } - } - }, - "icon-color-fuchsia-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-1100}", - "uuid": "0610e1fa-387f-4018-bbb2-bda7b30c74a3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "6964ef24-8178-4513-8d9a-5240973622fb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-1100}", - "uuid": "625728db-30ec-41d7-9f6f-0ce9c0201c66" - } - } - }, - "icon-color-green-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "9a667090-665d-47b2-b000-5a9f4fe26fcf" - }, - "icon-color-green-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1000}", - "uuid": "c0acc956-e9de-469b-8919-aa0d8b762bb3" - }, - "icon-color-indigo-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "b6c15610-dc9a-4b7c-9391-247a0f4b56ff" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-700}", - "uuid": "2e4457c1-e637-4f22-909d-643dd535b5fd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "05f75802-5062-422a-8a39-f7e8f71ce17e" - } - } - }, - "icon-color-indigo-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-1000}", - "uuid": "d6a54fc4-c4d9-403a-ba71-f525d36586ec" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-800}", - "uuid": "fc9ef846-e264-498c-9b7a-be9a9164f3d3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-1000}", - "uuid": "735472d9-0220-4e7e-a06b-9f3504cad201" - } - } - }, - "icon-color-indigo-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-1100}", - "uuid": "ff60b02b-f205-48be-80c0-a362f7b72e27" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "f21187bf-8dbe-4eee-9ce9-c76d08517a6c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-1100}", - "uuid": "1f2e8832-16e1-4030-a5ef-16f5b5c663d0" - } - } - }, - "icon-color-magenta-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "3fb3630d-e7a3-4807-93c1-c5da4a8f642b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-700}", - "uuid": "7b3f5848-6a8c-47fe-aacd-ad2f1af53306" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "d0802b2a-faba-4530-8f50-dc22e6962d44" - } - } - }, - "icon-color-magenta-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-1000}", - "uuid": "b81fb79d-69dc-4bde-b3d6-661a7719a6e8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-800}", - "uuid": "23dc0d7b-fb23-460a-b9f1-7a9a7496c107" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-1000}", - "uuid": "3e368eed-b2f7-4e9e-9935-421ef0f86f9f" - } - } - }, - "icon-color-magenta-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-1100}", - "uuid": "31aa02cb-2f5f-4803-bf5d-4e97816472be" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "042aa474-5cf0-4cdc-a75d-19eac80a0ade" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-1100}", - "uuid": "ddfb3e51-e724-48b4-aecc-dcfe000eec11" - } - } - }, - "icon-color-orange-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "d035f399-5154-4f0e-b5aa-434644e19f4b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "1ea9d171-f3ba-40fd-bd0b-1e0ebaf68f01" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "41b694b3-5805-4ee7-aca0-88527dc6120b" - } - } - }, - "icon-color-orange-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-800}", - "uuid": "726e95d7-f687-4e9c-b050-2e54cc1b0b77" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1000}", - "uuid": "d35dd0cd-49b0-4430-9fe6-9dcf0e9e5874" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-800}", - "uuid": "1c3bc51c-edf8-4c2b-af93-44d7ffeb46b2" - } - } - }, - "icon-color-orange-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "cb36fbb9-e88f-4965-a67d-8a12f10fb445" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1100}", - "uuid": "4534a7d3-b2b0-4e94-8366-030ac144031c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "b00737a5-c111-42fe-9378-47a79139e11a" - } - } - }, - "icon-color-pink-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "abd32483-3555-4d1e-831b-9799db14d39c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-700}", - "uuid": "4a4d6a11-1343-40c7-b7d3-d25d6f1d4ed3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "1e0b6862-10cd-4860-9bf7-9cbce71e7f81" - } - } - }, - "icon-color-pink-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "c516dfa3-8921-47d6-99fe-976e3d93adef" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "88bf5d43-7655-43e6-8844-a94f4696bde0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "8a64d036-a935-442a-b596-5d4d0fd001a9" - } - } - }, - "icon-color-pink-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-1000}", - "uuid": "f3b7c0ba-eb0f-46af-bf89-9e1f46afa937" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "b4ead77c-aec3-4dc5-85c4-ab0e62231232" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-1000}", - "uuid": "c31819e9-6bf1-4048-94bc-ee6f04b82474" - } - } - }, - "icon-color-purple-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "7543b9c6-aea2-4dc9-ad2d-204d6f1d2185" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-700}", - "uuid": "50b28c39-4b4e-43dc-b742-e85a892e843a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "1b6ce540-0839-4ba2-bf98-51fb499113a4" - } - } - }, - "icon-color-purple-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-1000}", - "uuid": "740f2726-16e3-4011-8d2c-aaf504be8f14" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-800}", - "uuid": "2e9e7c94-5454-41d9-95e3-8e1e91c41f14" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-1000}", - "uuid": "ec923982-6694-44bc-8f75-ebe1c76ba09a" - } - } - }, - "icon-color-purple-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-1100}", - "uuid": "fbec43d7-90e6-424d-8f77-5a39ef739d7a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "0ff09a0f-33db-40ee-9b36-ed7db52aafbd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-1100}", - "uuid": "bf3e3302-4798-4b35-a37b-0d5fcd89b556" - } - } - }, - "icon-color-red-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1000}", - "uuid": "5015c992-9d52-4e30-a4cc-e605a0c99545" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "362d9053-52d9-478a-aec9-b56fd805826a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1000}", - "uuid": "ece07052-dff3-483e-a6b8-1d12b0d94d8a" - } - } - }, - "icon-color-red-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1100}", - "uuid": "e92b61d2-7c99-44ba-bc4b-94bf9cff3623" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "d44cbe6f-b3e1-4048-b26c-c98e9be970f5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1100}", - "uuid": "02527b17-485a-4a59-b62e-5aa8bfca7df7" - } - } - }, - "icon-color-seafoam-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-800}", - "uuid": "aca36c2e-6dda-4b5e-a6e1-8db1bbb9e448" - }, - "icon-color-seafoam-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-900}", - "uuid": "cdc09dab-b4cc-4034-843b-98afcc36caf0" - }, - "icon-color-seafoam-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-1000}", - "uuid": "3d4610d5-0870-4af3-8878-483218d43f92" - }, - "icon-color-silver-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-700}", - "uuid": "be16b346-ec55-4aa1-9767-0cb139dd361c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "839005ad-8e22-4e1b-a83b-1fe5be08acb2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-700}", - "uuid": "928c1a80-e248-4e00-aed8-5ddf764a5d22" - } - } - }, - "icon-color-silver-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "74b17dd6-9b4b-43a9-9c7f-4c8edc72afc9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "a6b610b6-915d-4c40-85ee-9b9fee0b5bd3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "cd0a41af-19ed-48fc-b659-d34cb37d4cef" - } - } - }, - "icon-color-silver-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "b44c8584-eec0-4cc4-b3d3-62df9b1877d9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-1000}", - "uuid": "44ddf65f-494c-4329-b17e-c791c7cfe779" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "dc071b6f-788a-4a83-b1c0-17ae536c01e7" - } - } - }, - "icon-color-turquoise-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-700}", - "uuid": "9a65bd1c-3ddf-4294-83f4-04967372c3f5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "9566904a-3610-4668-9fe4-71ece5a58398" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-700}", - "uuid": "3c39dea2-cdc4-4042-a134-7197a60ba8dd" - } - } - }, - "icon-color-turquoise-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "260edfe7-6958-4d5b-8489-9ab3ab681577" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "a727a9f5-8f36-4e50-b8a4-3383f309785f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "2aca1631-0249-47dc-aa3b-44a51f5ea220" - } - } - }, - "icon-color-turquoise-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "c87c8466-22c1-40cb-9e5e-d661cd6cdcae" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-1000}", - "uuid": "1bbe2749-ba61-4e00-871f-cb3c6decd07c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "0c3db762-fa21-497c-9a32-007e41ab24d6" - } - } - }, - "icon-color-yellow-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-500}", - "uuid": "7d52f667-63c9-4ab9-b92c-10f7f6412632" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1300}", - "uuid": "4f50d025-f259-4130-bb6c-6fc30474e99d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-500}", - "uuid": "f4edf76c-b3f4-4455-b1d5-e222fa79b146" - } - } - }, - "icon-color-yellow-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-600}", - "uuid": "94b9cfb2-1934-4ee5-88c8-0bf75c226dd3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1400}", - "uuid": "f92ad869-5610-46a4-8314-bee58a039d0d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-600}", - "uuid": "24f49675-e169-4996-9993-c4a8941e8fab" - } - } - }, - "icon-color-disabled-primary": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "12c9d145-7357-449e-a99a-1154dd5be026" - }, - "icon-color-blue-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "5f164d93-6efe-4abf-8f4c-9cb5f91bf26c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-300}", - "uuid": "29c9205e-d39d-419a-b6e1-4e0544a3ca7c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "2bfc538f-30ae-4e45-92ef-bb7ad72f1396" - } - } - }, - "icon-color-brown-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-200}", - "uuid": "40166e04-505e-47ed-b039-0a3827895c36" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-400}", - "uuid": "8da7787f-2d39-4801-a5ea-1b3e69d505a6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-200}", - "uuid": "2f1fba9a-25b3-4ac7-aaee-7d6da1292da8" - } - } - }, - "icon-color-celery-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-100}", - "uuid": "a5bfd666-a843-4b14-9b7e-1f392a34c4ba" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-400}", - "uuid": "88437eca-ac07-4a83-930a-10861a8ed839" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-100}", - "uuid": "2b519299-a5c9-47d9-bf52-51ce26410073" - } - } - }, - "icon-color-chartreuse-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-200}", - "uuid": "0b1869d0-6aca-4e20-904f-954153bb4b73" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-400}", - "uuid": "cad79edb-8add-4b83-ad3e-fcbed050e037" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-200}", - "uuid": "ec1c5d08-dd5e-40f5-adee-06ffecb36ed6" - } - } - }, - "icon-color-cinnamon-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-200}", - "uuid": "a522f597-1ed4-445c-94c4-a594bc50f9ce" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-300}", - "uuid": "cb5eed01-b2f0-4410-8a71-2bf361d61fcc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-200}", - "uuid": "61eaba25-d605-412f-ae11-5f36fd0061c8" - } - } - }, - "icon-color-cyan-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-100}", - "uuid": "ac6d3cc6-dab7-400c-82d4-bd0876d241b2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-400}", - "uuid": "a5fd0ad9-999f-469d-b224-b60e06313cdb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-100}", - "uuid": "b85aef89-a234-4386-9c46-22e2caa3b4f6" - } - } - }, - "icon-color-fuchsia-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-200}", - "uuid": "707601ab-a624-4466-9ce3-b52552b777a2" - }, - "icon-color-green-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-100}", - "uuid": "7941dc68-44bb-49d5-80ca-3c6952d2acb2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-400}", - "uuid": "176c986b-8658-4b3e-b559-4080f4fd7834" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-100}", - "uuid": "3231780c-e233-4a60-b063-1c3a383669a3" - } - } - }, - "icon-color-indigo-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-200}", - "uuid": "1c49aee1-a8a2-41ae-b709-7e2d1fbc2705" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-100}", - "uuid": "85432c93-7c00-435b-8298-2ba817cb58bd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-200}", - "uuid": "67cfb253-49f0-4a14-a83c-140324ef5bc0" - } - } - }, - "icon-color-magenta-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-200}", - "uuid": "2cf7dea9-034c-48a8-8946-d059320ced08" - }, - "icon-color-orange-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "3ceff0a2-fca9-4d73-82a8-f5098c511e17" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-300}", - "uuid": "73e28358-35bb-4643-a1b8-ae3fd3de206f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "a6f69b6d-496f-40bb-96a5-f04efa4ce8bc" - } - } - }, - "icon-color-pink-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-200}", - "uuid": "46d11573-718e-4e38-8493-f3a37a5e7d32" - }, - "icon-color-purple-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-200}", - "uuid": "5a9cdf9a-09a5-42bc-a0bf-6f187c6832c5" - }, - "icon-color-red-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "c6872759-ff54-48ef-8513-d752ec12f8ca" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-300}", - "uuid": "1fbda732-e276-4dec-8ec7-faeff6cba3a7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "12859f90-c49c-4508-bc0d-df4d9512c864" - } - } - }, - "icon-color-seafoam-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-200}", - "uuid": "975fa979-d134-4d4b-8a27-e50307925ec4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-400}", - "uuid": "39ff1a28-8c57-490f-8cf7-eb63fd3b7ebb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-200}", - "uuid": "bc3ce9f1-cde9-4609-b4ab-c78a15ac064c" - } - } - }, - "icon-color-silver-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-200}", - "uuid": "98f6376e-01b0-4646-afe1-b52c33700db9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-400}", - "uuid": "a2c48afa-59de-43af-8ec4-2c573948ae52" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-200}", - "uuid": "b2e8e8ac-001a-4a4e-bcc9-9508ba954ece" - } - } - }, - "icon-color-turquoise-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-200}", - "uuid": "a6478f6c-3a60-42e3-98f7-5cabf91e09af" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-400}", - "uuid": "3d251526-b63d-412c-bb54-712d36c73e8e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-200}", - "uuid": "a5b3d3f5-785b-4969-9389-12c1f7b2f26d" - } - } - }, - "icon-color-yellow-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-100}", - "uuid": "3cf7a8f4-9238-4f9f-9c85-97dc38de69d1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "0dd236ab-7af8-418e-88dd-0cb45cf5da13" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-100}", - "uuid": "5a5e15ab-e73b-4997-be67-39534d98e823" - } - } - }, - "icon-color-inverse-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-50}", - "uuid": "ba10ab97-0c09-4d07-ab7b-050258169d52" - }, - "icon-color-emphasized-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "fa5b0690-6ecd-4a3e-8675-ab6445df8946" - } -} diff --git a/docs/s2-tokens-viewer/tokens/layout-component.json b/docs/s2-tokens-viewer/tokens/layout-component.json deleted file mode 100644 index 13f843ee..00000000 --- a/docs/s2-tokens-viewer/tokens/layout-component.json +++ /dev/null @@ -1,11912 +0,0 @@ -{ - "checkbox-control-size-small": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "460e8170-de69-4f8e-8420-6c87a1f6f5cd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "af31c1a5-ffce-4a54-8862-3e711ca53d25" - } - } - }, - "checkbox-control-size-medium": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "86288454-7192-4e4c-b55f-fc509fc58c01" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "00fee3f7-a743-45d6-a2b6-028d5d96964a" - } - } - }, - "checkbox-control-size-large": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "839a52bc-b9ee-473f-acde-0799b4f55ded" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "b4367578-989e-438d-9a3e-7cb077f2f7c9" - } - } - }, - "checkbox-control-size-extra-large": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "4ba47ba1-c9bd-447e-8948-009d5b424e0d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "13093f8b-e38e-449f-a982-7f960bb84dfa" - } - } - }, - "checkbox-top-to-control-small": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "20518175-5bc7-4659-8007-e74339c39433" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "f254146e-f469-44b1-b0c9-1ac72e88f9e3" - } - } - }, - "checkbox-top-to-control-medium": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "dcde5d2d-60f8-4d56-bfb1-bba44a087515" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e3751526-2db9-421c-85f9-d60071aac49b" - } - } - }, - "checkbox-top-to-control-large": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "93edae08-5320-4e7e-a006-a9af1d3665ad" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "d040d2f4-9bb4-4d27-adac-40fef079d958" - } - } - }, - "checkbox-top-to-control-extra-large": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3c4217bb-91f2-4347-9f65-a0528992f600" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "b3be5ac8-2415-4490-8b4a-c08661ec84d1" - } - } - }, - "switch-control-width-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "f4d6fe1a-70bd-473a-9fa5-477865ea898e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "ca939c4d-9369-498c-81cb-61df1397f657" - } - } - }, - "switch-control-width-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "d329eda6-f13d-4a44-b962-ff06c371ed93" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "ec2f3b6b-80db-4c43-bdd2-caee98796775" - } - } - }, - "switch-control-width-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "cef839a5-2ba7-4e47-9a85-d94260a8ff10" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "38px", - "uuid": "5c7bdcc9-63f8-4c4b-b26f-97b39f53dbea" - } - } - }, - "switch-control-width-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "f3102afd-e5df-4912-9203-8226ce37fed5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", - "uuid": "4e9d9b63-989a-4b63-b74d-22b5188f8df7" - } - } - }, - "switch-control-height-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3bf75a24-5e95-4c18-9da2-b7088377fe21" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "a1dbcaf0-bbcf-444d-9d22-7f86db20303a" - } - } - }, - "switch-control-height-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "f97f0f1b-c0c2-410f-b116-86d30f4d52cf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "0d5f13f2-4d5b-4c30-b3a3-fa4fcc33b928" - } - } - }, - "switch-control-height-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "8301bfca-a086-4efd-a22f-1d348cbd6dcf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "91b828ce-8ff9-4d32-958e-a8a23ef9b345" - } - } - }, - "switch-control-height-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "2372d602-78ce-45a7-9dff-152152e55117" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "b7ae7b32-b347-4e09-9978-3b0b92a4dbab" - } - } - }, - "switch-top-to-control-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "8a907825-236c-4548-91c4-2123e095726c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "f379c453-da21-41f6-92d1-9b6bdb95fd86" - } - } - }, - "switch-top-to-control-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "0135b823-5097-43bb-9911-9f731146af3b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "68276028-41d8-49e1-b0d4-f70cd27ab149" - } - } - }, - "switch-top-to-control-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "f2c965e6-89fb-4b9d-843d-cfde31b7703d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "035e786b-17f2-488e-a049-84b257a3312f" - } - } - }, - "switch-top-to-control-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "fbc21571-970f-4bb2-8280-f6262446896b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "7e95ad9a-ca10-4f06-9c19-8dd2270cfdad" - } - } - }, - "radio-button-control-size-small": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "407304fc-7c74-4427-9032-b44ab03c07ce" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "90a2b18a-61c7-40d8-926c-d6b18a641010" - } - } - }, - "radio-button-control-size-medium": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "9de5b045-532c-48ef-872e-bd3c22f89a41" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "2eef4003-e666-48e7-b25b-8c50063ce400" - } - } - }, - "radio-button-control-size-large": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "cadf4b9e-b4d4-4ff5-808b-557864cf7dc8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "23d0a4aa-693d-4b79-b942-3898f9cf0b80" - } - } - }, - "radio-button-control-size-extra-large": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "f8f1d29b-4093-40ed-b73c-7a27e27a63a4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "cc041f48-aaa4-4c20-8990-599e0c56134e" - } - } - }, - "radio-button-top-to-control-small": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "b775d7e9-d182-4818-9ae0-b3765a0ecbf7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "02438c4c-161d-45eb-935d-b083ab830876" - } - } - }, - "radio-button-top-to-control-medium": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "dcc0155a-6bd1-4148-acaf-e255a7f4d22a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "2f805530-cefe-420a-89e6-a6a81c0faea0" - } - } - }, - "radio-button-top-to-control-large": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "309c9559-1763-4345-8090-aaa12f570889" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "41d0dde7-de34-4e99-96d0-4f727ed71673" - } - } - }, - "radio-button-top-to-control-extra-large": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "f4620f0a-43ba-4650-8640-9425ed1a1260" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "c478710f-1747-455b-998a-6fa837762905" - } - } - }, - "radio-button-selection-indicator": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "a7fc6bdb-5b9c-42d4-8f78-d34021ac0708" - }, - "field-label-text-to-asterisk-small": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "4796831f-4d3e-472c-bad8-699d4eb443ea" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "4271498d-747c-423d-87cc-761b8a181f7c" - } - } - }, - "field-label-text-to-asterisk-medium": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "7be280dc-43dc-48c3-bf0c-b53f95e76516" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "2fbc4add-e6b4-4dfa-9a7d-0de628b2f63c" - } - } - }, - "field-label-text-to-asterisk-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "997c475e-6ae5-469f-9c8e-9fedafa2b556" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "87149afe-899b-4fb6-bd7c-d2becf8117fc" - } - } - }, - "field-label-text-to-asterisk-extra-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "4140e899-8a28-4627-a91a-e6526da1bdf5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "17ba788d-da38-455d-9322-16e4f05ea923" - } - } - }, - "field-label-top-to-asterisk-small": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "7122627b-1906-424d-9cbf-261546ff3774" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "ec0c072f-50fb-4934-99fc-a2576062e7b4" - } - } - }, - "field-label-top-to-asterisk-medium": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "eb2b857d-9482-42fb-82f9-bbe7899a22b9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "6f65ad1a-4a65-4b83-af44-5bd893f3b40e" - } - } - }, - "field-label-top-to-asterisk-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "60caa810-5335-4c9f-95a7-0e60d49f43fc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "e410a804-2655-4bbc-9b66-53a5facc92ac" - } - } - }, - "field-label-top-to-asterisk-extra-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "e53ea4a5-bde5-4695-9ab8-50c2ce704019" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "5227bf07-140a-49c6-88f9-cc454d8a90c1" - } - } - }, - "field-label-top-margin-small": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "ab718f97-15c3-4b8b-aee7-b50b09ec0a33" - }, - "field-label-top-margin-medium": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "b5243f56-7985-4686-b41f-9b9b9a18b047" - }, - "field-label-top-margin-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f7dd90d8-91e6-4090-a5a9-6b30087860a4" - }, - "field-label-top-margin-extra-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "5c14d528-fe17-4b0b-a123-edbdb93fd173" - }, - "field-label-to-component": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "4738ec46-a43c-48f9-aeca-87863275dc4d" - }, - "field-label-to-component-quiet-small": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "1218beeb-1d74-4e1a-b495-38d5f07afb55", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-10px", - "uuid": "2d3e67ce-de6d-4e41-bcf8-06b09c0bcce7", - "deprecated": true - } - } - }, - "field-label-to-component-quiet-medium": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "dc00948e-3c0f-4c6b-8e3e-a7fbf396e059", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-10px", - "uuid": "074489d2-66b0-4198-94fe-9818279bbf0f", - "deprecated": true - } - } - }, - "field-label-to-component-quiet-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-12px", - "uuid": "be80f1b1-4c08-479f-a39e-28b6a64714f2", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-15px", - "uuid": "c29cfb87-34e7-4397-bfd8-23378ecbb011", - "deprecated": true - } - } - }, - "field-label-to-component-quiet-extra-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-15px", - "uuid": "d6c750dc-3117-4c1a-96bf-b94d530e912d", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-19px", - "uuid": "e1298748-d7cc-4bff-93bc-745b777fcf9e", - "deprecated": true - } - } - }, - "help-text-top-to-workflow-icon-small": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-75}", - "uuid": "91cb19ef-63fc-4d98-a61e-a5f55951f656", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-75" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-75}", - "uuid": "00334ebf-5706-4a97-b02c-9f41642c4795", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-75" - } - } - }, - "help-text-top-to-workflow-icon-medium": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-100}", - "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-100" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-100}", - "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-100" - } - } - }, - "help-text-top-to-workflow-icon-large": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-200}", - "uuid": "54cae12b-5f21-47b4-a964-6033bd025975", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-200" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-200}", - "uuid": "e2c40309-5b3d-485a-bafa-9015a5b751e7", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-200" - } - } - }, - "help-text-top-to-workflow-icon-extra-large": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-300}", - "uuid": "bec914a9-5905-40ac-bd61-a727016c1228", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-300" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-300}", - "uuid": "251c39cc-f949-4055-aecb-42fc99f9d504", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-300" - } - } - }, - "help-text-to-component": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f99eb317-ebe5-43e7-8066-982fe7a9a8aa" - }, - "status-light-dot-size-small": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "04485265-2983-4377-9ec5-f2456863a1df" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "5945e9fe-311a-4d2c-8052-ca4eae4c7c63" - } - } - }, - "status-light-dot-size-medium": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ada7bd8c-04c9-4d77-a6e8-072ff86984ae" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "a7fc9ca1-ad6d-47cb-8798-4a18ba4acc79" - } - } - }, - "status-light-dot-size-large": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "45832ec2-5f33-4861-a857-1ca2352213db" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "6554dae9-18b6-4c90-b2f4-8aeaab0724ad" - } - } - }, - "status-light-dot-size-extra-large": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" - } - } - }, - "status-light-top-to-dot-small": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "ddece3b1-7f85-4c08-b783-5bde8e31f480" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "a4f43adc-1db1-4e2f-a5d1-3ec06c62c9ff" - } - } - }, - "status-light-top-to-dot-medium": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "e2aa334e-ebb7-4e5f-a735-4f6a43b2d6cf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "321a462b-8811-4264-ac1f-4608df8f8c53" - } - } - }, - "status-light-top-to-dot-large": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" - } - } - }, - "status-light-top-to-dot-extra-large": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "899c7b7c-7405-4e29-8d42-edf41ca2943f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "b351cade-6d69-449e-908a-518793fef5b9" - } - } - }, - "action-button-edge-to-hold-icon-extra-small": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "b79597cc-5294-4555-ab78-f4200e480ac3" - }, - "action-button-edge-to-hold-icon-small": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "fa106863-0e09-44d4-9465-68cd3254ed2b" - }, - "action-button-edge-to-hold-icon-medium": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "5022d77a-9332-4bb8-bd9f-d353eed2caa3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "255a24ab-f70d-4698-8d2e-569c37c6c798" - } - } - }, - "action-button-edge-to-hold-icon-large": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "dc65074f-a923-4130-84e5-59fa5d5f4121" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "86a36757-a2d1-4263-97dc-62cf4543b3f9" - } - } - }, - "action-button-edge-to-hold-icon-extra-large": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "1c72a1bf-cfcc-4553-91c6-d7bbcf02cc5a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "b4b4710b-2073-4285-8342-31ae6712671b" - } - } - }, - "button-minimum-width-multiplier": { - "component": "button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2.25, - "uuid": "68b6ac88-d229-460d-8d59-3f5c141db358" - }, - "tooltip-tip-width": { - "component": "tooltip", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0732bd0e-c5c0-4e58-8fee-2015c1753237" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "ad2c09a6-c42e-4eef-94a3-6c2180c6e2af" - } - } - }, - "tooltip-tip-height": { - "component": "tooltip", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "481757aa-c6b5-4281-9a63-feeb1c88aec6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "70c9f65f-1e23-4c47-94dd-0c3ddde15743" - } - } - }, - "tooltip-maximum-width": { - "component": "tooltip", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "160px", - "uuid": "e5ba234a-afdd-451e-84e7-51314446cdae" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "6d7623e1-65f5-4af5-8c08-b33b093b85ae" - } - } - }, - "divider-thickness-small": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "9dcc27ef-7044-4051-97f3-2fd64a5d0a36" - }, - "divider-thickness-medium": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "3cf3e962-92f3-4334-8b92-9a1da9396c25" - }, - "divider-thickness-large": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "913cce2a-c928-4803-9bd6-3fb1e0fcbee5" - }, - "progress-circle-size-small": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2b9f6096-84e7-4430-a3a9-a9daadcd1225" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "a7fafd60-dc38-425a-b6b6-952a06d30ab4" - } - } - }, - "progress-circle-size-medium": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "2b9efe78-8384-4994-a4ab-82046f109d20" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "c380cf9b-cb59-465c-9b56-41654d3239f1" - } - } - }, - "progress-circle-size-large": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "a91ff845-aeb8-4a1b-9e4a-d34c77bb8253" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "c7719369-7d3d-4446-ade2-08abb472a985" - } - } - }, - "progress-circle-thickness-small": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "becddd13-6ef9-4abc-9468-25885b2b4b84" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "a37ef752-662b-4152-b247-0ce9fcd624e4" - } - } - }, - "progress-circle-thickness-medium": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "a3adff4d-e69e-4aa0-95ec-2019328b7d08" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "aa930d94-7874-44d7-80f1-dc431d40c4a4" - } - } - }, - "progress-circle-thickness-large": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "6331ae2c-ddf9-4de4-8df4-82b5581cf2ea" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "076b031f-5980-4112-bf0b-2cec47f54c6b" - } - } - }, - "toast-height": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "a6267318-c8b1-43d4-99b6-ca2a55e9dff4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "12c8ae92-16b9-48ec-801c-bf07785da4b3" - } - } - }, - "toast-maximum-width": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "336px", - "uuid": "9ac252c8-06dd-48a9-a3d3-ca8ccfb355dd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "420px", - "uuid": "a4de5997-1eb1-430f-9a9f-cf2637d02d34" - } - } - }, - "toast-top-to-workflow-icon": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "d10d2a55-2b4d-46b1-81e9-521d6c3578e1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "1f83245b-3d79-4326-b843-df7b6549cade" - } - } - }, - "toast-top-to-text": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "be4f24cf-9334-4fc4-aa72-e0347beecda7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "9f0688f5-128f-47c3-8585-94d704214881" - } - } - }, - "toast-bottom-to-text": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "821e8f74-d1de-4507-9ff7-ece44e535e8c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "a790fd9e-4e5f-4f4c-a3ca-832540832580" - } - } - }, - "action-bar-height": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-400}", - "uuid": "e67822de-d0cd-4b49-8e90-6c43523bb4dd" - }, - "action-bar-top-to-item-counter": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-300}", - "uuid": "73f82d09-7927-461c-b7d7-ab0bc6b3e3f9" - }, - "swatch-size-extra-small": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "9fa676c9-ccfb-47db-9ae4-348884b9b120" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "0d926e1a-080a-41ba-8bb9-ef6d0847cb77" - } - } - }, - "swatch-size-small": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "33789b22-7d2c-4620-8f45-973e734ef5b6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "c8d8e379-1e3f-4f5e-bce3-df3fc05ff16e" - } - } - }, - "swatch-size-medium": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "2e29b29f-b8b7-430a-8720-31422c6ad243" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "77be7e79-a589-4f32-9e42-ea45ed7763aa" - } - } - }, - "swatch-size-large": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "91e7d7f2-a34d-4d03-831c-75574d1b7bee" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "162c1233-3420-44a2-a270-97d0a7c23df1" - } - } - }, - "swatch-rectangle-width-multiplier": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, - "uuid": "b3157e9d-82a0-429e-b987-8c240a669af7" - }, - "swatch-slash-thickness-extra-small": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "944c49d7-e189-4daa-aca1-b0b590d78875" - }, - "swatch-slash-thickness-small": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "f626d145-7840-4958-86be-d2306b5b2233" - }, - "swatch-slash-thickness-medium": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "4e735599-f420-4b51-aa75-607046431c76" - }, - "swatch-slash-thickness-large": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "6b1b2709-de8c-450d-9299-49200208599e" - }, - "progress-bar-minimum-width": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "8dfd4f94-93cc-47dd-92d2-87d1696f4ab7" - }, - "progress-bar-maximum-width": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "768px", - "uuid": "7ba00389-a6ba-4d18-9d88-8704427ad784" - }, - "progress-bar-thickness-small": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "f8881a13-70fb-4797-a3ec-08c3c8432b5a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "ab98c47f-f2e4-4f74-8008-55c65907b6eb" - } - } - }, - "progress-bar-thickness-medium": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "0d9f1945-262b-48d0-b584-ff78ec28e012" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "d53e3ac6-6091-4c3f-9e1b-b12b716a5f95" - } - } - }, - "progress-bar-thickness-large": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f8dfa5e7-efb8-409f-8ab3-6bf3adf2199b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "4b680695-7e42-493c-889b-c76a60ab1f4f" - } - } - }, - "progress-bar-thickness-extra-large": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "71229a29-a2cf-46bc-84d4-d324bffad26b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "c15e51b3-4a5e-421e-aa4e-e0a82840f1a2" - } - } - }, - "meter-minimum-width": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "fd4f6ef0-bab2-4405-9eea-8a9b8a7dd295" - }, - "meter-maximum-width": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "768px", - "uuid": "63bfb4da-4aaf-49c6-9328-16c636cf0bf9" - }, - "meter-width": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "ceeda4da-026b-496c-8abd-7081aceae262" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "dc5f4966-4ddd-4e9a-a748-370d8eaae568" - } - } - }, - "meter-default-width": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{meter-width}", - "deprecated": true, - "deprecated_comment": "Token renamed, use `meter-width`", - "uuid": "2633d29d-8a14-48e8-977c-bdb9a53b3bd5" - }, - "meter-thickness-small": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "0013e354-3f26-41a5-8486-2577045872f6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "eb9c3cff-5a1a-4832-a623-6ab258b81d37" - } - } - }, - "meter-thickness-large": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "06751674-2222-433d-9dc6-40f14b2add6c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c9052808-918e-4368-b113-28f928104eda" - } - } - }, - "in-line-alert-minimum-width": { - "component": "in-line-alert", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "8007ebd8-fd67-4dc2-8444-9e6a50c88675" - }, - "tag-top-to-avatar-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cf1239b1-495a-482c-8aeb-3b98c6b75583" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "a2c40238-1fda-4482-a419-b8092a385c9b" - } - } - }, - "tag-top-to-avatar-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "394343df-fb5d-44be-b6d1-9975ab8a4156" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8dbabe33-52e7-4dc1-b2e3-81c1c62d98cb" - } - } - }, - "tag-top-to-avatar-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "57de6911-6f5f-4a0d-9606-e7584a10d7f4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9881ad7c-e9df-40b1-a368-4f8185042c3f" - } - } - }, - "tag-top-to-cross-icon-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "c9e5e973-4942-414e-b128-5569f62453a2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "d93e04b9-1901-4ec4-947a-62c84205e61e" - } - } - }, - "tag-top-to-cross-icon-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "1bfd3452-93c8-424a-99e4-55e5ecbee90b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ac7b17a2-99ef-45b3-ab3b-4d3eeaf99fb9" - } - } - }, - "tag-top-to-cross-icon-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "e335436a-190c-4417-86f4-b7266c093377" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "af69e3d1-92b6-4e62-93f2-c1f1f10f0a63" - } - } - }, - "popover-tip-width": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "c4bc3596-1fbc-4b08-85af-6bd8142e499a" - }, - "popover-tip-height": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "5960406b-973d-4e1f-9bb4-2c7a22422c5b" - }, - "popover-top-to-content-area": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{popover-edge-to-content-area}", - "uuid": "f97488e8-b1c1-442e-b98c-0ae6cff0b774", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use popover-edge-to-content-area instead" - }, - "popover-edge-to-content-area": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-100}", - "uuid": "2a3bd47e-fde5-41d3-a585-f970bdefaf07" - }, - "menu-item-label-to-description": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{menu-item-label-to-description-medium}", - "uuid": "628cf42f-eb40-49b0-b110-3340421d4502", - "deprecated": true - }, - "menu-item-edge-to-content-not-selected-small": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "033fb47f-30d8-4ff2-9825-a3318ca2118b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "de2ef572-54a2-46c2-ad1d-60468fbe6090" - } - } - }, - "menu-item-edge-to-content-not-selected-medium": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "ac4c8abe-abca-4c6f-82e7-ed7fae0c761d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "5faa4858-5590-40d4-bd12-b4c839908c4c" - } - } - }, - "menu-item-edge-to-content-not-selected-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "38px", - "uuid": "bc6a7e9d-b84c-4bf3-9a63-a08047deb41c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "47px", - "uuid": "90385dcc-ea45-466f-ba4d-a1b13f6a079c" - } - } - }, - "menu-item-edge-to-content-not-selected-extra-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "45px", - "uuid": "2480bdaf-ac18-4f67-9a0b-f92200fb31d7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "54px", - "uuid": "3385c12f-199b-4e9d-b2e2-ef6e2658d180" - } - } - }, - "menu-item-top-to-disclosure-icon-small": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8e4b2873-fb57-42d6-8b7b-91fd270c048e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "eb9cf950-cba2-4fb8-a115-8a4c0ddb00d0" - } - } - }, - "menu-item-top-to-disclosure-icon-medium": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "0ed8f599-b4c1-4ac5-b2b0-60db06a98a88" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "e0468683-b2d2-4839-9ad8-46963d7402fc" - } - } - }, - "menu-item-top-to-disclosure-icon-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "bceffb12-72a3-40eb-98a5-3d5fb4d3b627" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "bda3ee60-8f9a-41b2-a8a2-894aed3b3bed" - } - } - }, - "menu-item-top-to-disclosure-icon-extra-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "63919dd9-0dfa-4e6f-ab89-8a24fc91061b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "77e97b70-ef7e-4228-8d91-0ff9d9d2b063" - } - } - }, - "menu-item-top-to-selected-icon-small": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "fbe45d1b-f4b9-40d1-965f-38abe057dc69" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "943a0b43-6c91-40a3-a680-318a934bf6ef" - } - } - }, - "menu-item-top-to-selected-icon-medium": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "8fb8ad12-9bb9-417f-8d0d-7323455cfb7a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "61e906e3-6daa-4841-b4f0-54939157a50b" - } - } - }, - "menu-item-top-to-selected-icon-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "ccfed193-e366-4b13-806c-0cc18e2a87b4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "f84569c5-bb63-4eb1-8193-1130e88e7e5b" - } - } - }, - "menu-item-top-to-selected-icon-extra-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "7be78bf9-a761-45a4-b764-b88e6209440b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "3ff6cb7a-20cb-4b25-a367-7e4497d0f237" - } - } - }, - "menu-item-section-divider-height": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "dac5c077-b948-434b-91bd-0759c2414007" - }, - "slider-track-thickness": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b", - "deprecated": true - }, - "slider-control-height-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "cf748652-099a-4022-ae68-0e5dcb8eff9b", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "19adc707-4fc6-40f0-a972-340d6c935908", - "deprecated": true - } - } - }, - "slider-control-height-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "dd3b649d-12f8-427b-95a6-a4964d92d3b0", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "7306fc00-67fd-4ccd-aec3-7a14e092da5e", - "deprecated": true - } - } - }, - "slider-control-height-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "320abda8-9fe8-4f78-87d6-3f1be921e880", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "0926d8f3-bdd6-4dde-89d0-6d5d7ab9f094", - "deprecated": true - } - } - }, - "slider-control-height-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "fd74d5a5-b966-4d26-abca-58c7a21f8136", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "c5d47ebf-c83f-43c3-b2f2-f4d51c40960b", - "deprecated": true - } - } - }, - "slider-handle-size-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "1384d419-bfad-44d7-847c-a0f2c195fb93", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "7feb3d57-59fb-4095-966e-e8ca0e91442f", - "deprecated": true - } - } - }, - "slider-handle-size-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a8a02181-c797-461d-a666-a63f7535a096", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "278fc618-f6c1-4d30-bf85-075654079003", - "deprecated": true - } - } - }, - "slider-handle-size-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "3df3c866-faf0-43db-8c18-f442e7f94822", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "2a3fb9b0-d701-4e86-8180-9d81f68e91d5", - "deprecated": true - } - } - }, - "slider-handle-size-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "10ccce0d-5a2c-414e-8055-0be76709c180", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "413dc697-1f14-47c8-a7f2-e52254513e6e", - "deprecated": true - } - } - }, - "slider-handle-border-width-down-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "c9b7d8d9-c5ba-4d97-a03b-a214104ede23", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "683fb538-290c-423f-990b-d7134e485f51", - "deprecated": true - } - } - }, - "slider-handle-border-width-down-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "63c65cd6-a2c2-4430-a1e9-cf82ae0a3f25", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "25959ff8-6c2f-4612-8d69-b95bfe485ce4", - "deprecated": true - } - } - }, - "slider-handle-border-width-down-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "525e7d74-2bc0-48ac-85ca-b07335819a31", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "3bf8805b-b4f7-4d0d-af85-d227d6380539", - "deprecated": true - } - } - }, - "slider-handle-border-width-down-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "47d025e2-0b26-4ebc-9b46-3cd1e470b9bc", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "feac9f02-b52a-4694-a5d4-4b1930ab4f07", - "deprecated": true - } - } - }, - "slider-handle-gap": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "1a257268-32e9-4c5c-8477-32a724ff1d42", - "deprecated": true - }, - "slider-bottom-to-handle-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "bf2e4550-f97e-4bd2-91e8-b0ddb5a8abe2", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "3b96ab4f-6628-4ebd-aba8-2837fce04709", - "deprecated": true - } - } - }, - "slider-bottom-to-handle-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "238ebdc2-e51c-459d-8cc7-abfeafed6451", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "5030babb-0017-4784-84ad-d3aaacf6fa05", - "deprecated": true - } - } - }, - "slider-bottom-to-handle-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "be9aed61-c7a1-4dce-80a7-07c9ecef1fd9", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3915ff73-11dd-4389-8d81-2f540ab060f4", - "deprecated": true - } - } - }, - "slider-bottom-to-handle-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "155b6273-1661-4ef5-85c0-a1688ce1ee72", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "e04d9975-4a54-416b-b5fa-87f3ae930204", - "deprecated": true - } - } - }, - "slider-control-to-field-label-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "cbf9c42b-c14e-440d-97ad-3c937c464446" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "d20768dd-dbf4-48a9-8cc8-3370fa6ef810" - } - } - }, - "slider-control-to-field-label-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-12px", - "uuid": "b257bf97-d632-4488-a954-57b16bcf18b9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-16px", - "uuid": "20a8d579-038e-4432-b271-8e44b83a9aa1" - } - } - }, - "slider-control-to-field-label-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-16px", - "uuid": "a4be5828-2176-42e7-97de-1f80e7dc08bb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-20px", - "uuid": "f4fc7ec7-cc02-4ff4-bd9a-f05f9bd59c1d" - } - } - }, - "slider-control-to-field-label-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-20px", - "uuid": "309b149c-306a-49ee-b14c-a0eb4826e3b1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-28px", - "uuid": "9be47810-7a07-4885-a86d-647f5f36d7e5" - } - } - }, - "picker-minimum-width-multiplier": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, - "uuid": "67b68a30-ae00-4da2-9730-99196a2eaf96" - }, - "picker-visual-to-disclosure-icon-small": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "4bcebd07-28a8-401d-9072-3b2ac22e8b63" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "269725c9-3462-4132-8487-95dd61814448" - } - } - }, - "picker-visual-to-disclosure-icon-medium": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f83b0313-ba78-4c98-be6e-702b58956589" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c620ab2b-256d-409a-a80c-7d7c2295efc8" - } - } - }, - "picker-visual-to-disclosure-icon-large": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "2f22005b-305b-4629-bc03-10d81e36ce78" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "47f5a27f-4039-4668-bb21-aafb9dcb82fb" - } - } - }, - "picker-visual-to-disclosure-icon-extra-large": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "de09427a-eef3-4360-a912-0b0d5602d4a4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "0ac097c8-020e-4a7b-b692-59dfdf07e3f8" - } - } - }, - "picker-border-width": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-100}", - "uuid": "69c28762-f456-4641-b6ce-7cb295e3a27d" - }, - "picker-end-edge-to-disclousure-icon-quiet": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{picker-end-edge-to-disclosure-icon-quiet}", - "deprecated": true, - "deprecated_comment": "Use `picker-end-edge-to-disclosure-icon-quiet` instead", - "uuid": "c8bd227d-c72b-4f6a-9d93-0b595821dee0" - }, - "picker-end-edge-to-disclosure-icon-quiet": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "03da68d8-cd87-4e29-9aaf-ab467594ec2b" - }, - "text-field-minimum-width-multiplier": { - "component": "text-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, - "uuid": "875bbeaf-b4b7-41b9-8e6f-d6a57ec03049" - }, - "text-area-minimum-width": { - "component": "text-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "112px", - "uuid": "69694a85-5f31-43b4-8044-c0f08c83d618" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "140px", - "uuid": "c89bcff3-23ce-405c-a776-3ece7a2ac342" - } - } - }, - "text-area-minimum-height": { - "component": "text-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "71bc5e67-900e-4e32-8109-a4c18da89348" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "cb7270a7-8075-435c-81a5-469ef43860c0" - } - } - }, - "combo-box-minimum-width-multiplier": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2.5, - "uuid": "eabcc77a-f263-43ed-9944-9daa78a56b66" - }, - "combo-box-quiet-minimum-width-multiplier": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, - "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", - "deprecated": true - }, - "combo-box-visual-to-field-button-small": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "combo-box-visual-to-field-button-medium": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "combo-box-visual-to-field-button-large": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "combo-box-visual-to-field-button-extra-large": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "combo-box-visual-to-field-button-quiet": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "thumbnail-size-50": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0578d5e5-9c2d-46f2-9268-85bdf566b3a5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "7f33676b-63dd-4d16-b7e1-36520ade716d" - } - } - }, - "thumbnail-size-75": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "20706cc7-9d07-4938-8328-debd3ab8d822" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "852fc55b-beb7-428c-bc0c-452abc204de3" - } - } - }, - "thumbnail-size-100": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "46dd2eca-598a-45e3-8c7d-c6cf17e148bf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "545604c8-484f-4697-907c-31e2b2cb46d0" - } - } - }, - "thumbnail-size-200": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "ec457831-d272-4809-a84a-f1e9dcaec495" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "0e548378-9633-49d2-90d8-b40e1ba7c98e" - } - } - }, - "thumbnail-size-300": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "95c5905f-b209-4e84-881f-13ea85f12d87" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "8f4dd02c-d3eb-4654-aea4-b3921048cdbe" - } - } - }, - "thumbnail-size-400": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "7ee6d5ae-eb01-49e1-93ba-df3e7c25d876" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "b0351cf7-f0df-4044-ab26-5b6649ea2e1f" - } - } - }, - "thumbnail-size-500": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "87234a25-8f6d-457c-9d3f-363930fec12c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "1798b58e-fce4-411d-ba8d-75006fa4f53e" - } - } - }, - "thumbnail-size-600": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "d533a543-9622-4c43-92a6-82dd5eebcc64" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "543dcd25-42cc-4198-b4ba-ba5524b08691" - } - } - }, - "thumbnail-size-700": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "d6aaa2c4-d213-44de-9bae-742d26df8765" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "5eab16f9-5537-4a14-958d-d96200c5723f" - } - } - }, - "thumbnail-size-800": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "8cee2b4d-48c8-45aa-803b-5d1cd9027fcf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "94ca9817-988a-4e4f-9163-954d29204049" - } - } - }, - "thumbnail-size-900": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "5b9fb77d-8a2e-4e1c-ba86-475cd66b4202" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "97f11dd2-0173-464c-9eef-c260c9e8cf22" - } - } - }, - "thumbnail-size-1000": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "48959be8-02f9-45b9-8190-af60c93cbb6c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "cfbf3ec4-f51d-4a50-b81c-765fff84ce14" - } - } - }, - "alert-dialog-minimum-width": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "7d066c2d-ea59-483d-b8a3-6a9b9e35eedd" - }, - "alert-dialog-maximum-width": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "480px", - "uuid": "45258afa-543b-4fbc-a621-677d8081c2f1" - }, - "alert-dialog-title-size": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-dialog-title-font-size}", - "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197", - "deprecated": true, - "deprecated_comment": "Replace with alert-dialog-title-font-size" - }, - "alert-dialog-description-size": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-dialog-description-font-size}", - "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599", - "deprecated": true, - "deprecated_comment": "Replace with alert-dialog-description-font-size" - }, - "opacity-checkerboard-square-size": { - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use opacity-checkerboard-square-size-medium instead.", - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{opacity-checkerboard-square-size-medium}", - "uuid": "9ddf2e73-ad74-46d7-a79d-fe961b06dbbd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{opacity-checkerboard-square-size-medium}", - "uuid": "879360e9-a7b0-47e0-bc4a-931a12877014" - } - } - }, - "opacity-checkerboard-square-size-medium": { - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "ead3f34f-55b1-4012-a4af-0f7fbf226020" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "cc6fdec6-c03a-4691-805f-b60d199bb60d" - } - } - }, - "contextual-help-minimum-width": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "268px", - "uuid": "83be73fe-50bc-4be8-969c-0361a816225b" - }, - "contextual-help-title-size": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{contextual-help-title-font-size}", - "uuid": "5358fd6c-d9a0-4caa-a85e-af82ed82efaf", - "deprecated": true - }, - "contextual-help-body-size": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{contextual-help-body-font-size}", - "uuid": "e458fa68-ab9c-4441-a7d5-a02f42df1cae", - "deprecated": true - }, - "breadcrumbs-height": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "2d39863c-6987-413c-90d8-07fcc506a0d4", - "deprecated": true - }, - "breadcrumbs-height-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "8393f599-37e8-484a-a1c6-0934ce15a507", - "deprecated": true - }, - "breadcrumbs-height-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "237ff958-a86d-4632-aa7d-504a697509c3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "90px", - "uuid": "5e7426da-1a1e-4d37-8c96-4fdac06bfad5" - } - } - }, - "breadcrumbs-top-to-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-200}", - "uuid": "d084038e-bc31-43be-99ee-13cf727eaf9d", - "deprecated": true - }, - "breadcrumbs-top-to-text-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-100}", - "uuid": "b19547e2-bd8f-435d-b726-4f2ce6a83984", - "deprecated": true - }, - "breadcrumbs-top-to-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "138070fe-1f06-48b4-ac49-f8ff117c5f42" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "ea82fc23-82e7-4116-a8bb-186a253675ad" - } - } - }, - "breadcrumbs-bottom-to-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-200}", - "uuid": "f0e6a20d-8c2d-4aa3-9060-b6ca66aa7943", - "deprecated": true - }, - "breadcrumbs-bottom-to-text-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-100}", - "uuid": "70a356be-c304-4bb4-a9df-97806931f089", - "deprecated": true - }, - "breadcrumbs-bottom-to-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "5a78f5a4-ceee-4854-96d4-b61d76cc522b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "a51a1142-e38e-4055-bd45-ad2bd0045880" - } - } - }, - "breadcrumbs-start-edge-to-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-start-edge-to-text-large}", - "uuid": "a0542dab-98fb-45d8-b4a0-79cfd2cc4f1c", - "deprecated": true, - "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-start-edge-to-text-large." - }, - "breadcrumbs-end-edge-to-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "99ef1a0d-5fe1-4b62-9609-8929e7a3bf9c" - }, - "breadcrumbs-top-text-to-bottom-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "3a89734d-4fcc-43cf-9b77-b2f6d3732391" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "b93aad22-aff0-46d5-b54e-17891f02124a" - } - } - }, - "breadcrumbs-top-to-separator-icon": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-top-to-separator-large}", - "uuid": "15e56281-5fc1-4b59-b815-fc333231e364", - "deprecated": true, - "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-top-to-separator-large." - }, - "breadcrumbs-top-to-separator-icon-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-top-to-separator-medium}", - "uuid": "a63e8df1-124f-4f3e-9e1b-ba422b8d8257", - "deprecated": true, - "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-top-to-separator-medium." - }, - "breadcrumbs-top-to-separator-icon-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-top-to-separator-multiline}", - "uuid": "6b310160-ab2e-40fd-9216-21ddcb36b575", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-separator-icon-to-bottom-text-multiline}", - "uuid": "eb3b2566-6fc1-4a2c-a8cf-e40af3d34715", - "deprecated": true - } - } - }, - "breadcrumbs-separator-icon-to-bottom-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-separator-to-bottom-text-multiline}", - "uuid": "56dd2fd0-c7a3-4f2c-bda9-8e6ba6d99e6c", - "deprecated": true - }, - "breadcrumbs-truncated-menu-to-separator-icon": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-truncated-menu-to-separator}", - "uuid": "1fe2a3df-3179-4c4a-8d1f-de41297b6d74", - "deprecated": true - }, - "breadcrumbs-top-to-truncated-menu": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "751734bd-1c58-4222-bbd8-8b2349f2fbd2" - }, - "breadcrumbs-top-to-truncated-menu-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-top-to-truncated-menu}", - "uuid": "e0aba287-799f-4621-97cb-563352002a20", - "deprecated": true - }, - "breadcrumbs-start-edge-to-truncated-menu": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "b1fba444-c281-4be4-bded-4852b551cfee" - }, - "breadcrumbs-truncated-menu-to-bottom-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "2285d870-68ec-469f-a034-2fdeb31e33f0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "154bce30-bfe2-445b-bbdd-69efce5565ae" - } - } - }, - "avatar-size-50": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "60fd0b38-3bad-4a0f-8a69-d4cf79b635ff" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "6f6fae3d-eafd-41d7-a863-b2f0b57240ab" - } - } - }, - "avatar-size-75": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "6aa2d529-0e10-4eaf-8786-f38e04e4d438" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "f23636e9-93e2-444d-a95b-1311a7e074f3" - } - } - }, - "avatar-size-100": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "f3293ec2-befd-49e8-a280-b5a1827aa40c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "a2833b95-ba74-4caf-89e6-8294465d2780" - } - } - }, - "avatar-size-200": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "a17f3911-00ad-4d52-a474-dc5d4e3341d1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "7bfa97a1-39a8-4a30-af13-31ce1393098a" - } - } - }, - "avatar-size-300": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "337f89c8-5b8a-4cd9-a32d-31f2d9804b2e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "b0bd14f7-9642-4e20-90c4-68f38a53e72c" - } - } - }, - "avatar-size-400": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "f7ee2f39-d2ea-44ce-a5e6-e9a2bb8af52e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "44237baf-1128-445d-8337-a943c6ac0019" - } - } - }, - "avatar-size-500": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "9088ecf5-e278-48fe-a7cc-bdf77d15772f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "db33d97e-15e4-4248-a8cf-4b69d745a2e0" - } - } - }, - "avatar-size-600": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "15634a63-05f3-4fb8-989a-cb3ad46b8946" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "9ea7c014-2c8d-403f-ad7f-fa3c08a3a46d" - } - } - }, - "avatar-size-700": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "92260f9e-ad2a-4e46-ad65-d83d99f7e7b7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "0bec4f0f-efb2-44f9-a131-28f8fe248c40" - } - } - }, - "avatar-size-800": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "4c3c7ee0-637c-4c0f-b79b-ba8d4f8aaf9d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "99cf09f1-da56-4961-a805-723b68f718c2" - } - } - }, - "avatar-size-900": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "531b56b5-3abd-4bcc-a4fa-9cceb08b0b8d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "e774036a-23b9-4d74-b878-5d8edf20355f" - } - } - }, - "avatar-size-1000": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "7f677464-22fe-47c5-b4da-e6c60740aafe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "c723eb21-c020-40d5-a225-5857c8b4f0c9" - } - } - }, - "avatar-size-1100": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "63e8bd84-a7e2-4aed-9ac8-44ae2fe70424" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "371af425-26e6-4891-a195-b4dbee5e17b9" - } - } - }, - "avatar-size-1200": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "d8af9c52-b267-4c77-8ca2-ffa5dc27a45e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "88px", - "uuid": "49075645-054f-4b42-8b8a-7fa4971b2ca9" - } - } - }, - "avatar-size-1300": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "88px", - "uuid": "77d45064-5013-417e-9663-a91e97e40d01" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "96px", - "uuid": "b8372421-023d-4d86-b792-eb1c9fd8230c" - } - } - }, - "avatar-size-1400": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "96px", - "uuid": "974ccab6-b9d9-4101-ba6c-69dd75b8602f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "104px", - "uuid": "c46a76c1-77af-4e15-96e1-9e7f16000de5" - } - } - }, - "avatar-size-1500": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "104px", - "uuid": "2ab3cbdf-5791-41ca-b6e3-66d5a4970f32" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "112px", - "uuid": "06359a10-02d1-4886-a841-940b5ffbb0f0" - } - } - }, - "alert-banner-minimum-height": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "450405f8-4f08-4151-85dd-730b669a7ed0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "6d313800-3020-45f8-969d-63e81057ff97" - } - } - }, - "alert-banner-width": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "832px", - "uuid": "713e9ae2-e226-45ab-bce9-869533253ee7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "680px", - "uuid": "b02e6302-d443-4b94-bda9-f4cc90b3d4ca" - } - } - }, - "alert-banner-to-top-workflow-icon": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-banner-top-to-workflow-icon}", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use alert-banner-top-to-workflow-icon instead", - "uuid": "42b40d65-eed4-432e-8ede-74d89905d131" - }, - "alert-banner-top-to-workflow-icon": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "fbe047c4-0346-4b81-bdf6-6565cede7a28" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "402c755b-322c-4ea0-856c-ca209bdaa8ec" - } - } - }, - "alert-banner-to-top-text": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-banner-top-to-text}", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use alert-banner-top-to-text instead", - "uuid": "8fefedaf-6e95-4a14-a8ba-08381f57bfeb" - }, - "alert-banner-top-to-text": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "1d289972-d5ba-41e8-8935-e8c83afb15cf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "8db02117-b543-4b3e-b0ff-203e9a821708" - } - } - }, - "alert-banner-to-bottom-text": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-banner-bottom-to-text}", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use alert-banner-bottom-to-text instead", - "uuid": "e2bd6435-6fbd-4030-9ff5-b034438b8d8a" - }, - "alert-banner-bottom-to-text": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "e19fdd96-44a4-407b-b2b1-01001684fc84" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "5f2b2bc1-ebb0-46dd-a563-58df6307996d" - } - } - }, - "rating-indicator-width": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "f0958cee-9688-43db-9542-1aef164f9dfe", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "dce9ff1e-06d1-49a5-817f-5319f4ab15e2", - "deprecated": true - } - } - }, - "rating-indicator-to-icon": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "b132d948-bec9-4a29-b281-e77801ce5a7c", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "8e13ea1d-8000-485e-8700-5522cc71b95c", - "deprecated": true - } - } - }, - "color-area-width": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "8fcf30ee-73e1-4f54-8975-5467dedade29" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "e5daae6b-7040-4e80-a251-db4c8c79e113" - } - } - }, - "color-area-minimum-width": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "19ff1ba5-a351-4427-bf2e-4e212dde3d3c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "126cd0b8-55cc-489c-9582-fddde76b431c" - } - } - }, - "color-area-height": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "993f90f6-22a6-49ec-a8e6-7a8b904d42a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "552a014a-c590-48f8-98dc-26849b62c3ab" - } - } - }, - "color-area-minimum-height": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "73c558f3-2a1c-4c1d-9b17-cfb49f510070" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "9b84d54e-2b10-4502-b072-ded2a8bf9cb3" - } - } - }, - "color-area-border-width": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-100}", - "uuid": "78fff16d-d6fe-4a74-98bc-97c56e352250" - }, - "color-area-border-rounding": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-size-small}", - "uuid": "ab656bf4-8814-42fa-9036-b1e67159e4e1" - }, - "color-wheel-width": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "d4cdb77e-54b8-4bcf-97b1-992287af2690" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "81d866f0-e2a6-4f27-bb22-6675cce4e937" - } - } - }, - "color-wheel-minimum-width": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "175px", - "uuid": "647244c3-b071-45c1-94f7-3be32cfebabe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "219px", - "uuid": "6733cd28-a949-40f7-bd36-034af9c0261f" - } - } - }, - "color-wheel-color-area-margin": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "4b6bca16-ea29-4d6c-81cf-9005b9a3b5e5" - }, - "color-slider-length": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "11442823-3e61-425a-a24b-a4a0747a06c4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "c42de1ce-088a-4918-a7dc-36507c8acedf" - } - } - }, - "color-slider-minimum-length": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "54aad7a1-df6a-414a-82b4-7976c912a8e5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100px", - "uuid": "120308f7-4220-420e-b836-20176a8184b7" - } - } - }, - "color-slider-border-width": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "2b907cad-7534-411b-b3bf-ab89a3712ad8" - }, - "color-slider-border-rounding": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-size-small}", - "uuid": "991541a2-df44-4f32-90a5-de698adf5db3" - }, - "floating-action-button-drop-shadow-blur": { - "component": "floating-action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "82e8cf04-7eda-4f36-8d2c-fda63241c3de" - }, - "floating-action-button-drop-shadow-y": { - "component": "floating-action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "a4ddc1a6-1367-4153-bb7c-c217d16d10f4" - }, - "illustrated-message-maximum-width": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-vertical-maximum-width}", - "uuid": "0e464925-5524-4fcc-a2f1-54ef42a2990a", - "deprecated": true - }, - "illustrated-message-title-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-large-title-font-size}", - "uuid": "365ec548-431b-4e1e-9f9d-7b04d337f001", - "deprecated": true, - "deprecated_comment": "Use illustrated-message-medium-title-font-size instead" - }, - "illustrated-message-cjk-title-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-large-cjk-title-font-size}", - "uuid": "e77279df-bc62-441a-8a30-5faa41d0df10", - "deprecated": true, - "deprecated_comment": "Use illustrated-message-medium-cjk-title-font-size instead" - }, - "illustrated-message-body-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-large-body-font-size}", - "uuid": "4140710f-ae31-4ae3-b8b6-2d3eb6a1ae78", - "deprecated": true, - "deprecated_comment": "Use illustrated-message-medium-body-font-size instead" - }, - "search-field-minimum-width-multiplier": { - "component": "search-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 4, - "uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b" - }, - "color-loupe-height": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "0f7e8b9e-99e5-4f5a-ae80-99f65f4c4e51" - }, - "color-loupe-width": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "889e2495-b882-4aa3-8a5b-1a71d44edde4" - }, - "color-loupe-bottom-to-color-handle": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "92beba60-f61d-426a-a864-203dca7244a0" - }, - "color-loupe-outer-border-width": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-200}", - "uuid": "51cd5039-1319-451a-b13f-bb3a218238a5" - }, - "color-loupe-inner-border-width": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "b3900f89-0a7a-4c47-a6d9-ca8aa19b9bfb" - }, - "card-minimum-width": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{card-minimum-width-default}", - "uuid": "55db9f3d-621d-4d23-b3d0-c0f2b0f3f9b0", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use card-minimum-width-default instead." - }, - "card-minimum-width-default": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100px", - "uuid": "3a11949c-f1ac-490b-8416-f4883402d105" - }, - "card-preview-minimum-height": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "130px", - "uuid": "58eb5be8-644f-448e-99b9-94d1fbb93240" - }, - "card-selection-background-size": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "496fd060-70a9-48d0-948f-593b81847199" - }, - "drop-zone-width": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "428px", - "uuid": "2097b13e-94b3-4a06-a0af-c7d8420d1273" - }, - "drop-zone-content-maximum-width": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-maximum-width}", - "uuid": "b8d0db71-9a25-46fc-b77a-037fcf86be8e", - "deprecated": true - }, - "drop-zone-border-dash-length": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a596af57-256f-4445-b91f-36e47bfb2d95" - }, - "drop-zone-border-dash-gap": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "47c15433-53d3-425b-8b87-ea234701f781" - }, - "drop-zone-title-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-zone-title-font-size}", - "uuid": "edc68bfe-7ad3-4a12-81fa-ded8fb6fc2e3", - "deprecated": true, - "deprecated_comment": "Use drop-zone-title-font-size instead" - }, - "drop-zone-cjk-title-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-zone-cjk-title-font-size}", - "uuid": "013387e8-8925-4bb4-a8ee-94420141fde9", - "deprecated": true, - "deprecated_comment": "Use drop-zone-cjk-title-font-size instead" - }, - "drop-zone-body-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-zone-body-font-size}", - "uuid": "bb3fee51-24cc-4643-9f22-fa1592ab2457", - "deprecated": true, - "deprecated_comment": "Use drop-zone-body-font-size instead" - }, - "coach-mark-width": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "296px", - "uuid": "49d1e2be-3aa2-4515-ba54-7f6cf3ab007c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "216px", - "uuid": "b3f14387-44fd-43d3-a152-c8e691ef87df" - } - } - }, - "coach-mark-minimum-width": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "296px", - "uuid": "9f413341-5ed5-4cd0-8348-1c7141dcab8d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "216px", - "uuid": "9004d69e-5726-42f5-a4d0-de09db2de784" - } - } - }, - "coach-mark-maximum-width": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "380px", - "uuid": "07cdeb95-d368-4ed1-ba29-6b9ddeae1396" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "248px", - "uuid": "7f8346b2-f8bf-441d-8412-2a2a28cf4b90" - } - } - }, - "coach-mark-edge-to-content": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-400}", - "uuid": "d5a3e2c7-f717-4436-91a3-3ab34aebd48e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-300}", - "uuid": "11fb0ab2-d6a0-4da8-9c83-c1f6b918406a" - } - } - }, - "coach-mark-pagination-text-to-bottom-edge": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "33px", - "uuid": "d2ff2d4f-058e-412b-9e16-1725d6d29e25" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "cd48e6b7-a4d8-4a22-8d65-531d770a9898" - } - } - }, - "coach-mark-media-height": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "222px", - "uuid": "f6381a33-ac4e-4ff9-86a3-183c857772ad" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "162px", - "uuid": "45b31e46-b878-40a2-a28a-91c480f45253" - } - } - }, - "coach-mark-media-minimum-height": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "166px", - "uuid": "e62c5a76-685c-4b48-98bb-746d6dd4b10e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "121px", - "uuid": "53703e12-f837-4573-bd44-e4727ed2aeaa" - } - } - }, - "coach-mark-title-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{coach-mark-title-font-size}", - "uuid": "331604db-3f28-472e-810d-9010ed2c8e33", - "deprecated": true, - "deprecated_comment": "Replace with coach-mark-title-font-size" - }, - "coach-mark-body-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{coach-mark-body-font-size}", - "uuid": "eba9f466-deda-48d5-a120-14419d5a670f", - "deprecated": true, - "deprecated_comment": "Replace with coach-mark-body-font-size" - }, - "coach-mark-pagination-body-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{coach-mark-pagination-body-font-size}", - "uuid": "df8bc8ae-b6fa-4414-93b7-c89d8097fe11", - "deprecated": true, - "deprecated_comment": "Replace with coach-mark-pagination-body-font-size" - }, - "accordion-top-to-text-compact-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "d6cc404c-af92-43be-88e3-407fdcb6e068" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cfc8d280-5ea0-47f2-bdcb-ae5e93627498" - } - } - }, - "accordion-top-to-text-regular-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-top-to-text-small}", - "uuid": "4f6e49d2-9ab8-4548-aae4-eed45a4003b9", - "deprecated": true - }, - "accordion-small-top-to-text-spacious": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "229fa20e-6d13-40b0-b19f-5cf6386f81ac", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use accordion-top-to-text-spacious-small instead" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "bef73b91-db4f-4532-9f4d-f5a81ead625d", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use accordion-top-to-text-spacious-small instead" - } - } - }, - "accordion-top-to-text-compact-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "484c9603-07f1-4ba6-b1bf-7cfaec5d1594" - }, - "accordion-top-to-text-regular-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-top-to-text-medium}", - "uuid": "48db5aeb-6752-4267-89c7-48ed84692ec8", - "deprecated": true - }, - "accordion-top-to-text-spacious-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "19c91104-bdf4-4969-8d92-c9cd47d39d13" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "63602a66-5f96-4e6a-8bf0-2ac03321a577" - } - } - }, - "accordion-top-to-text-compact-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a73cc1b0-e31d-4d42-bb89-2e283fe9c59b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "c09ca9bf-1b8b-4ff3-93b7-e9296472dc76" - } - } - }, - "accordion-top-to-text-regular-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-top-to-text-large}", - "uuid": "2021d787-ddaa-470a-a25d-8a57f67b7359", - "deprecated": true - }, - "accordion-top-to-text-spacious-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8e042372-2504-46f2-8486-4d6174293ea2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "e90553f0-d71e-44c2-b70a-89110fab7c6a" - } - } - }, - "accordion-top-to-text-compact-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "6e08e002-56bf-421e-b9f8-9d37b1e80e6e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "5ebd5aab-49b3-49d1-be25-8aff15217eda" - } - } - }, - "accordion-top-to-text-regular-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-top-to-text-extra-large}", - "uuid": "9289aae4-ddaa-4a43-8f00-973dea8350f2", - "deprecated": true - }, - "accordion-top-to-text-spacious-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "5d8877e0-076c-4c9f-b2e9-cdde6942ea61" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "bd300d17-3599-4382-8a7d-1b78700d49e9" - } - } - }, - "accordion-bottom-to-text-compact-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "524cb169-a9c1-4d3c-864e-dba03df6eac9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "af95123b-2ab5-49bb-a070-1ca48b498f58" - } - } - }, - "accordion-bottom-to-text-regular-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-bottom-to-text-small}", - "uuid": "d64620dc-dd4a-447a-8491-d9e144ec8828", - "deprecated": true - }, - "accordion-bottom-to-text-spacious-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "bdc61836-fdcf-4ca0-a277-dd9cb314563a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "56a65744-b195-4faf-ab5c-69a8424593f9" - } - } - }, - "accordion-bottom-to-text-compact-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "c73f4637-7a33-4598-9498-8eb4a9e9e863" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "97b9278a-11d0-4470-99c3-e2d47ca5a714" - } - } - }, - "accordion-bottom-to-text-regular-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-bottom-to-text-medium}", - "uuid": "2d6fa243-5f7e-41a8-840b-27a6432f54bc", - "deprecated": true - }, - "accordion-bottom-to-text-spacious-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "8a3eadad-8b88-4885-b4ca-07360b45d3ba" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "05d8a39d-a0d5-496c-810a-f1244c31b169" - } - } - }, - "accordion-bottom-to-text-compact-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "40f76138-1a69-45ed-8df5-db8bc9792383" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "b4f92e98-694f-46cc-91be-8e0e2d5a17a4" - } - } - }, - "accordion-bottom-to-text-regular-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-bottom-to-text-large}", - "uuid": "f484838e-1f0c-4125-9298-beb4ddc0fd53", - "deprecated": true - }, - "accordion-bottom-to-text-spacious-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "96acbf76-082b-487c-8c47-f0fa173f54d2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "2a6fa386-4eba-44d5-b129-c832264fafd9" - } - } - }, - "accordion-bottom-to-text-compact-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "7a576841-a2a5-4443-9d31-03a12c7a2efd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "70e6d9e7-2a8e-4f0d-96d6-aac7cde829bd" - } - } - }, - "accordion-bottom-to-text-regular-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-bottom-to-text-extra-large}", - "uuid": "8c199212-a745-414c-8f6b-22d2445ade3c", - "deprecated": true - }, - "accordion-bottom-to-text-spacious-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "3ca8a65d-5561-4d8e-a4f2-0b653b42991b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "ba11dc6e-fbd8-46bc-94fd-b4d02f654d2d" - } - } - }, - "accordion-minimum-width": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "47ae1059-6b16-4823-866d-11be0c0e0e8a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "250px", - "uuid": "ae8169fe-1672-4e95-87a5-344ec4d7f163" - } - } - }, - "accordion-disclosure-indicator-to-text": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "27b481a4-0ea9-4e1c-a283-4a799d18d642", - "deprecated": true - }, - "accordion-edge-to-disclosure-indicator": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "614e6448-c0a4-4ad1-b125-f362e3001a86", - "deprecated": true - }, - "accordion-edge-to-text": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "a9641e89-2c2e-49c3-9662-f530ad23a688" - }, - "accordion-focus-indicator-gap": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "318c5cda-be1b-416b-b1b7-b962e5f45c0c" - }, - "accordion-content-area-top-to-content": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "709082c2-71b9-423a-9c93-3b53a9e18da3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "9c651dee-7d77-414d-930b-7c6b78cfed1b" - } - } - }, - "accordion-content-area-bottom-to-content": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "87008eae-491c-4f7d-a13b-83eae517c92f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "48383ab9-1e66-47f9-988b-6f59b7349241" - } - } - }, - "color-handle-size": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "7c7fd224-a9d5-4d97-b3de-fd9e4e076444" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "b81cc6a6-390f-43dc-a6c8-dd335c177da3" - } - } - }, - "color-handle-size-key-focus": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "de9cc5ca-81cf-4bde-bd21-be2402e460c5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "feddbfb7-7f1a-4eee-9cbf-b393aafb7385" - } - } - }, - "color-handle-border-width": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-200}", - "uuid": "8ec9adae-0093-42f4-bd1b-6f3b2279996b" - }, - "color-handle-inner-border-width": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "945e0167-6893-49dd-ab21-886f93f70b92" - }, - "color-handle-outer-border-width": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "fbf27473-7c97-4d94-968d-c3e68e0cd242" - }, - "color-handle-drop-shadow-x": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0", - "uuid": "49499527-3fdb-4a91-a832-0ae0631ba3bb" - }, - "color-handle-drop-shadow-y": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0", - "uuid": "05b11927-d0cd-46a6-ae30-6f268f143d4e" - }, - "color-handle-drop-shadow-blur": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0", - "uuid": "29e4a8c8-33ba-44b3-952d-26f3fd6ae4f0" - }, - "table-column-header-row-top-to-text-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "de67ada3-eeed-45a2-8d03-91a5b09156ec" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fdc8b7ae-2356-4d49-ba54-0ea471be2986" - } - } - }, - "table-column-header-row-top-to-text-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "0ec68b5a-4251-4727-a689-b10722ce1a43" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "ff3c5329-ccec-4b94-b200-29a377b34380" - } - } - }, - "table-column-header-row-top-to-text-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "40b7bc07-3252-492a-9ee1-37aceeca3674" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "a02666d8-4ae2-42d2-b48e-419d5070e7ca" - } - } - }, - "table-column-header-row-top-to-text-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "05d4bb65-357a-4561-ab33-ea6de390a304" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "265247a7-bbc3-42b8-910d-946e8d04aee2" - } - } - }, - "table-column-header-row-bottom-to-text-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "9388deb6-6a77-49bc-aeb5-9084352c2574" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9cf85eae-ec15-4bb0-ba48-00ec946306a5" - } - } - }, - "table-column-header-row-bottom-to-text-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "7357ba3f-c707-4475-b616-4752776c06d1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "631d14a5-1d2e-4e4a-90e8-146e8a397530" - } - } - }, - "table-column-header-row-bottom-to-text-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fc30c9a8-b098-4edf-b3f4-c666c019b3f4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "e465ee66-392f-469f-a46c-6c98df03b046" - } - } - }, - "table-column-header-row-bottom-to-text-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "0f76ceee-1d19-4c69-9393-09b02e1eede5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "c8bd103d-d952-4649-a7a0-09ae5242ea17" - } - } - }, - "table-row-height-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-75}", - "uuid": "a6dfc911-50fe-46dd-a7a3-cec3b115006a" - }, - "table-row-height-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "b4b86a59-041d-451c-a0be-cc82e997a1d2" - }, - "table-row-height-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "d576b4aa-e3df-4aa9-8260-fecfe6517bde" - }, - "table-row-height-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-300}", - "uuid": "dcc5dd06-bb3d-46d3-adf2-133e5be942b7" - }, - "table-row-height-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-small}", - "uuid": "fd53964b-cf4a-4cdf-b088-418364b1c518" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-small}", - "uuid": "cdbb999d-c2a9-4325-9689-bede2ad3559a" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-height-small instead." - }, - "table-row-height-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "10b892a0-3c97-4af6-8ecc-3359e8cd1302" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "77a26f7c-2f71-4021-a1f2-a2af7c69a111" - } - } - }, - "table-row-height-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-medium}", - "uuid": "1dc88a25-18bc-491a-ab02-2c1ec36f4c1e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-medium}", - "uuid": "72e6564c-2acf-4f77-80d9-b21d2d55a580" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-height-medium instead." - }, - "table-row-height-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "9d6dc5e8-d3f0-4f59-b062-756669ff7217" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "2cf7918c-f84a-4903-a6ba-b110807842ba" - } - } - }, - "table-row-height-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-large}", - "uuid": "3b22a4c7-525c-4482-9e58-19cbe46d318b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-large}", - "uuid": "b92bc058-27ea-4e86-a1a2-e5dbae3c2ee8" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-height-large instead." - }, - "table-row-height-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "d3d9b523-90dc-4532-9cf7-37b568bd6800" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "ff04cae7-7f96-4db2-bf64-948c22d104ff" - } - } - }, - "table-row-height-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-extra-large}", - "uuid": "face2717-9c2c-4e18-9632-4e4a595b1fc7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-extra-large}", - "uuid": "b7753c9a-8854-4927-89dd-80d47bff5fa5" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-height-extra-large instead." - }, - "table-row-height-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "d52d3141-27a5-40eb-800f-1a09acd42534" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "c2e3068b-c0be-4615-bbf7-c65e58ef126b" - } - } - }, - "table-row-height-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "cb6f8879-6d73-40ca-9ea4-7eb05b26385a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "ab252e1f-a13a-4630-a6ff-0cfa6e6f0c03" - } - } - }, - "table-row-height-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "697f4b63-14b9-4d58-9d16-b9dfd72ff391" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "572d1c5f-62a1-4bfc-a3e0-520a999545fe" - } - } - }, - "table-row-height-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "0cd072e1-1757-49b1-a985-09ab65feb672" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "e377fd73-62ca-481c-93f6-c62eb35ca720" - } - } - }, - "table-row-height-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "1504ecc5-0bd8-4bf2-ad3c-e073c824cd1a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "6efd745f-2a9a-4eea-a0a3-ebe0d3fbc149" - } - } - }, - "table-row-top-to-text-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-75}", - "uuid": "b7e7808a-16c6-481a-9257-9c1dc4e13b62" - }, - "table-row-top-to-text-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-100}", - "uuid": "02c5faff-dbb4-4633-ae57-413b3666dfca" - }, - "table-row-top-to-text-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-200}", - "uuid": "14437ed2-c60b-40ba-91e6-bed5353fc544" - }, - "table-row-top-to-text-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-300}", - "uuid": "2e8eff8c-60fa-4e0f-ae40-7b9f9b3679d6" - }, - "table-row-bottom-to-text-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-75}", - "uuid": "5eb79adf-f94c-4bf8-9ec9-279f49ce5331" - }, - "table-row-bottom-to-text-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-100}", - "uuid": "d9d8fee2-9e0f-4c2b-8059-f9badb3b6482" - }, - "table-row-bottom-to-text-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-200}", - "uuid": "15e21448-3174-4565-aed7-ab84aa30d7ac" - }, - "table-row-bottom-to-text-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-300}", - "uuid": "effa3e3c-eb5b-4c0a-aca9-81331e6a08ac" - }, - "table-row-top-to-text-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-small}", - "uuid": "5e5a6837-34c9-4f01-8769-b66c3f602d1f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-small}", - "uuid": "98014297-14dc-4547-944a-8951c7f6f253" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-small instead." - }, - "table-row-top-to-text-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "52fb10e1-a45e-4b21-9563-b72a6cf8c7e0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "dfa553a2-b771-4a31-9294-3800d2126952" - } - } - }, - "table-row-top-to-text-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-medium}", - "uuid": "8e1448f8-5806-4629-8131-4e8422b26870" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-medium}", - "uuid": "7df1dc32-b96d-41e3-a372-9bcaec7c2ccb" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-medium instead." - }, - "table-row-top-to-text-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ae401c94-c643-446f-a44e-38c9f3104fc6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "0cd86854-57ca-4023-b544-8a4a76418164" - } - } - }, - "table-row-top-to-text-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-large}", - "uuid": "2ed03fb3-fed4-41d4-8a14-f7446bb76486" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-large}", - "uuid": "0108018e-6146-45c9-b032-e3d44dfb8d84" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-large instead." - }, - "table-row-top-to-text-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "0820aecf-0647-4e51-ae40-44130bc86013" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "4d55e632-588b-4e82-90c0-4fa434998d15" - } - } - }, - "table-row-top-to-text-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-extra-large}", - "uuid": "03555438-78f5-429a-a0dd-c6777dc36372" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-extra-large}", - "uuid": "c381a3c4-e0a3-4e86-b279-f51ee6e9e532" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-extra-large instead." - }, - "table-row-top-to-text-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "da7274c6-6f45-4087-b42f-dde7d3ac1af7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "40de40fd-4bae-4a49-8aec-38dad2a1c5fb" - } - } - }, - "table-row-bottom-to-text-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-small}", - "uuid": "90ae4c5b-a49d-40ad-8dd8-b25720c13f79" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-small}", - "uuid": "d3147ee6-dc34-46e2-8379-02d9690ff80a" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-small instead." - }, - "table-row-bottom-to-text-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "56b58d2a-01dd-488b-b6e9-ff49555602b4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "d6100789-7076-403a-b878-7bb204093c52" - } - } - }, - "table-row-bottom-to-text-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-medium}", - "uuid": "c66ff3f2-3661-464c-b722-151f72d03f2a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-medium}", - "uuid": "e80339a8-22c4-4b53-9a4a-a4456f6cab3f" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-medium instead." - }, - "table-row-bottom-to-text-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "f14087ac-db72-43df-a8fa-9c9b03c6a1c9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "6ff9a81f-a2f8-4966-a48b-c8561aa4f833" - } - } - }, - "table-row-bottom-to-text-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-large}", - "uuid": "775139b2-3fb4-4019-8a3e-2377211ed0ec" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-large}", - "uuid": "151bf172-2889-4c98-8f15-5b6cdcb30d4b" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-large instead." - }, - "table-row-bottom-to-text-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "f14b75f3-cb07-48b3-8543-34d80747ff36" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "0de2f0a5-b32a-4f7b-b46c-1a6c25abc1ec" - } - } - }, - "table-row-bottom-to-text-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-extra-large}", - "uuid": "d13d2f2e-9425-403d-a95f-889d67f03425" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-extra-large}", - "uuid": "c9ac99be-86c3-4f6c-a2a5-3487041bc95e" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-extra-large instead." - }, - "table-row-bottom-to-text-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "8b969d35-01ab-419f-b391-484aad88fd41" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "f25c6bfd-0a0d-4fd1-ab7b-9cd1d13053e1" - } - } - }, - "table-row-top-to-text-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "c0f9a500-3259-4888-ab43-c180c694a24e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "625733b1-78b3-4dd0-9636-71d59c14e013" - } - } - }, - "table-row-top-to-text-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "9893c4bf-aa89-4b46-987f-09432943734a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "cfa36bf7-cce0-4049-970a-8f11c6d60673" - } - } - }, - "table-row-top-to-text-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "a3e22e10-1964-4d4a-8721-2eeddfed6f42" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "769d6bbf-64ba-4c08-8a57-580838de1d48" - } - } - }, - "table-row-top-to-text-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "7824ab63-198c-4ee3-99d7-9b151898eb40" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "90c39289-3112-49a3-8e65-d112c97f7479" - } - } - }, - "table-row-bottom-to-text-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "ad51f205-c2e7-4af5-9301-937594c61027" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "07dd5018-1999-4b95-9a59-fe1c2fcc380f" - } - } - }, - "table-row-bottom-to-text-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2cedf119-a2f6-484a-8bdd-83652a8d6d79" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "8273e28d-20b4-4575-9449-9178af111e38" - } - } - }, - "table-row-bottom-to-text-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "3adc8c4f-32ce-4cd1-8bb1-518b9b267ed2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "4bc11bec-9c86-4a6c-85d1-382c71c1352d" - } - } - }, - "table-row-bottom-to-text-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "3271ab20-8a93-4b5b-a889-7a07d9f7e6ab" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "06ada9fe-ceef-4fb4-88ee-37c2edee5418" - } - } - }, - "table-edge-to-content": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "5e46672f-eab0-4ec3-bd14-68ffa4404ec1" - }, - "table-border-divider-width": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "b6f2536c-deda-409f-8667-a5a99abdfa46" - }, - "table-checkbox-to-text": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "400553db-907c-43a5-8545-92ba212e12b8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "cb7c89c0-9f31-43c4-8427-2e048f549ff7" - } - } - }, - "table-header-row-checkbox-to-top-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "370e9149-aaf5-43cd-a783-90cfa8d37419" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "296d445c-243d-454c-9f5a-146c13d0cded" - } - } - }, - "table-header-row-checkbox-to-top-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "578765e6-b2ec-4bfe-ae28-f24cbee15898" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "2e168a2b-46aa-453f-9ca1-746485216c84" - } - } - }, - "table-header-row-checkbox-to-top-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "5011ae3c-2e72-4891-926e-8de8847e0a47" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "f6648787-3cf1-4af8-aa4f-15669ea1626d" - } - } - }, - "table-header-row-checkbox-to-top-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "8adf3d5f-1024-4eb8-8515-f3b6fd7cc22c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "42a78148-e111-4124-a7a6-d9baa2ca963f" - } - } - }, - "table-row-checkbox-to-top-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "f5c64a03-3750-4c92-afe2-43575bdb1df9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "2444d220-a3d0-4565-a762-02cbc52f828a" - } - } - }, - "table-row-checkbox-to-top-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-small}", - "uuid": "4435c143-a75a-47c1-a629-3574b70247a3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-small}", - "uuid": "a63aa24e-c956-4af5-bf4f-4c5d44bd1e16" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-small instead." - }, - "table-row-checkbox-to-top-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "909ebf8a-eebd-41b6-8fac-8fe31d2bac00" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "365d9c3f-d287-4feb-b020-89434dd29378" - } - } - }, - "table-row-checkbox-to-top-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "4637c01d-66cd-451e-8950-9e72700c80d3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "6ccbecd6-a1c4-4fcf-beb5-2b124ac3e75b" - } - } - }, - "table-row-checkbox-to-top-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "0b12ff10-52e2-4084-9f1b-ee7bc0b50576" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "84f00d87-c0ea-42fd-8477-9fff028bf79c" - } - } - }, - "table-row-checkbox-to-top-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-medium}", - "uuid": "2c8f9b97-f4df-48c2-ab1a-82373d335b83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-medium}", - "uuid": "36505a4f-01b6-4b83-adf1-592818eb2c0d" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-medium instead." - }, - "table-row-checkbox-to-top-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "be965b15-08f8-43be-9953-52151d8c7670" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2ae09505-d43f-4e2c-b8a6-014ccfef5c10" - } - } - }, - "table-row-checkbox-to-top-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "c8a04cab-bfad-4b82-94dc-6c2b4160c7cb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "a57d2d1a-5e0c-4d4c-84eb-dd2339366aad" - } - } - }, - "table-row-checkbox-to-top-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "40acc8c4-81b4-4566-a7ce-7c3d0d8ab5c5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "5fde3b28-c553-4124-be3b-212d1407780c" - } - } - }, - "table-row-checkbox-to-top-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-large}", - "uuid": "559b9fc0-389e-4e2f-985c-8741f218850a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-large}", - "uuid": "2e16e4ef-fec6-41fb-9d96-bc6bb6c88f69" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-large instead." - }, - "table-row-checkbox-to-top-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a8c2b073-495b-402b-b1dc-2337b0e42f37" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "a0fa4e03-c1de-400d-8629-0ae9ffb9b9d8" - } - } - }, - "table-row-checkbox-to-top-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "d4b563c8-9234-4eed-a2a3-7e448a174286" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "cfbd6cb5-c8d3-4908-a77a-7a15cda932fb" - } - } - }, - "table-row-checkbox-to-top-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a1aa1c65-a1e8-40d6-805f-309d5e43d129" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "4069e932-339a-495d-bb36-c89f22af4f96" - } - } - }, - "table-row-checkbox-to-top-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-extra-large}", - "uuid": "9b775e1f-9348-431d-9ba8-bffb19bcbf85" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-extra-large}", - "uuid": "2171aee7-d013-459e-a13f-33075090cbe3" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-extra-large instead." - }, - "table-row-checkbox-to-top-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "acd6ad6b-bab0-40fb-afbe-5df7eea7efb3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "fb02243f-0490-4eb2-aac2-fa364c6eab59" - } - } - }, - "table-row-checkbox-to-top-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "568ba981-51b5-4443-a427-0f857ff02572" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "31px", - "uuid": "683be05e-f8d4-4910-8d07-20515f19fbbd" - } - } - }, - "table-section-header-row-height-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "89bd3638-bbbb-432d-84eb-e217f9bb0cbf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "2cd8dc05-2f95-45b5-b8a4-0273baf3ba0e" - } - } - }, - "table-section-header-row-height-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "4c9e9bd8-9320-4648-bf2c-bb2db74a63fb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "07beb872-72a0-400e-b434-dd076c9be0a7" - } - } - }, - "table-section-header-row-height-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "553f5ffd-a163-4b33-b96a-5acc08cfb820" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "cc41c4f1-bfc5-4aa5-87af-97f191cc7af3" - } - } - }, - "table-section-header-row-height-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "34b1c98f-7159-4ae0-b299-bf2fc53035c0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "06164331-9a76-4adf-b859-82074df19fbd" - } - } - }, - "table-thumbnail-to-top-minimum-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "d9cc50d4-6661-4a03-b850-ed0933f2dabb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "72ebb8a4-9bfb-4ff0-ba3a-232c885931e7" - } - } - }, - "table-thumbnail-to-top-minimum-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "86a1c328-0845-47d8-a189-24a22c1ce053" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "b546eac7-00ad-4ea2-992d-0c4b8d087679" - } - } - }, - "table-thumbnail-to-top-minimum-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "9b0e3ebe-59f6-4970-aa47-06b115f5efff" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "891cf7bc-419a-4b78-8c7e-03685fbf36a4" - } - } - }, - "table-thumbnail-to-top-minimum-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "499530d7-7c3c-4bed-a4a1-d4edc2195afe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "29ee801a-95bd-495c-9905-f2fd00ae0e19" - } - } - }, - "table-thumbnail-to-top-minimum-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-small}", - "uuid": "db98283d-1f25-4323-9f3a-0555b9670ba6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-small}", - "uuid": "e25b14a7-cb9e-406b-bab6-b27575f00a52" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-small instead." - }, - "table-thumbnail-to-top-minimum-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "96d7eb12-7e92-4ee8-988b-8e7e8a7de159" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "43955cdb-afaf-4e59-bb26-3063661141d7" - } - } - }, - "table-thumbnail-to-top-minimum-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-medium}", - "uuid": "12a6fd11-d3a5-4d72-9942-89d828d1d256" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-medium}", - "uuid": "75af7a67-e0ae-4f41-9c70-09babbc587d1" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-medium instead." - }, - "table-thumbnail-to-top-minimum-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "42914d96-ee9f-4ed9-9c7a-9c8ccca68245" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "2268750d-4c5f-46f1-bad7-dec21818bfe6" - } - } - }, - "table-thumbnail-to-top-minimum-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-large}", - "uuid": "de6e6ae5-eae6-4f7a-89be-176674176242" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-large}", - "uuid": "fc7efe7c-ef97-424f-89c2-2211daf44b4a" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-large instead." - }, - "table-thumbnail-to-top-minimum-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "589d6f19-ec7f-4a4f-a622-40d18d7e71f5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "92ade1a0-ea78-4930-82e7-fedafce42aed" - } - } - }, - "table-thumbnail-to-top-minimum-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-extra-large}", - "uuid": "17c4c578-d3e1-44c0-bd21-ee4df5cb2027" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-extra-large}", - "uuid": "b60c33b8-acc1-4af1-b30f-b467054ee417" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-extra-large instead." - }, - "table-thumbnail-to-top-minimum-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "0ae43893-e3ea-461f-a2fe-93239cb3a22a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "17051925-5eda-45a3-8d45-d329e88bf63a" - } - } - }, - "table-thumbnail-to-top-minimum-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "9b464ca8-f246-482d-b240-e12e097aaf8b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "b6684bce-531d-420a-befc-b4ad884059fc" - } - } - }, - "table-thumbnail-to-top-minimum-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "1cd90c35-f688-4054-aec4-e1e3b200cfcf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0cb1e46b-039b-46d2-a024-b72ddd82d0b4" - } - } - }, - "table-thumbnail-to-top-minimum-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f1cbc035-b4d0-4593-b563-a107ee2eebb0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e6689bf9-6ecc-4900-b8ad-85b103232e3e" - } - } - }, - "table-thumbnail-to-top-minimum-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "127b9225-cbab-42c1-8c86-4f425c7c8e27" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "28a5df8a-0fe4-4410-b804-9a6c26de4440" - } - } - }, - "tab-item-height-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "7b31cf38-5bac-4f79-a4f1-172a4ea66e10" - }, - "tab-item-height-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-300}", - "uuid": "5d2288f4-f383-47fa-baca-0168cb46750a" - }, - "tab-item-height-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-400}", - "uuid": "8abd0b0e-fd6d-4064-9d0e-1ab998fcb0ce" - }, - "tab-item-height-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-500}", - "uuid": "42ed814c-5044-4c70-b82f-b49f8226241e" - }, - "tab-item-compact-height-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-75}", - "uuid": "25f7d9a5-9464-4447-97d9-97839b371f96" - }, - "tab-item-compact-height-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "e8c7c826-548d-4037-b064-3cf699675d35" - }, - "tab-item-compact-height-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "6d781a0e-e03d-4750-ae4f-67a29d731702" - }, - "tab-item-compact-height-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-300}", - "uuid": "49130d66-edfb-48bd-8648-96c47f40a884" - }, - "tab-item-to-tab-item-horizontal-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "79695d07-21cb-4772-b3f7-b2eb56e7ad20" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "8b5e1596-f13a-4786-b0c7-f01615423922" - } - } - }, - "tab-item-to-tab-item-horizontal-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "31bea7d1-c8c2-4901-9f18-7a5c936d243f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "885a7cc3-8873-4cb7-99e7-b17f42fb48f1" - } - } - }, - "tab-item-to-tab-item-horizontal-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "1f9460a7-2ec0-4353-875c-ee5a6143d00b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "33px", - "uuid": "71bdfd06-4672-464f-b787-9a62137b1763" - } - } - }, - "tab-item-to-tab-item-horizontal-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "c92ec468-0fac-4e12-b1f8-f22d09cb6c1e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "482ed7f6-ba60-4110-85c8-daf5bf352406" - } - } - }, - "tab-item-to-tab-item-vertical-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "da8211ee-8944-447f-a6df-6a16580e1893" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "d51a6c05-67d0-425f-becf-86e783ab3305" - } - } - }, - "tab-item-to-tab-item-vertical-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "7cd196c1-18b1-4dae-abf7-7ef1b531e0af" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "6b6c960f-adcf-48b0-8310-ba12b47f4d9a" - } - } - }, - "tab-item-to-tab-item-vertical-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "9846992c-e27b-4760-8808-7c44cca2cc65" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "c193b2ee-a584-41dc-9ef8-3aebb38fb832" - } - } - }, - "tab-item-to-tab-item-vertical-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "d74ea722-c146-4ad2-ab20-41c332ae1190" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "ea902ec1-25d5-47c3-896a-a95d9ca5bd62" - } - } - }, - "tab-item-start-to-edge-quiet": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f869f703-a850-4c6c-b518-ec8a1b355046" - }, - "tab-item-start-to-edge-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "712e62ce-b869-4097-aee1-82e3b7505e14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "8d413f56-6634-49c8-8d6a-53d0f57f1bbc" - } - } - }, - "tab-item-start-to-edge-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "4d105a45-7403-47f2-ba50-419d822ff879" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "229477d5-e21a-4f4b-a24d-580f0c60eec5" - } - } - }, - "tab-item-start-to-edge-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "c3f8f94b-d456-4aeb-8340-bd5643efe8fc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "2c85fa9a-e854-46f6-bc6b-547692d08290" - } - } - }, - "tab-item-start-to-edge-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "a480fffb-0a23-4893-87ce-730eb925a7cc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "4e0b2015-06c8-41ab-9e2b-3a332a7625ff" - } - } - }, - "tab-item-top-to-text-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "a9a6d785-f06d-4505-89ea-552d47ebe49d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3e155b8c-6cea-4b59-817c-cf71a63e00c7" - } - } - }, - "tab-item-bottom-to-text-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "2d0f71e2-66fc-4f28-bd4b-be41df0948ed" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "e0791360-b505-492b-bf71-dfa393abecfa" - } - } - }, - "tab-item-top-to-text-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "e75e4e96-6d1b-4a86-9059-5c1f6f6ab269" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "a8c455e9-60e5-4838-bc9c-eaf7b39a4bf7" - } - } - }, - "tab-item-bottom-to-text-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "f507e1bd-f08e-42b1-aee6-ea38f9f8a387" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "691db84a-5336-4e45-bf73-ee617057e718" - } - } - }, - "tab-item-top-to-text-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8b9275f5-3e63-459c-97fc-bc03691aa772" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "7e3db5ca-cd32-464b-9a23-9d03e83faa9c" - } - } - }, - "tab-item-bottom-to-text-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "61dd06ac-501e-4725-9d54-cc7a3d9f6586" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "31d1b6b6-721f-4474-ba86-795367399e49" - } - } - }, - "tab-item-top-to-text-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "f1b6b932-748d-4b26-9c03-2bd9d0a40ac6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "174cc6c8-9c0a-44c0-b6c7-ea6d337c819b" - } - } - }, - "tab-item-bottom-to-text-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "5840c3b8-3488-417b-8b33-f3fc667ffd7a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "c63380d4-cc26-4299-b227-af2faedfdc74" - } - } - }, - "tab-item-top-to-text-compact-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "bbcf3eda-4add-4d0d-b5ae-c2e7078e85ed" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "d37488c4-d489-45bd-9086-8157c5204ae4" - } - } - }, - "tab-item-bottom-to-text-compact-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "d87a2ee3-6f7c-4f5e-8191-d35624fc10f1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "f453e51e-3d58-430e-8f17-8b95718dbf34" - } - } - }, - "tab-item-top-to-text-compact-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "2481e3a1-302b-46b8-98c2-e9461dd47d0c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "128757b0-d690-4886-95d5-e9df36182a0f" - } - } - }, - "tab-item-bottom-to-text-compact-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "b44bbd5a-ef03-4e83-a9f5-88c896969d4d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e69dee42-92da-4ca9-9eb8-97a7860adaba" - } - } - }, - "tab-item-top-to-text-compact-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "93af7bac-830c-4460-abe2-0b2d8f786786" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "fd20b444-38ac-4438-a9ef-32474222e45f" - } - } - }, - "tab-item-bottom-to-text-compact-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "8e701e0e-4d7c-4d38-ba6b-1fd2ef5978dc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "091144b7-c63b-4827-840d-741cec01432a" - } - } - }, - "tab-item-top-to-text-compact-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "2bdd22cd-93fe-4cf4-a025-e690ecafb50b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "9694ebdc-cc88-4584-89f5-10a2c8de686f" - } - } - }, - "tab-item-bottom-to-text-compact-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7e3a0369-fcc2-45d7-87ab-9053588713ef" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "3641ac9c-5610-4996-a55d-c2a94b2ff9ea" - } - } - }, - "tab-item-top-to-workflow-icon-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7bd7427d-06a8-4194-a9f4-300fd1a4f547" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "923fd09d-8d08-4465-961f-63ac12014206" - } - } - }, - "tab-item-top-to-workflow-icon-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "aec60dda-9e5a-40c8-8e45-5e1662eab6e3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "820baccf-af24-42a3-9729-99408bc9322f" - } - } - }, - "tab-item-top-to-workflow-icon-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "65e1f735-5f46-4bb3-9c7b-d5f5abab91a1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "4dd99579-949b-4bf9-b022-e8f0c95eae33" - } - } - }, - "tab-item-top-to-workflow-icon-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "2c869793-c10b-40ef-9545-45a8a6b4cbb5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "5afa2636-7d4c-4d83-b9fc-3c5a52ee4646" - } - } - }, - "tab-item-top-to-workflow-icon-compact-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "96c22cdc-aecb-4747-aea9-f140af5ee048" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "b79002d2-bcff-4e8d-a406-e512c7e7d0e3" - } - } - }, - "tab-item-top-to-workflow-icon-compact-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "7788c25c-0ce2-4170-8c5f-2fb1d98d953a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "4fb0520b-8c74-4fb7-b279-a3586a06a57e" - } - } - }, - "tab-item-top-to-workflow-icon-compact-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "fab951e5-1a78-4fb4-8c19-677f5f231189" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "fad964d8-0020-4583-97ab-7d6565d01bdc" - } - } - }, - "tab-item-top-to-workflow-icon-compact-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "dd4769f3-5c7e-491f-9d01-c80af0b561fb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "f310e5d7-7435-41a0-b44d-ececff4844f2" - } - } - }, - "tab-item-focus-indicator-gap-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "d23bdd67-d7d0-42df-9575-61502d3692ab" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "5fbc924e-e79e-46c6-8544-c92d7f33bc26" - } - } - }, - "tab-item-focus-indicator-gap-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "cbbaa048-129d-439f-8aae-59153e28216b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "09ee234f-a596-47ba-89df-ab9ebc07ded8" - } - } - }, - "tab-item-focus-indicator-gap-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "6fd78b93-1356-4eb0-9f70-bed00c3eb2aa" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "6c4d8c39-9f75-4c75-94e2-274a69a8f556" - } - } - }, - "tab-item-focus-indicator-gap-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "1f12f9aa-19bd-4f77-93db-d737c0538677" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6c0aad05-5224-4ade-913a-3dc5ebceeb62" - } - } - }, - "side-navigation-width": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "d087f995-da55-4c96-89c4-69a9a83e2f05" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "3bc5710f-5fd7-4cce-a3c2-f1e45deee2b2" - } - } - }, - "side-navigation-minimum-width": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "144px", - "uuid": "998bb752-7826-4437-ac18-14e08644e226" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "180px", - "uuid": "ad835d79-64d9-4183-ace0-912c87fc2241" - } - } - }, - "side-navigation-maximum-width": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "68210b40-f87e-4059-88c1-e66d1c8cbd38", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "300px", - "uuid": "bcb163a0-0156-4e2e-abfe-b2ac0158f348", - "deprecated": true - } - } - }, - "side-navigation-second-level-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "38px", - "uuid": "2e5df819-ac9e-4b09-bdf6-8b1fe751c8fb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "e77cde34-8f77-4fd1-a1f7-aa6738130902" - } - } - }, - "side-navigation-third-level-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "adfe198d-a39b-47a1-bfa4-77dd0d139803" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "06140452-b779-4527-ae3a-5f0623a6b97c" - } - } - }, - "side-navigation-with-icon-second-level-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{side-navigation-second-level-with-icon-edge-to-text}", - "uuid": "d254c910-2939-48ce-8547-08cfb346a0db", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{side-navigation-second-level-with-icon-edge-to-text}", - "uuid": "7d4cd9bd-bfaf-4ad7-9c3b-19f7913f0825", - "deprecated": true - } - } - }, - "side-navigation-with-icon-third-level-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{side-navigation-third-level-with-icon-edge-to-text}", - "uuid": "f1d90f18-e114-477f-88ca-548c5ddbc287", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{side-navigation-third-level-with-icon-edge-to-text}", - "uuid": "f82ab001-808a-4528-bf4a-be27645a28fc", - "deprecated": true - } - } - }, - "side-navigation-item-to-item": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "47e687e4-c458-4e0b-bd02-7698cc14983b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "be37c65c-88c5-48cd-9554-8240909db98d" - } - } - }, - "side-navigation-item-to-header": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "c5de72a2-931a-429d-ba85-5aaf2e30fbc4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "0f3821f1-6f0e-4325-bfa7-e572768fd468" - } - } - }, - "side-navigation-bottom-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "8751d85d-a325-4e4e-a7b2-0a3ca94b6b6e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e3f49e5e-f9ec-485c-846e-7a8fda08caea" - } - } - }, - "tray-top-to-content-area": { - "component": "tray", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "74787427-ea2f-4b94-99c0-88454e8be6cf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "794ad497-1725-4a03-a7c9-425eaee3178e" - } - } - }, - "in-field-button-width-stacked-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "24125066-c8d1-4c4a-85b3-493d112d3ca0" - }, - "in-field-button-width-stacked-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "bb8c7ce0-1766-47f9-b30e-36b3b57dc2ea" - }, - "in-field-button-width-stacked-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "4e103763-4310-4aff-980f-652ad023084f" - }, - "in-field-button-width-stacked-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "5f844b3f-e0d7-40f0-a754-a14bee6a0fb4" - }, - "in-field-button-fill-stacked-inner-border-rounding": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f8ed9a70-58f1-4f1a-9e87-24bca6d7b4e1" - }, - "in-field-button-edge-to-fill": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43", - "deprecated": true - }, - "in-field-button-stacked-inner-edge-to-fill": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "56b54ece-0ff3-4957-9c1c-9e7fb992653c" - }, - "in-field-button-edge-to-disclosure-icon-stacked-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8b6a0ab1-4dba-4da2-9c67-3befca0f110e" - }, - "in-field-button-edge-to-disclosure-icon-stacked-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "ccb60cfc-86fe-4959-b4a8-1a45835132c8" - }, - "in-field-button-edge-to-disclosure-icon-stacked-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "6a6e5478-b549-4a39-a7f5-5d3c417464ce" - }, - "in-field-button-edge-to-disclosure-icon-stacked-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "d563157b-f0d7-407d-aaaf-ae1790c75503" - }, - "in-field-button-outer-edge-to-disclosure-icon-stacked-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "9890df35-2d45-4767-9cbe-ee745d09d990" - }, - "in-field-button-outer-edge-to-disclosure-icon-stacked-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "a87d68bb-4249-43cd-947d-bd061baba0ef" - }, - "in-field-button-outer-edge-to-disclosure-icon-stacked-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "acc9c48a-f461-48ff-9f69-0224c4feabc6" - }, - "in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "391e1e67-1677-4f60-a09a-3b49bacd01f5" - }, - "in-field-button-inner-edge-to-disclosure-icon-stacked-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-small}", - "uuid": "6c1330a4-1c89-45a7-b2b1-8cbcaf20b9ab" - }, - "in-field-button-inner-edge-to-disclosure-icon-stacked-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-medium}", - "uuid": "3dd5babb-5026-4f28-89ae-bfe687673f31" - }, - "in-field-button-inner-edge-to-disclosure-icon-stacked-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-large}", - "uuid": "710ebe58-f0d8-4d6b-8974-0be1f2f48dc4" - }, - "in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large}", - "uuid": "c47499c1-b89f-49a7-bbb5-17e83e4b306e" - }, - "arrow-icon-size-75": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "b39b3ce3-6a48-4025-96ef-659b0c9ae9e8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6ff35aff-8a9f-466c-bdd3-dda460ccaee5" - } - } - }, - "arrow-icon-size-100": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c22e7427-617d-4f99-bee7-e3fffba07fc2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "e9b3eb08-2004-4ad3-bb13-a00a6cb536aa" - } - } - }, - "arrow-icon-size-200": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "645d5384-e3a8-4d97-acf6-7cbce00e6537" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "c7df43e2-7354-4f53-b453-dc9bf9060e64" - } - } - }, - "arrow-icon-size-300": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "d0df9084-c6bf-42e5-b830-82906036e397" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "f6116604-efbe-4c6f-b047-29247d632174" - } - } - }, - "arrow-icon-size-400": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "4ced8527-31ad-4e48-9491-806ffc57442a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "35f055a9-8a33-42b2-a316-7e2ef0a4b99d" - } - } - }, - "arrow-icon-size-500": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "31f09728-964b-4598-99a0-d17bf7256e40" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "dcf16e1a-49ea-4888-85b7-012462a60f40" - } - } - }, - "arrow-icon-size-600": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "5ffece39-b8fc-4a40-a051-0d6c8e253f8f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "2f5f49e5-9aba-4ea0-a8d9-0f0e4c086b89" - } - } - }, - "asterisk-icon-size-75": { - "component": "asterisk-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "49ea57ee-7b12-4a8b-a9bb-a11cf2c9d72c" - }, - "asterisk-icon-size-100": { - "component": "asterisk-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "d04b37cc-2c35-49af-9e92-9993264e405a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "f6f11ca3-b78b-4207-868f-f834c19e8d3d" - } - } - }, - "asterisk-icon-size-200": { - "component": "asterisk-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "49892fb4-a9df-4882-a656-7f9ffb9558bc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "3f1b200b-d341-41e4-ae7b-c981ccb492f7" - } - } - }, - "asterisk-icon-size-300": { - "component": "asterisk-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "93506e7b-f388-4cf8-bd73-e7d96da935d5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "a1cdad1f-6537-4c35-a87b-45d8e161ee46" - } - } - }, - "checkmark-icon-size-50": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "6335cb3a-6ceb-40e7-b241-ff9b36f1277c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "ee52f114-1ab6-430b-bd54-62a82bf3600e" - } - } - }, - "checkmark-icon-size-75": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0545a68c-f273-4348-84cd-9cd365bdb474" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "99224b4e-751a-49ec-8db4-41c8cc4c7bf5" - } - } - }, - "checkmark-icon-size-100": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "9227a279-09f4-457a-b5b3-894f0d6a00df" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "23247915-3cc0-4fdf-b21a-85b97019a219" - } - } - }, - "checkmark-icon-size-200": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "342a360b-d58c-4d7a-9a9d-893600b90785" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "d4e3f5ff-91d6-499e-b79e-b1d85c0c597b" - } - } - }, - "checkmark-icon-size-300": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "b5eff9b7-6987-47a1-a673-c47b7e806370" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "d9b251b2-aa8a-46dc-9a2a-0eb46afea241" - } - } - }, - "checkmark-icon-size-400": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "1a043355-03e6-4322-a462-7d628c23fd06" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "c044459e-12a3-4cdd-9f22-db1d14f34164" - } - } - }, - "checkmark-icon-size-500": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0bf97a2b-5fe6-46ca-8175-8457e8e37d36" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "29f107aa-b8a8-4a09-bf55-9c903c1005ed" - } - } - }, - "checkmark-icon-size-600": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "4bacaeea-2d60-46d2-8c98-288b45a79aaf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "b52f4e53-06c2-4746-8063-e2bd99361174" - } - } - }, - "chevron-icon-size-50": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "785a9152-a69b-4164-a8e2-cc201c1f8063" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "6d8ce7eb-a2a2-496c-9ce7-847f4da5fc0c" - } - } - }, - "chevron-icon-size-75": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "43ef1792-b182-419d-966c-a8a2d77dbe03" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "74dbb8c0-2e65-413d-8b52-7215993b5696" - } - } - }, - "chevron-icon-size-100": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fdd4f0b4-3284-4734-b158-ecd5da36d586" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "c4d6bea8-61b0-45a4-81e0-1e5dd7429463" - } - } - }, - "chevron-icon-size-200": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "2df0f6e0-5821-4f70-9aa9-1cc61f860b53" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "08bbd8dd-bb02-43b9-8e25-7709aee5ff52" - } - } - }, - "chevron-icon-size-300": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "087dcfa2-5bfd-47a4-a67c-dca50e086e7a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "e6fdcac2-9916-45e2-a479-e87d17ece1f9" - } - } - }, - "chevron-icon-size-400": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "7fc3ab50-4856-442b-85f7-7f0e5ab3304a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "ee913eaa-bdaf-44c0-a139-17c5d94b1d4a" - } - } - }, - "chevron-icon-size-500": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2891d3c7-1178-4901-9be9-75efada4a9e7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "95400787-7abb-4cad-830b-8a4042831860" - } - } - }, - "chevron-icon-size-600": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "c1de2d7d-ef83-4a3f-9407-2f512127244f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "350b77ab-6440-49c1-9b1c-a31c5c4f2f5f" - } - } - }, - "cross-icon-size-75": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "8e597833-1025-4de4-b34a-2f34201487c3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "622d259d-b52b-409a-bf58-04705d8423f9" - } - } - }, - "cross-icon-size-100": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "c9fac273-0c5c-46cd-b774-ad566a540511" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "11f924ca-5542-4864-b153-77363a32d690" - } - } - }, - "cross-icon-size-200": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "5b416331-7910-4d64-9b5f-43fd1832d3a6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "11f65b04-c50d-45bb-86bd-34520aa7db61" - } - } - }, - "cross-icon-size-300": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "f0a65c80-55e8-4ad3-b68c-8429c2fefcf5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "37867ac1-4101-4553-98e1-c8a94fdd2d66" - } - } - }, - "cross-icon-size-400": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "b7e0939f-45ef-4250-8138-2bee9dcb2be4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2fed48b7-dd3d-4c3c-9d5c-3046934f5cfd" - } - } - }, - "cross-icon-size-500": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "1228762d-8c89-4e04-a097-5001d805877d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a865d5f8-4798-4721-ab76-3b51067d6439" - } - } - }, - "cross-icon-size-600": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "825c1a0a-e6a3-41dc-81bb-0fb9b74c0ca2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "e12ac1ec-08f8-4d8b-8c4b-29b74cafe1a1" - } - } - }, - "dash-icon-size-50": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "59e5a3f7-c1d0-4b76-bb7e-2bcddddb83da" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ea331ff6-aa92-4cb4-936a-554a2404152d" - } - } - }, - "dash-icon-size-75": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bfd0ad6e-6656-46d6-aa9f-0940b2c2902a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "1b6d0e50-3ba2-43c9-8b8c-c220364f4434" - } - } - }, - "dash-icon-size-100": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "67464126-edf0-49db-a07c-8641d4a24cae" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "9dc14737-973d-4f6e-8336-2e119c1f1af7" - } - } - }, - "dash-icon-size-200": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "220d2f95-067f-4169-bab7-1b4e202bd1a1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "98ebf128-02f1-4d4b-a686-af8713a0f24b" - } - } - }, - "dash-icon-size-300": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "84f3da59-4c41-4e4e-925c-5fda4222361d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "ad59353e-3ed1-4e76-af87-020cebfa2664" - } - } - }, - "dash-icon-size-400": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "17540c3a-2f85-4771-a4f8-834c70872abb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "d2c45711-be18-4c85-8b23-f4d4f3d0b492" - } - } - }, - "dash-icon-size-500": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "08358bbf-3f8d-48fe-bb48-5dadead4170f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "8d2ad303-095d-4f0c-b0c5-c1ec75b96819" - } - } - }, - "dash-icon-size-600": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "34316272-7bcd-4b44-af20-07c0e1cb8690" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "2e81ce48-452d-401f-a44d-10ca427f031e" - } - } - }, - "side-navigation-header-to-item": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "423b5520-bb29-4179-9145-67305ca75b75" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ad959938-ad69-4137-91e4-fcf2465b223a" - } - } - }, - "divider-vertical-minimum-height": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "299db7d6-66f6-4fcb-890d-223406c85ae4" - }, - "divider-horizontal-minimum-width": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "a0093378-0b2c-474b-9fe5-76940fd1398b" - }, - "tooltip-tip-corner-radius": { - "component": "tooltip", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "53fef925-59e3-4df5-9ac2-e2b4d34d9bca" - }, - "switch-handle-size-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "459a9b8c-b59b-4c9c-bc2d-c840d463040a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "8ccf8d0c-13a8-48da-a6dd-790ad728083f" - } - } - }, - "switch-handle-selected-size-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "507c0319-747b-448c-8962-5a73097ddfe2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "14b85a33-6501-4366-90d3-e0c5375c522b" - } - } - }, - "switch-handle-selected-size-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "29e7e1f1-d789-4d3c-9288-a139c7ae07ad" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "12f8e465-8241-4b1a-91f8-27e91e5a01bf" - } - } - }, - "switch-handle-selected-size-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "83d7ed85-236a-4266-a57f-d33a5f1785ff" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "eadbe025-3d4a-4874-89ad-b6f667a62837" - } - } - }, - "switch-handle-selected-size-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "272949bf-1503-4e7b-80d5-859c1ce57169" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "63c42c0c-3976-4d4e-a86f-0234a3a72243" - } - } - }, - "switch-handle-size-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "6b885dfc-af50-4c44-8ee5-bf6b03624203" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6263739c-dd33-4670-819a-d3aa0b9056b4" - } - } - }, - "switch-handle-size-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "2216638d-6dc7-4bfa-8364-99fe8eab2b3b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "91764817-6e5d-4273-b856-6751e40eb548" - } - } - }, - "switch-handle-size-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cfa167e1-39e9-4d05-b757-bdd616830358" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "daee9fb3-c94c-4f91-90d5-99e40034c1fd" - } - } - }, - "tag-minimum-width-multiplier": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1, - "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f", - "deprecated": true - }, - "tag-maximum-width-multiplier": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 7, - "uuid": "8771f506-a491-4222-be86-0e666ea2c711" - }, - "tag-label-to-clear-icon-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bfc9cd19-e115-4ff2-908d-6cd4725f68bc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "2011748e-f950-4c6e-9eee-1c0d77b7ba36" - } - } - }, - "tag-label-to-clear-icon-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "c964fe64-fcb6-4417-977d-b15880daf164" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ff7424ba-5f65-46ff-b408-4ffb2cfc5035" - } - } - }, - "tag-label-to-clear-icon-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "8533ad58-9e81-4154-8ad1-57213741e814" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "7c1375da-c6c7-42b3-b60e-0ef6724c6303" - } - } - }, - "tag-edge-to-clear-icon-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a27b0e7c-8840-4d08-8f88-39643589c554" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "6f913e5f-debc-4b7d-897d-c2704847c2e5" - } - } - }, - "tag-edge-to-clear-icon-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "e4e422af-181f-47b5-b165-f514a0a6f41c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a2f75bb4-0ce4-4993-9a43-09cd2b7376bf" - } - } - }, - "tag-edge-to-clear-icon-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "896b20fc-c13e-4785-a252-00857208d51c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "b046b12c-5c39-4018-8ccc-9a5cb08eb6e5" - } - } - }, - "title-cjk-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "2be8bfb1-7a0c-452d-9532-ea2eda408b82" - }, - "title-cjk-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "c03b6bc7-76b6-4533-883e-881438de975f" - }, - "title-cjk-font-family": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-font-family}", - "uuid": "6fa83674-af7c-4656-8b33-d3312534ee53" - }, - "title-cjk-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "f421339b-fc3b-4d4e-86b4-65a63584131b" - }, - "title-cjk-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "57a5eaba-935d-47e5-9cc4-cc1da6a330de" - }, - "title-cjk-line-height": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-100}", - "uuid": "999ba22a-87b6-45fe-9e89-9911f34ea330" - }, - "title-cjk-size-l": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "2fcf237b-6988-4c31-a806-f4176b94c2a8" - }, - "title-cjk-size-m": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "d1bccaa7-731f-4df2-a4c3-9dbec33145fd" - }, - "title-cjk-size-s": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "a134fab9-7606-453d-a64f-fd2daa989283" - }, - "title-cjk-size-xl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "99472fda-7d17-45d5-b2ba-0c79a45d628f" - }, - "title-cjk-size-xs": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "f5966933-93a3-4615-a19b-b94d6a0367da" - }, - "title-cjk-size-xxl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "abbc512e-fdce-4025-9d08-5a71692cf523" - }, - "title-cjk-size-xxxl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "223b1966-4dbb-4e89-b508-9191ffedc97c" - }, - "title-cjk-strong-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "55c1dcc1-f296-47eb-989b-ae5e22748869" - }, - "title-cjk-strong-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "ba6356fb-cada-4786-9306-71b940e61ca8" - }, - "title-cjk-strong-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "85e5ba03-3f0a-4245-a26c-ac9c3df23d1b" - }, - "title-cjk-strong-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "93e5a426-7229-46ee-89f6-a84f7084592b" - }, - "title-line-height": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-100}", - "uuid": "e1397d35-0c23-410c-a213-65db1eb4887f" - }, - "title-margin-bottom-multiplier": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, - "uuid": "73a0bd28-7691-47b0-9e9b-62ec22940e63" - }, - "title-margin-top-multiplier": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, - "uuid": "14d9dc6c-28fc-41cf-a1ae-600a150f520a" - }, - "title-sans-serif-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "98fd5c98-b53d-49f0-bce1-705b53ae9ae4" - }, - "title-sans-serif-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "4fe9b508-ff74-4819-8188-e080d814d9ef" - }, - "title-sans-serif-font-family": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "9a65d2f0-87c0-404b-9965-6e4b00efeda8" - }, - "title-sans-serif-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "faa965d6-42c0-40f9-802e-ff0ea69d740d" - }, - "title-sans-serif-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "58a27a2e-58c6-42dc-b860-1a8458966da4" - }, - "title-sans-serif-strong-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "39c10c1e-56c1-4a94-b5b9-a91a2db92050" - }, - "title-sans-serif-strong-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "ab0482d5-ff9a-4c50-876b-ed5accf067a4" - }, - "title-sans-serif-strong-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "871928bc-14ac-465d-b245-c39bcf265a72" - }, - "title-sans-serif-strong-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "ace1f3cb-629c-4172-b64f-a8b1f5afbdcc" - }, - "title-serif-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "cf6281f7-00ef-437e-b89b-d6d774818f0b" - }, - "title-serif-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "3abd6cd1-42f5-4b4b-9732-bb826fe0a740" - }, - "title-serif-font-family": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{serif-font-family}", - "uuid": "b3098f42-d73e-4228-a4f9-9be4b0c46ce8" - }, - "title-serif-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "70955f1b-4124-432e-bd9d-c5b42c890195" - }, - "title-serif-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "23cf3a6f-911c-4e64-8952-7412bc7f4629" - }, - "title-serif-strong-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "6359f577-d462-456b-a748-ceecb893b4a2" - }, - "title-serif-strong-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "c2a2882b-f048-4580-96c8-76556fccc87c" - }, - "title-serif-strong-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "6d2f0e78-e527-41c7-8843-af89a9790da6" - }, - "title-serif-strong-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "a0367ebf-8cc8-4aa0-80c4-ccf4a03644a3" - }, - "title-size-l": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "0fb9e5ec-e5b7-41e0-8ef4-db9e4e33e060" - }, - "title-size-m": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "6d63a369-4261-44a4-bf8d-a567dffa8ef6" - }, - "title-size-s": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "0babc342-b506-495d-aaf1-20fe9e571e1b" - }, - "title-size-xl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "b5aaaa50-721b-4b41-ad90-345cd995f69e" - }, - "title-size-xs": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "68dac9e8-9b07-4453-8cb2-24ed349d2134" - }, - "title-size-xxl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "d4c4db99-70f2-4c79-8595-4d23407de068" - }, - "title-size-xxxl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-600}", - "uuid": "56152e6a-3058-4467-86a1-34fa2b6f75b2" - }, - "opacity-checkerboard-square-size-small": { - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "2537f52b-5cae-4a35-a1f3-b1d4fe89060d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "0916cc84-f46f-45c3-b76d-d7d85d576480" - } - } - }, - "alert-banner-top-to-alert-icon": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "37px", - "uuid": "fa14092c-ef3f-4b11-8bc8-968d22bed6e0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "29px", - "uuid": "7939208b-2f8c-4569-b7cb-1c1bcfc8705a" - } - } - }, - "accordion-top-to-text-spacious-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "696ab6c1-0c23-4868-8d6c-039d6d430d29" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "7bcbaaf1-f1d8-4755-acb2-5f6a45c3b9fe" - } - } - }, - "field-default-width-small": { - "component": "field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "39c39c14-0500-4bf6-a542-967697aaff41" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "976298d3-326f-43da-aa71-bbd2dc1fad3d" - } - } - }, - "field-default-width-medium": { - "component": "field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "208px", - "uuid": "f35ec29c-b8ee-46c9-9c8c-c40171a15920" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "256px", - "uuid": "db379ff6-9ef2-44ee-9fce-32f1a53d68da" - } - } - }, - "field-default-width-large": { - "component": "field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "224px", - "uuid": "c6d08f8b-4e8c-478a-8b08-5b69d2da1a5e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "272px", - "uuid": "88dfd273-555a-49bc-9271-a63ad45964e2" - } - } - }, - "field-default-width-extra-large": { - "component": "field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "23090def-780a-48cb-b644-8edd55189d46" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "068a256a-8dfc-4616-bdc1-8895441ba90b" - } - } - }, - "tag-minimum-width-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "d3327dae-cc93-4099-ad75-b5a4193af8e4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "3b9e5d81-e49a-4080-ac53-094e0f7eb151" - } - } - }, - "tag-minimum-width-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "9b373ba1-7381-4360-8730-bd91afacbfa7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "40485b19-e1ac-4981-a17c-bb6e264c730d" - } - } - }, - "tag-minimum-width-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "33px", - "uuid": "234b3886-77eb-4ad5-9d19-40d801a54617" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "b2788159-dd2d-4f94-9282-d8cdbba41807" - } - } - }, - "combo-box-visual-to-field-button": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "6c3c7201-2f5b-455a-bcbf-5e3d783887bf" - }, - "in-field-button-edge-to-fill-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "0171b422-021a-4f25-bbe3-7d6ca6459166" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "a2143caf-07e6-4d45-977c-3d79d69c335e" - } - } - }, - "in-field-button-edge-to-fill-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "86f41898-b794-4f7e-ae41-9eb84c2c7a5b" - }, - "in-field-button-edge-to-fill-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "44e97486-53ce-4bb0-a778-0f9262dfe27e" - }, - "in-field-button-edge-to-fill-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "4b212f73-7a28-4d95-b06b-6d3f0d7e5cf9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "61cf3878-48bd-4785-ad71-ec35c4f99656" - } - } - }, - "in-field-progress-circle-edge-to-fill": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "b49756fe-40d5-439a-ba07-4e5eb07e7cc5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "1263a125-9e9d-4eb4-8b71-024899dcf623" - } - } - }, - "in-field-progress-circle-size-75": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "dbb4f6bf-ddfb-4184-babe-63815cad7202" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "c43c89a6-2ae5-4d29-99ab-2c64e153d4e7" - } - } - }, - "in-field-progress-circle-size-100": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "ef5f40e8-d6e9-45a7-b8cf-1689e44e713c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "c522b33c-93b8-491f-b4df-c241f5b5ade8" - } - } - }, - "in-field-progress-circle-size-200": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "86567889-978e-4dfe-8412-42c8f33c3f44" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "85377238-7488-42e0-99ce-f4fd73316d24" - } - } - }, - "in-field-progress-circle-size-300": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "32d0a47d-c4bb-4955-aef0-28e07f429b92" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "9e740bd1-b98a-416a-be82-20e222cab3b1" - } - } - }, - "alert-dialog-description-font-size": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-m}", - "uuid": "eda300de-5f0a-42e9-9880-9244a45d4e7d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "e969f730-9eea-4a35-8981-2804d660c23e" - } - } - }, - "alert-dialog-title-font-size": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xxl}", - "uuid": "749fa425-de12-464d-a1e2-80eb135d3ea6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "c84328d2-578b-4a36-9065-6c6a9e1d311f" - } - } - }, - "coach-mark-body-font-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-m}", - "uuid": "4b88a0d5-2d07-4e63-afa6-cdd611f0a8c1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "73959c3d-afc2-4f6e-bd34-0399bf3b5b73" - } - } - }, - "coach-mark-pagination-body-font-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "06ae2458-8490-4741-8a02-97f60cc01592" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "4f8c99a5-0942-41b0-ac41-923ea9ca2bf2" - } - } - }, - "coach-mark-title-font-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-m}", - "uuid": "5b132698-4ee2-40e4-83c0-9ad80f36f5fd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-s}", - "uuid": "45855bc5-3b86-49a9-b443-7be9aa763c4e" - } - } - }, - "standard-dialog-title-font-size": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xxl}", - "uuid": "d4e81ac4-8855-4ac4-b28f-ad054f74e517" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "02c75ba4-2c9f-45f3-8e74-c9a1065142ac" - } - } - }, - "standard-dialog-body-font-size": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-m}", - "uuid": "84aa108a-3c23-494f-b9c0-da64acdbeb79" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "f33e2125-0424-4329-bf60-ec42a15c36bc" - } - } - }, - "standard-dialog-maximum-width-small": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "400px", - "uuid": "c00d9b06-f198-4cd5-9b69-ed3796314dab" - }, - "standard-dialog-minimum-width": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "27f2bc13-53e4-4416-8592-a2a44909d22d" - }, - "standard-dialog-maximum-width-medium": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "480px", - "uuid": "1c886eb9-f651-42ce-baff-9b3996077f92" - }, - "standard-dialog-maximum-width-large": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "640px", - "uuid": "5ec703d4-19d9-4be5-976f-e4c1966c0d3d" - }, - "status-light-text-to-visual-75": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-visual-75}", - "uuid": "ea98b9b0-20b5-4f19-aa4f-375559b1362a" - }, - "status-light-text-to-visual-100": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-visual-100}", - "uuid": "752a84f5-cbb7-4d18-85ca-fc913a061bb5" - }, - "status-light-text-to-visual-200": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-visual-200}", - "uuid": "d3e53f14-b91e-4d10-8508-17360ae5620e" - }, - "status-light-text-to-visual-300": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-visual-300}", - "uuid": "ee780be7-b32c-4da8-a6bc-fc0897799537" - }, - "link-out-icon-size-75": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "1e41d09e-684e-4f87-ae85-4bc95f958c0e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cb87186b-47aa-4baa-a47d-91b5e9f7965e" - } - } - }, - "link-out-icon-size-100": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cc8ad91e-22f2-4f59-ae8c-99d2c1433d6e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "083c11fe-1e10-46f5-9e71-3fcc2567fe2d" - } - } - }, - "link-out-icon-size-200": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "f78418a4-5b55-418b-9c90-7f388d5bb275" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0062482b-0339-4632-9b40-89b5f1a440cf" - } - } - }, - "link-out-icon-size-300": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "66e386cd-e3b5-424b-b89b-27fe9aaf5ad1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a063db0d-81cf-45e0-988e-2224307560ba" - } - } - }, - "link-out-icon-size-400": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "54227cbe-b962-46de-b40a-d1ea759425a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "1bcd281a-38b0-4e83-8667-536351dd14ec" - } - } - }, - "menu-item-label-to-description-small": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "66d57402-d7db-45df-8872-fd362014bcbe" - }, - "menu-item-label-to-description-medium": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "608fd592-fff8-435e-88e2-846bd34cc235" - }, - "menu-item-label-to-description-large": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "4ce8b4db-72f8-411b-baad-8b66c0496182" - }, - "menu-item-label-to-description-extra-large": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "5543ede1-4e55-44f5-920f-288ee96e06ca" - }, - "menu-section-header-to-description-small": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "ac039575-7c1f-4733-a310-b39cebf83b82" - }, - "menu-section-header-to-description-medium": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "4211feff-12af-4288-b86d-4c66a5a55b8f" - }, - "menu-section-header-to-description-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "2899d6e1-acad-453b-ad65-1e6a6e380363" - }, - "menu-section-header-to-description-extra-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "c9e46b75-f1d8-4b19-a258-b8b0a0e66484" - }, - "menu-item-top-to-thumbnail-small": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "456d5283-eb93-4b8d-b796-7f181ebcec04" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "af422766-3185-47d6-adba-31b1e97b92d9" - } - } - }, - "menu-item-top-to-thumbnail-medium": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "f71c4487-3c1e-4204-b631-b0658a6b5e12" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "62815f67-4e23-43f9-93d2-f29d1688cddf" - } - } - }, - "menu-item-top-to-thumbnail-large": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0d468b92-74df-4044-8af3-c867eebbf370" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "64b2f613-35b2-46a8-be7d-c39c314840b9" - } - } - }, - "menu-item-top-to-thumbnail-extra-large": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "06a6c13b-2d58-4102-b169-073eed5599e6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "dfeef197-57b9-41a1-b759-3c782a64f2f3" - } - } - }, - "menu-item-background-opacity": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "6f464689-0b87-4f38-b9a4-e5015acdd0d7" - }, - "illustrated-message-small-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-m}", - "uuid": "f21da7b8-ba19-43e0-96e5-f9e60476ef6e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-s}", - "uuid": "ef8d0abb-9652-4db3-8f1d-506c03e5e115" - } - } - }, - "illustrated-message-small-cjk-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-m}", - "uuid": "9a6cf390-ca10-4242-a7d4-da4c9acc4058" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-s}", - "uuid": "a144455d-6bb3-43d4-828c-6b6f67ae9c51" - } - } - }, - "illustrated-message-medium-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "8e2d1a48-937c-4493-9624-5ca8383f74bd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-l}", - "uuid": "65961091-abdb-4155-9887-4aebe857c4fd" - } - } - }, - "illustrated-message-medium-cjk-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-xl}", - "uuid": "ee763c7d-b98f-4f2e-9fc4-764cfa2ac53f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-l}", - "uuid": "1cb0c913-f4ec-478c-b92d-4c9d78875362" - } - } - }, - "illustrated-message-large-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xxl}", - "uuid": "abfe147d-04dd-45bd-8e86-eae6249e1745" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "05104cea-7882-4f80-a994-3e072d29eec2" - } - } - }, - "illustrated-message-large-cjk-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-xxl}", - "uuid": "1929c819-5333-43ad-ba6c-fcf236270251" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-xl}", - "uuid": "e3c5a7ed-94f9-4938-9b92-b411e971af20" - } - } - }, - "illustrated-message-small-body-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "fad078e5-1791-4003-994d-3567162d8233" - }, - "illustrated-message-medium-body-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "ca0d9e22-35a8-4ae5-99ee-29cce3ffa0bd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "32b359dc-b489-4476-afbd-1c04e6b0ff0e" - } - } - }, - "illustrated-message-large-body-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "0208e74a-4a86-42e4-a5d0-f931715c293b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "f4956b2c-dfda-4449-850b-36cf3a82ea09" - } - } - }, - "drop-zone-title-font-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-medium-title-font-size}", - "uuid": "07564dd0-3628-42e1-8a29-253448a8c75f" - }, - "drop-zone-cjk-title-font-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-medium-cjk-title-font-size}", - "uuid": "56fc89be-658e-4c5c-9b8e-7ac6f7d7db75" - }, - "drop-zone-body-font-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-medium-body-font-size}", - "uuid": "644593be-82da-4ae4-ae57-fabebd4513ca" - }, - "breadcrumbs-separator-to-bottom-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "ba160ed7-e66b-4dd1-bef8-e91fe9b05d2c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a1c90c6d-851d-495f-99cc-bbeb0c6fdd4f" - } - } - }, - "breadcrumbs-start-edge-to-text-large": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "04141c6f-50ff-4301-a7b5-315bbd9cac18" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "1d7bd78d-4469-4385-89e7-fcd574cc6368" - } - } - }, - "breadcrumbs-start-edge-to-text-medium": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "941f9040-ddb7-419c-ac05-dfa24effa055" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e87a054b-dceb-4462-a8fc-733700cc0f79" - } - } - }, - "breadcrumbs-start-edge-to-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "3dd655e7-f0d4-4fa4-a885-4a7aff9510fd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "60a75c05-a9cd-4ecf-89e5-0bca9e137e9f" - } - } - }, - "breadcrumbs-top-to-separator-large": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "2e8091e4-f60b-438c-bcbb-111eb243900d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "2e12202a-8099-4a4d-b06d-703deaf20862" - } - } - }, - "breadcrumbs-top-to-separator-medium": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "fdbf3b4b-7d6e-4464-8514-17c1b4790db6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "fcbd2bcb-7f53-4219-9d6b-89c01fd50da7" - } - } - }, - "breadcrumbs-top-to-separator-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "96d7dff4-4b3d-433a-8f83-8f55a1514812" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "4b7eab87-e6a8-40f6-a071-5aff25493f2f" - } - } - }, - "breadcrumbs-truncated-menu-to-separator": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "963bd7ed-cfc9-4a93-a8a6-a2340ec6479f" - }, - "breadcrumbs-text-to-separator-large": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "3e19f21e-0c87-4eca-bc21-d4c13bc984ef" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "25d8256e-b05f-43e8-bbc3-5b60c24be29c" - } - } - }, - "breadcrumbs-text-to-separator-medium": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "74d2cda7-385e-4145-8a3e-26065db5e302" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bf2e3518-154e-4975-b9fb-acbf60b7e154" - } - } - }, - "breadcrumbs-text-to-separator-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "0d4dd9ba-5b01-432d-a7b2-d95947cfc43d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "fbf763fe-9e35-4cdc-a5ed-9f90e03d23bd" - } - } - }, - "contextual-help-body-font-size": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "393e9a11-77f6-42a7-973b-34c673ad8afb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "1d817b1e-7916-4443-b04d-aa232b089f67" - } - } - }, - "contextual-help-title-font-size": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-m}", - "uuid": "16ee4dfd-afbe-482b-943e-03e2614037dd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-s}", - "uuid": "965f0854-0f3c-4d6e-9e21-54542ecf1a17" - } - } - }, - "coach-indicator-collapsed-ring-rounding-increment": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "252dc667-b847-4295-8669-3e2f4d408f51" - }, - "coach-indicator-expanded-ring-rounding-increment": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "770aa608-80a3-4715-894b-c1d85a1b0c5e" - }, - "coach-indicator-collapsed-ring-thickness": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "fff486aa-26a4-4b41-91a7-762f8b29d47a" - }, - "coach-indicator-expanded-ring-thickness": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "09c84cdf-0c82-4201-8203-9eb05d8b9486" - }, - "coach-indicator-collapsed-gap": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "adb8eace-decc-4bef-93e9-ff2cb27e9ce6" - }, - "coach-indicator-expanded-gap": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "b25c696f-c6c3-45af-bdc9-fe3a046067f3" - }, - "coach-indicator-opacity": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.2", - "uuid": "6fa9bbc8-4c96-45a4-b133-bb2556a003de" - }, - "accordion-content-area-edge-to-content-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "b7b23a23-abca-4e96-8c6f-d2b5b4c79d99" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "782d9dfd-413f-4031-8431-be9b638c69b6" - } - } - }, - "accordion-content-area-edge-to-content-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "66fbf171-ff30-4376-9026-686ae3e2fc70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "80419f6a-d93a-4cc0-883a-833e4717e28f" - } - } - }, - "accordion-content-area-edge-to-content-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "755f796f-bcb6-466c-b4f2-b10b0f819bba" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "f4d133f7-d444-4ddc-907f-9d75ff621a03" - } - } - }, - "accordion-content-area-edge-to-content-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "c26ba15a-cb44-44b2-8423-baf52b1b42db" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "c9aaff95-a17a-408b-bb55-1c9026314c8b" - } - } - }, - "accordion-disclosure-indicator-to-text-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "e6cb7eb7-afa3-441f-9f22-5ca8eec66749" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "f009b7a8-95ca-4b39-92c3-f7656cf2e429" - } - } - }, - "accordion-disclosure-indicator-to-text-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "e28ca787-7457-4f40-9188-039347047c83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "f62edd6d-b833-4aea-8e03-ddd1dfccc464" - } - } - }, - "accordion-disclosure-indicator-to-text-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "802cef85-0ad5-417b-953f-66a812e6637e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "fae0b204-0198-465a-aa98-c7b4224e4c48" - } - } - }, - "accordion-disclosure-indicator-to-text-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "90fe1ad4-76a8-4b02-a036-af6d4397334e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "aafcb612-0828-48c7-af1c-39870aafd44a" - } - } - }, - "accordion-item-to-divider": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "9a2c9dee-7acf-4083-9c66-685454444f8c" - }, - "meter-thickness-medium": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "6e404f16-900e-4dd2-8705-3c9077f52240" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f9a81245-4bcb-4fca-8a4b-04ac78d9d1ca" - } - } - }, - "meter-thickness-extra-large": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e5ac2b35-da1d-4936-baa8-498705c9529c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "272738b2-a274-4e2e-8582-9c2cc7962a85" - } - } - }, - "thumbnail-opacity-checkerboard-square-size": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "0322f848-009a-45c4-ad4a-17d8f7e41995" - }, - "thumbnail-corner-radius": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-75}", - "uuid": "13681294-e3c6-4898-a17e-943932a53c08" - }, - "action-bar-top-to-content-area": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-200}", - "uuid": "cfa41a43-8fb2-4c3b-a2df-f8658c87b31b" - }, - "action-bar-bottom-to-content-area": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-200}", - "uuid": "3116a00c-0ad3-4ae6-9fbb-f9b5624a2708" - }, - "action-bar-edge-to-content-area": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-100}", - "uuid": "a9fc8786-060e-4663-9381-211621240b2f" - }, - "action-bar-close-button-to-counter": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-control-50}", - "uuid": "bc54e89f-6740-4004-891e-c515f8f79693" - }, - "action-bar-counter-font-size": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "66540ddb-ec74-487f-8e09-a37b436694b5" - }, - "swatch-group-spacing-spacious": { - "component": "swatch-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "b80ef303-eae7-498f-b172-73a098be0f0b" - }, - "swatch-group-border-opacity": { - "component": "swatch-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.2", - "uuid": "19968846-dad0-42eb-b6a8-af65f3a910ff" - }, - "avatar-border-width": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-100}", - "uuid": "2d4cd3ad-cc2c-4ad5-9475-c73882c5201e" - }, - "avatar-group-size-50": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-50}", - "uuid": "d55ab204-ee6c-47e3-a21b-25543c8fc36b" - }, - "avatar-group-size-75": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-75}", - "uuid": "420c8327-fa41-4919-9e01-4d58178d739b" - }, - "avatar-group-size-100": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-100}", - "uuid": "1c869018-8c56-4c10-acea-7fc6e838aa09" - }, - "avatar-group-size-200": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-200}", - "uuid": "590ef940-55ea-4690-a403-e4b47a185a64" - }, - "avatar-group-size-300": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-300}", - "uuid": "5e60d980-21db-4bbd-b321-a20808571411" - }, - "avatar-group-size-400": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-400}", - "uuid": "80e446ee-0091-4c6e-9158-e15fbc6207a4" - }, - "avatar-group-size-500": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-500}", - "uuid": "4bf63b03-931b-47ce-bb1a-4bd4e2cd82c1" - }, - "avatar-to-avatar-50": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "4328bc86-01d4-4467-b99a-33099effe781" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-5px", - "uuid": "b395e912-9061-44bd-ab77-840cde0f3e80" - } - } - }, - "avatar-to-avatar-75": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-5px", - "uuid": "4970f7de-506d-4e2c-9412-8ebd268c5da3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-6px", - "uuid": "889a7ebb-86b7-4615-87ee-e75aa4b48d60" - } - } - }, - "avatar-to-avatar-100": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-6px", - "uuid": "273888c7-abc9-4af8-802a-e8ecf864f2fa" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-7px", - "uuid": "bacd5b38-1eed-49d6-9513-f363315f2a23" - } - } - }, - "avatar-to-avatar-200": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-7px", - "uuid": "629d5ce9-487d-4ee9-be0d-5ff24c66d174" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "7815e63c-1d4f-4ee0-a656-a6053595ad59" - } - } - }, - "avatar-to-avatar-300": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "e345324b-640f-4f45-88c6-4765ca97ea22" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-9px", - "uuid": "04481b80-1c05-416a-95cf-c0c85147ce2e" - } - } - }, - "avatar-to-avatar-400": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-9px", - "uuid": "63c5deff-94da-4981-ba9a-fd46b4372830" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-10px", - "uuid": "5c733ac6-d7b9-44f0-8827-1d8232ca5332" - } - } - }, - "avatar-to-avatar-500": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-10px", - "uuid": "8b6b74b4-e7c3-4f7c-a2b6-f410fcc17a83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-11px", - "uuid": "c980c4f4-f2c5-4963-873e-de275f3353d1" - } - } - }, - "code-cjk-size-xl": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-xl}", - "uuid": "a2e258a0-21f6-44d7-9bfe-0052620e5ac2" - }, - "code-cjk-size-l": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-l}", - "uuid": "15e8593b-1b86-40e0-ae88-fcc587e24373" - }, - "code-cjk-size-m": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-m}", - "uuid": "69436fba-18a7-4a28-b6c5-683a8838917c" - }, - "code-cjk-size-s": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-s}", - "uuid": "80c3d9ab-39d1-4329-a88f-bb84c3afd17f" - }, - "code-cjk-size-xs": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-xs}", - "uuid": "6b577e2a-09c0-42bb-8b94-42034df63036" - }, - "standard-panel-width": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "260px", - "uuid": "41cd9d92-4d69-4aaa-9c95-e980aa5eb992" - }, - "standard-panel-minimum-width": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "37ab7428-8175-409f-8e74-55e51a962139" - }, - "standard-panel-maximum-width": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "400px", - "uuid": "11400ef3-c995-41bc-8a9d-eb389d95f360" - }, - "standard-panel-top-to-close-button-compact": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "66f385cd-b60b-42dd-bfdc-aba2db6e35a2" - }, - "standard-panel-top-to-close-button-regular": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "968a056e-4397-4a71-91f1-a0f1ebb6f751" - }, - "standard-panel-top-to-close-button-spacious": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "96572147-20a9-4089-9904-0a0efa42a5af" - }, - "standard-panel-edge-to-close-button-compact": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "6364d657-804c-4753-832d-09bfdf5ad36a" - }, - "standard-panel-edge-to-close-button-regular": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "f2c9847f-2c3f-4e2e-94ed-59b6cc58f34a" - }, - "standard-panel-edge-to-close-button-spacious": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "b9c04337-a6f5-42db-9bf9-a761c0d9f876" - }, - "standard-panel-title-font-size": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-s}", - "uuid": "ce8278ea-da1b-4a42-bf7d-4018c9e9d18e" - }, - "illustrated-message-horizontal-maximum-width": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "535px", - "uuid": "4413ee4d-86b1-4d88-b2ee-64c0939698b9" - }, - "illustrated-message-vertical-maximum-width": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "380px", - "uuid": "95c055b0-f688-4405-8426-1b2302e32ebd" - }, - "bar-panel-width": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "c0e0d08b-e22f-44d3-b547-6bd173d00e1b" - }, - "bar-panel-minimum-width": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "db0862a7-3a92-4c24-a06a-d20acfd94e1b" - }, - "bar-panel-maximum-width": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "00c313bf-61be-4f5a-9d26-3e9f1ea0e950" - }, - "bar-panel-spacing-extra-spacious": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "5fbb857b-5703-4e8e-bba4-86720ca261bd" - }, - "rating-top-to-content-area-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-75}", - "uuid": "8cf415d3-57f2-41c6-a175-40c75b58a79e" - }, - "rating-bottom-to-content-area-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-75}", - "uuid": "360ab235-93bf-482c-9ff1-387d69f018e1" - }, - "rating-edge-to-content-area-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-75}", - "uuid": "a2ad2062-a115-4abb-859b-f9d307b44744" - }, - "rating-top-to-content-area-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "6b99f788-336d-4159-819e-29050f8b571a" - }, - "rating-bottom-to-content-area-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "897117a7-4e29-4fc2-85b4-1b2aa882ff7b" - }, - "rating-edge-to-content-area-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "888c8501-b709-4b72-9d19-504e3b0befb4" - }, - "rating-width-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "104px", - "uuid": "b54da2cd-9d1e-498f-a52c-7be5e825c2a2" - }, - "rating-height-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-75}", - "uuid": "7e0c3f30-31f5-4fa2-b353-a739c904d796" - }, - "rating-width-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "128px", - "uuid": "91a0e740-8f77-4d4a-b34c-d673afc1093b" - }, - "rating-height-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "d7f24ef9-eb71-45e8-96a1-7e48ddc56964" - }, - "select-box-horizontal-minimum-height": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "3d6fc9f4-1f22-4e1d-a602-e00079dd2057" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100px", - "uuid": "c731f83e-152b-44ad-818f-460dc1d29228" - } - } - }, - "select-box-horizontal-width": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "368px", - "uuid": "04fcbf2f-ffe1-4f26-99d1-59a3deb053ed" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "460px", - "uuid": "d406a096-aea6-4e39-818a-52d82b3c5031" - } - } - }, - "select-box-vertical-height": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "170px", - "uuid": "fe57d82a-5365-441a-9bd5-8f2c71c2ba83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "212px", - "uuid": "2a6a9aef-2c75-43e4-856d-c797900c713f" - } - } - }, - "select-box-edge-to-checkbox": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "70a20970-ebd9-48a7-8324-44d352f79978" - }, - "select-box-horizontal-end-to-content": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "a99ea589-33e4-4196-8c49-77a0d0d522ed" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "9c78208b-bb4f-4cda-82f0-a38f68d33172" - } - } - }, - "select-box-horizontal-illustration-to-label": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "b98f3e7a-d30a-49f7-80fd-d793554eaf6d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6c8580ac-c2c4-4d62-8a9d-b0498dd0b69b" - } - } - }, - "select-box-horizontal-label-to-description": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "94b742aa-bec9-43bc-81ad-a913191481d1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "255479ac-24f5-4128-bba0-258ec68026af" - } - } - }, - "select-box-horizontal-start-to-content": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "9ab0ef93-1293-48e9-911c-2ea32f15b44b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "009afde4-ea54-4025-aaa0-7df7e5e50229" - } - } - }, - "select-box-horizontal-top-to-content": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "736900ff-ea3c-4c5b-85b6-080524cb78fc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "75f16efb-6905-4091-bd87-bd08494a92bf" - } - } - }, - "select-box-top-to-checkbox": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "237b6422-31fd-4729-98f1-451b7bd27a4d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "011f2ccf-b2fb-4da8-94c4-29fc0a5b9a71" - } - } - }, - "select-box-vertical-edge-to-content": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "ef9b9dd4-5e45-4c1a-8874-f097fd892352" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "e807df92-1c13-4394-ace9-cb998ada9395" - } - } - }, - "select-box-vertical-illustration-to-label": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f6a52618-bf5d-4a9d-ac95-e5a6d002851d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "8a805540-3b26-4b50-8a0d-0c7beb13885e" - } - } - }, - "slider-control-to-field-label-editable-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "882a70c2-afd4-483a-adf5-5437dd34fcba" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "5816b3c6-937c-47b8-9bdd-ebc69224831b" - } - } - }, - "slider-control-to-field-label-editable-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-12px", - "uuid": "4cdfa762-9580-4fff-a396-1538666ef8d7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-16px", - "uuid": "a5326ae9-27b6-450c-b88f-d4b89a06502a" - } - } - }, - "slider-control-to-field-label-editable-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-16px", - "uuid": "c849ce3c-0e3a-4882-a061-021eed8d55d8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-20px", - "uuid": "657325f5-74e4-4d39-8ba4-f480c141da79" - } - } - }, - "slider-control-to-field-label-editable-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-20px", - "uuid": "e82d0719-2d65-438f-a9a6-f61c80a80376" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-24px", - "uuid": "23f0c597-a889-4653-8870-df86101fe544" - } - } - }, - "slider-control-to-field-label-side-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2d3a0c09-3f66-42da-8276-a7dabc6c4cd3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "31e670e4-2400-4705-a0e8-cef9cbca9869" - } - } - }, - "slider-control-to-field-label-side-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8d294c76-353f-42f0-8aa9-8c489a90ac14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "5d470123-0f06-4319-b299-b8f5d80c7c94" - } - } - }, - "slider-control-to-field-label-side-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "dff9511c-7b97-4cfb-abff-953be7228e28" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "095779c9-64fc-4a51-8a0a-f8b452fb3650" - } - } - }, - "slider-control-to-field-label-side-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "4dc8268e-42c5-4c3c-a17a-fe0f7227facc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "19036695-7f27-4c08-babc-45226b7bf920" - } - } - }, - "slider-control-to-text-field-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "52edd5bd-f859-487b-bc89-db09fa523025" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "526c8840-b08c-401b-8242-32c1cb574b58" - } - } - }, - "slider-control-to-text-field-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "600b162b-5a37-4c01-9fa2-05df934433cc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "a99118fc-9837-4460-b4ae-9c7ffaa20ce0" - } - } - }, - "slider-control-to-text-field-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "281d3ab8-c760-4240-a349-2b9986eeecfe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "d20985d9-2d46-4744-84a7-21baad0eb8cb" - } - } - }, - "slider-control-to-text-field-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "6c592cd0-9d00-478c-a001-b7d4f3e851f9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "41601fb4-8571-4e7d-91b1-ea7b69ca8a1d" - } - } - }, - "segmented-control-selection-border-width": { - "component": "segmented-control", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-200}", - "uuid": "10f93760-7b09-4a4e-8cc2-33783e571926" - }, - "slider-handle-height-precision-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "c2e986a2-2b56-4a82-b4a2-87850ca90d8c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "a93712dc-247e-46f4-bb42-d2d1b8896d7e" - } - } - }, - "slider-handle-height-precision-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "0d211640-08bf-4a09-98d8-1398ba70b072" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "18e1a338-5256-41a4-88f7-76b7fb3911c6" - } - } - }, - "slider-handle-height-precision-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "2305cfb2-f26d-44e0-90ef-3258b8f46e0d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "5aa8e5c5-2156-49e6-9bb8-ad99b4a1b997" - } - } - }, - "slider-handle-height-precision-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "1aa8c3a6-29ff-44ec-9b11-51c041ef44f1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "01ca9561-7b0b-4030-ba1b-85d336537ebc" - } - } - }, - "slider-handle-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "688b473d-84bc-4964-b985-63cf5fdbf7d4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "fea1de33-ef0f-4c50-ab19-75542f995d35" - } - } - }, - "slider-handle-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "404ce1f8-593c-4738-b9a6-d1969a95b20e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "b17da639-665a-4a4c-8105-f30503b823a0" - } - } - }, - "slider-handle-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "920a0f76-d61d-4362-8b50-fb6a98e62229" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "3f14b28b-1289-4a72-89b0-b2fbcf54325e" - } - } - }, - "slider-handle-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "0b83b5fd-117d-4257-bf77-fce39bfa8e3b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "caa26be5-d26c-4e5a-aae8-87e0380920da" - } - } - }, - "slider-handle-precision-width": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "94045357-9bb7-4d16-b035-342465834a92" - }, - "slider-track-height-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "c2eb2949-9471-4dc5-b02b-384627dbdea2" - }, - "slider-track-height-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "211a95ca-f83e-4711-83ed-a723258d8336" - }, - "segmented-control-item-height": { - "component": "segmented-control", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" - }, - "in-field-stepper-to-end-small": { - "component": "in-field-stepper", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "ec801932-08dc-4697-8725-5bc9d3ee230d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "90669b85-c7e8-4b68-b96d-61a51a2451b3" - } - } - }, - "in-field-stepper-to-end-medium": { - "component": "in-field-stepper", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "fe42bdd0-de02-4814-b498-038b26a3c0e7" - }, - "in-field-stepper-to-end-large": { - "component": "in-field-stepper", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cb3e458d-7dcd-484d-9028-220d08c9f129" - }, - "in-field-stepper-to-end-extra-large": { - "component": "in-field-stepper", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "8e57f77c-2921-44b8-a602-85300639f916" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "fbc42d9d-2f00-42ae-92e9-727cac69404e" - } - } - }, - "number-field-with-stepper-minimum-width-small": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "104px", - "uuid": "fcd3bdc5-5685-4b14-9ed7-7fd7bb11b584" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "126px", - "uuid": "08801f40-08ab-47df-82b8-e9cb8a63e3aa" - } - } - }, - "number-field-with-stepper-minimum-width-medium": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "120px", - "uuid": "c7f0b058-d896-4acb-9aac-d073682f8546" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "150px", - "uuid": "4268fc6a-118d-4b3b-a581-b2ab8a503f21" - } - } - }, - "number-field-with-stepper-minimum-width-large": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "144px", - "uuid": "ce84b84a-2036-4041-a121-31f69963bf6c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "174px", - "uuid": "71530ba4-3eb9-4136-b1d2-a28ae5ddf034" - } - } - }, - "number-field-with-stepper-minimum-width-extra-large": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "168px", - "uuid": "c5796762-5837-4600-92e0-5f11364ce471" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "198px", - "uuid": "9da98fb6-a90a-4805-8969-88d4a8958157" - } - } - }, - "number-field-visual-to-in-field-stepper-small": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "1b494a23-b312-43e2-8148-0d86777c38d4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "1e55a991-6d8f-4fc1-9dc7-91f86be50e3f" - } - } - }, - "number-field-visual-to-in-field-stepper-medium": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "2d2b2029-37ff-4563-a404-1347492ca7db" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "83dd3160-a826-4fa2-b643-a6f11533ba45" - } - } - }, - "number-field-visual-to-in-field-stepper-large": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "e041ee57-b8be-4c7e-a13d-ec2e2be05504" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "136a2c42-1868-4343-903d-9e7fbf345d45" - } - } - }, - "number-field-visual-to-in-field-stepper-extra-large": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "54f47bf6-78cc-409a-a83e-15f36404d548" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "777f9750-cfea-4eb3-ae08-a18c2fbde315" - } - } - }, - "number-field-minimum-width-multiplier": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.25, - "uuid": "9e24d9b5-1c8b-4693-b10e-8922d519d7e0" - }, - "takeover-dialog-height": { - "component": "takeover-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100%", - "uuid": "be327284-79fe-40b7-b996-8ad176d40d8e" - }, - "takeover-dialog-width": { - "component": "takeover-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100%", - "uuid": "bb70e39d-c686-4cd2-a991-6b51fa16d9df" - }, - "tree-view-disclosure-indicator-height": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "f9fcb5e0-d8aa-4077-bb8d-dd487ba9d7de" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "82ac143f-6009-4eaa-a797-c4b17277d416" - } - } - }, - "tree-view-disclosure-indicator-width": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "824d592b-c305-4c56-81db-c6566e6ebb2f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "e24897f6-7bfb-45c0-ab07-30bc1efc0b59" - } - } - }, - "tree-view-minimum-height": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "de8ed8b3-aee4-4d18-8728-01e6807bec7d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "36d1219e-f34a-4ee9-bfa0-a93a42046d94" - } - } - }, - "tree-view-minimum-width": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "160px", - "uuid": "2ab54eb5-8f32-4a01-b4ff-d5dc7a70f827" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "06c90c91-1598-4150-a431-e733ba39bec5" - } - } - }, - "tree-view-bottom-to-label": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "7ab9177a-d035-4e78-b6b9-d80a6470bd7b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "9136f55b-d28b-4802-873c-db6205b8632b" - } - } - }, - "tree-view-drag-handle-to-checkbox": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e8c03b6e-d493-43b6-ae46-a6a92de5c9b8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "5a77899c-1547-40da-bce3-d892cfbc0450" - } - } - }, - "tree-view-edge-to-checkbox": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "2e3817ed-206b-45e5-b55c-6116e9731cd8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "fba49c63-444e-42fc-b27c-7ce43b8419a7" - } - } - }, - "tree-view-edge-to-drag-handle": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "e8127c62-d8fa-405f-a5d5-d4f79bdffa5f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "f51d97ac-06c4-45a4-87ff-349b3ffbc36d" - } - } - }, - "tree-view-end-edge-to-action-area": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "91c6c1db-1f68-43b3-80ba-aa3c7ebecaec" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "66d490aa-b658-474d-99cf-f18d15cb4098" - } - } - }, - "tree-view-header-to-item": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-1px", - "uuid": "8f92e6b8-907f-42b2-81d6-83d1786495bf" - }, - "tree-view-item-to-header": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "ebf7358c-b691-45d7-a1c4-c346e75e800e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "a06c6929-1acc-4084-a8ee-3d4ad5a0064e" - } - } - }, - "tree-view-item-to-item": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{tree-view-item-to-item-default}", - "uuid": "9a04f19a-9e2a-43b9-9b1f-3385aef214ac", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use tree-view-item-to-item-default instead." - }, - "tree-view-item-to-item-default": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-1px", - "uuid": "7d44a2b5-0aa6-4770-81da-8dbd87013906" - }, - "tree-view-item-to-item-detached": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "c7c837c3-47ad-4ef1-a2eb-e4629628eb44" - }, - "tree-view-label-to-action-area": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "e5e3b415-97a9-436d-b46d-9bf48d7a2104" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "096032da-c0b4-4086-82e9-ab80c2b3d90b" - } - } - }, - "tree-view-level-increment": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "cf7044fe-e79d-44e4-8ae0-c9c23ac5b9ac" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "038d525f-357a-4441-934e-093d7342eba8" - } - } - }, - "tree-view-minimum-top-to-context-area": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "1569ef2c-0e00-4314-87d0-e8f703b9fee8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "50ce9fc5-eab5-4ab5-8dfa-a22d5b4361e9" - } - } - }, - "tree-view-top-to-action-button": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "20a69a94-ddc0-4581-bac9-1d0d2b3e0a48" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "7bea161d-9ee0-41b0-a31b-162926b28637" - } - } - }, - "tree-view-top-to-checkbox": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "6f33e161-86d3-40a4-b631-e7c8b9e9d337" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "b148e202-b43d-4089-b0d8-885fc99cb983" - } - } - }, - "tree-view-top-to-disclosure-indicator": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "138541e2-022a-4b03-b4d2-c6932ec56ac2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "aae1c8b3-2aa1-4463-ad84-a52f80a6a09b" - } - } - }, - "tree-view-top-to-drag-handle": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "7fc57ed1-9ca8-4b08-b19f-4aa8c49ca6f3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "bb805e5e-d65b-4daf-9116-288fa59ddbfd" - } - } - }, - "tree-view-top-to-label": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "a6a556b7-ff51-41e3-84d0-92fa8ef01ed6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "d2e3ca68-015b-47a4-96ea-0c380e931c09" - } - } - }, - "tree-view-selected-row-background-opacity-emphasized": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "d31772fd-95f3-413d-ab20-826033d71938" - }, - "tree-view-selected-row-background-opacity-emphasized-hover": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "a83e023c-dc92-4b3e-8375-351bbf8ec9bb" - }, - "action-bar-minimum-width": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "176px", - "uuid": "9fb582b4-38e6-43d0-9b94-69964fb24c9f" - }, - "action-bar-label-to-action-group-area": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-300}", - "uuid": "72e276ce-d6ee-4bcf-9955-91c833b8b2cd" - }, - "card-edge-to-content-compact-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "562738ca-ed16-4855-8855-3914b9109408" - }, - "card-edge-to-content-default-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "9ecb4a76-013a-4952-9646-a5660005b31e" - }, - "card-edge-to-content-spacious-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "91289dd0-0a27-49ef-96c9-3508edecfa44" - }, - "card-edge-to-content-compact-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "521df9e4-9c61-4a73-9157-d235a4d04090" - }, - "card-edge-to-content-default-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "569f8d0a-75f3-4743-aa51-9ec6479cdf21" - }, - "card-edge-to-content-spacious-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8ec39e04-de4f-48cf-9c8b-7bb7f76730a0" - }, - "card-edge-to-content-compact-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "f3566ff3-2430-4fdd-a48c-e8c0d3c34adc" - }, - "card-edge-to-content-default-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "04ef066b-4733-4d20-9538-7eefd71e7a1e" - }, - "card-edge-to-content-spacious-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "98ef0816-ad83-43ec-b976-1169a7ce8540" - }, - "card-edge-to-content-compact-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0b551228-5a6a-403d-bb92-9800835cb3be" - }, - "card-edge-to-content-default-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "8856270e-65b5-4f81-87c0-5332ffd7459f" - }, - "card-edge-to-content-spacious-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "73da978a-bede-439e-97cd-afeb32e87780" - }, - "card-edge-to-content-compact-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "a9f253aa-631e-447a-8335-15b4491a8e9d" - }, - "card-edge-to-content-default-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "7acf60d0-7870-403e-94b9-18e84eff861b" - }, - "card-edge-to-content-spacious-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "c4ee268c-aca6-488f-90db-d3e51a0c5c89" - }, - "card-header-to-description": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-75}", - "uuid": "e874d2cd-6ad6-4d1c-8103-789945f10294" - }, - "card-description-to-footer": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-300}", - "uuid": "248d1f30-c0d3-49bb-a5b7-0860cc75ee85" - }, - "card-selection-background-size-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "b9268c45-50c7-4209-9f73-99293e15b7fd" - }, - "card-selection-background-size-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "d169a0a3-9bda-41b4-9e58-897652c95627" - }, - "card-selection-background-size-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "f8e58ca1-5087-4c4a-95dc-2f145f63fbc5" - }, - "card-selection-background-size-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "89dca1bf-84e5-436e-9e86-35f37f739812" - }, - "card-minimum-width-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100px", - "uuid": "dad01ae6-b161-4d09-8296-33c6ee7d8ca1" - }, - "card-minimum-width-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "150px", - "uuid": "6d94093e-daba-4312-b083-61f44d027737" - }, - "card-minimum-width-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "813d9d3b-8e02-44d9-a898-3045947edc08" - }, - "card-minimum-width-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "270px", - "uuid": "549fbfad-78b7-430d-8fac-7d23084f2bea" - }, - "card-minimum-width-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "340px", - "uuid": "7a98c2aa-404f-4fba-a20d-f5b73919b13e" - }, - "card-default-width-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "120px", - "uuid": "b99da217-1715-446c-9120-53e435cb0d0a" - }, - "card-default-width-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "180px", - "uuid": "bec36248-9c3d-4ecd-857e-c5c20bdc0e1a" - }, - "card-default-width-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "5645fd64-11a8-4a0e-95f6-2f0cd89f5852" - }, - "card-default-width-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "dc3ab4d0-f006-4ade-91da-ef263a676244" - }, - "card-default-width-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "400px", - "uuid": "7a94daad-ec68-4ef1-9c84-9bf6c9b6b696" - }, - "card-maximum-width-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "140px", - "uuid": "9b2b13ac-1728-49f5-8e15-6eeed2e7f855" - }, - "card-maximum-width-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "210px", - "uuid": "42b0d345-b069-48b6-be41-6ed9047097d4" - }, - "card-maximum-width-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "280px", - "uuid": "ccfe1006-0ddd-4203-b0e0-4c92a090c376" - }, - "card-maximum-width-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "370px", - "uuid": "2e85d49c-4002-4beb-9173-f4b2ab78d043" - }, - "card-maximum-width-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "460px", - "uuid": "6f924664-b056-4fdb-a6ab-c5609e3e9316" - }, - "card-minimum-height-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "90px", - "uuid": "f4492a8a-8cb4-481f-a2e4-73da516023be" - }, - "card-minimum-height-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "135px", - "uuid": "862e84ab-4efa-4c8e-a0e0-5ed158dadbcb" - }, - "card-minimum-height-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "180px", - "uuid": "a29c460d-3496-49e9-8996-f4b42b9fbce7" - }, - "card-minimum-height-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "2047247e-07d1-4b9b-b184-c173e6421daf" - }, - "card-minimum-height-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "300px", - "uuid": "ef218a9a-900a-4454-840c-2380020bcbf3" - }, - "collection-card-minimum-height-extra-small": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "88px", - "uuid": "fabfd445-4c39-4d39-9f7f-1ec531d4eb40" - }, - "collection-card-minimum-height-small": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "124px", - "uuid": "9264b1ff-23ae-4fd5-8863-742c305689e2" - }, - "collection-card-minimum-height-medium": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "157px", - "uuid": "8422dc66-e17d-4c54-a18b-a997a8e5d7c3" - }, - "collection-card-minimum-height-large": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "202px", - "uuid": "e5027e50-3a1f-425d-b06b-8e4cf4663c22" - }, - "collection-card-minimum-height-extra-large": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "249px", - "uuid": "6b242eb5-aa73-417c-b786-9047ae7a65ac" - }, - "collection-card-minimum-height-hero-extra-small": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "168px", - "uuid": "dc2f0f1a-609a-448a-833d-ded2580ef737" - }, - "collection-card-minimum-height-hero-small": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "243px", - "uuid": "adfc74bd-7520-4bfa-b278-28178007cfbc" - }, - "collection-card-minimum-height-hero-medium": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "317px", - "uuid": "63ecc7ce-8a38-4d18-94ed-d9e6394279ba" - }, - "collection-card-minimum-height-hero-large": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "414px", - "uuid": "d5586b0d-1ff1-4e7e-88ce-75d41aff90d9" - }, - "collection-card-minimum-height-hero-extra-large": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "514px", - "uuid": "24d72e3c-ed0d-47d7-85f5-4792fcf87b7f" - }, - "user-card-minimum-height-small": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "f646530e-480c-4dbb-85fe-771eb5685966" - }, - "user-card-minimum-height-medium": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "202px", - "uuid": "53c81b30-6d98-4eaa-857f-15707d54a548" - }, - "user-card-minimum-height-large": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "219px", - "uuid": "7cf979ef-c47b-41f3-8230-49d67ad47740" - }, - "user-card-minimum-height-extra-large": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "236px", - "uuid": "9a9f173d-6262-490f-976f-bd9abb9ec355" - }, - "user-card-minimum-height-title-below-small": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "212px", - "uuid": "3373c4d2-d81b-4649-bc24-5251879778c1" - }, - "user-card-minimum-height-title-below-medium": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "224px", - "uuid": "5f4edfbc-eb2e-4dd5-add1-bf45530b0e61" - }, - "user-card-minimum-height-title-below-large": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "244px", - "uuid": "4cc4f673-912b-4e53-a75e-c8bd4603ab19" - }, - "user-card-minimum-height-title-below-extra-large": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "263px", - "uuid": "a603a785-8cd8-4caf-a2b4-cfe3371cc10e" - }, - "segmented-control-item-maximum-width": { - "component": "segmented-control", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "265px", - "uuid": "efa7a73d-611e-44a1-8ea5-0bad83ef77de" - }, - "steplist-step-default-width-small": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", - "uuid": "5fe717d5-b262-46d8-8386-5a94070337c2" - }, - "steplist-step-default-width-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "54px", - "uuid": "8606a7f5-fa38-4081-b0a6-4633e7442bd1" - }, - "steplist-step-default-width-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "f4bae4c5-208e-45d7-94ac-6c9355087224" - }, - "steplist-step-default-width-extra-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "78px", - "uuid": "0b435546-8368-4fb1-a8a1-c50b14b26ae2" - }, - "steplist-step-default-height-small": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", - "uuid": "205e9849-ecb4-4df6-8f59-a6d9b1458a72" - }, - "steplist-step-default-height-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "54px", - "uuid": "732ea53c-5929-4d31-beef-4ffd60f79c0e" - }, - "steplist-step-default-height-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "912f3b78-d09e-4700-a637-5fefc71960c2" - }, - "steplist-step-default-height-extra-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "78px", - "uuid": "201dc21b-a416-443c-afca-6801cabf31a5" - }, - "steplist-visual-size-small": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a65898ec-6a5a-4e4a-8a75-358e78a8345d" - }, - "steplist-visual-size-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a94843d0-9ef6-423f-b963-7b9ad658ce40" - }, - "steplist-visual-size-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "7f7539e6-5d8f-4f24-99a7-9338a3a3c630" - }, - "steplist-visual-size-extra-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "1b147315-b106-4d2a-80cb-9be0eed84b7e" - }, - "steplist-track-thickness-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "d4db995b-1eff-44cc-8abc-93324a3af119" - }, - "steplist-step-to-track-size-small": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "80d29ff2-a2ca-4987-9fa2-6799ba6aa416" - }, - "steplist-step-to-track-size-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "3a6f8cf2-d250-4af6-8641-f0ffd4c789b3" - }, - "steplist-step-to-track-size-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e8d064e4-3bdb-4fef-97e8-db596d5d2fab" - }, - "steplist-step-to-track-size-extra-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "bbff5dad-42bf-44f0-a34d-b6733360d28b" - }, - "steplist-bottom-to-text": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "a52c893c-8c03-43a5-88ed-3cd230365b84" - }, - "card-horizontal-edge-to-content-compact": { - "component": "card-horizontal", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "fd732759-52ab-45b7-9949-9d9352091efe" - }, - "card-horizontal-edge-to-content-default": { - "component": "card-horizontal", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "45af5962-8d41-476d-a92d-befa408b47b7" - }, - "card-horizontal-edge-to-content-spacious": { - "component": "card-horizontal", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "104c7b60-387b-4550-b0eb-573915d28f42" - }, - "accordion-edge-to-content-area-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "b594a566-9649-497d-bf8f-289ec3f59689" - }, - "accordion-edge-to-content-area-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "77894e1e-8b67-468d-a3d0-d9a7c87d1a52" - }, - "accordion-edge-to-content-area-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "56633713-ae34-4a8a-8cfd-39508e4c4b0a" - }, - "accordion-edge-to-content-area-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "75bc2d16-cf6b-48ef-a2e5-0516835af468" - }, - "single-calendar-popover-minimum-width": { - "component": "single-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "7f880ee3-c074-4370-a132-c22dbe0d5880" - }, - "single-calendar-popover-minimum-height": { - "component": "single-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "1f0b1cd3-1f15-4a60-a01f-a04f4fb913dd" - }, - "double-calendar-popover-minimum-width": { - "component": "double-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "616px", - "uuid": "5c1de210-df6c-4a3a-8cc7-b9766a676f2f" - }, - "double-calendar-popover-minimum-height": { - "component": "double-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "70cf1c19-7b41-4556-8db2-07fc7ad19666" - }, - "triple-calendar-popover-minimum-width": { - "component": "triple-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "912px", - "uuid": "1ccfcd2c-6de7-4a25-b6b7-0b40acc702c6" - }, - "triple-calendar-popover-minimum-height": { - "component": "triple-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "19c4d5a5-6ccb-407e-afa7-79f19286837b" - }, - "date-field-minimum-width": { - "component": "date-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "152px", - "uuid": "ebc4d09b-03c8-475a-af01-9bfcd590d92b" - }, - "date-field-text-to-visual": { - "component": "date-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "4725710f-67b2-4000-b4e8-e67a68cd75f5" - }, - "date-picker-visual-to-field-button": { - "component": "date-picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "da7f0c10-fa1b-4700-8acf-01feebdeed7f" - }, - "date-picker-text-to-visual": { - "component": "date-picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "c6c92147-8ee5-408b-9590-adede6abc935" - }, - "date-picker-minimum-width": { - "component": "date-picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "152px", - "uuid": "69c201ab-f9d3-4a02-8fc9-ff96ff38eed4" - }, - "time-field-minimum-width": { - "component": "time-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2.5, - "description": "2.5x height of field", - "uuid": "21bb1275-44e7-49be-926a-66966e969a6f" - }, - "time-field-text-to-visual": { - "component": "time-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "9953fcd9-ac62-49bd-beb2-926dc9fbb8c8" - }, - "segmented-text-field-gap": { - "component": "segmented-text-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "9e790995-7d43-4ce2-8ac0-a1c79c607575" - }, - "segmented-text-field-rounding": { - "component": "segmented-text-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "dc329712-c5ba-45cf-8ae0-8e42aad2fda9" - }, - "add-icon-size-50": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "d754631a-979d-4dec-b42c-f539421d1c86" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "d74d9dc5-9c20-4c87-bacc-d8898c805aa0" - } - } - }, - "add-icon-size-75": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "1456b16e-09bc-4b63-b3c7-4ecf9a0c3754" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "cfa5af27-add5-475d-90e4-2bd4fc14fcf1" - } - } - }, - "add-icon-size-100": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e2f088b2-1ec4-4fc4-aacd-3ded4f0a239e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "4141f697-72cf-4948-acc7-7aa96035fbe8" - } - } - }, - "add-icon-size-200": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6bc4db4c-ab1a-4c68-bc37-2053b289d982" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "708bfa69-42fb-41cf-b734-ef3736cafc02" - } - } - }, - "add-icon-size-300": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6f6b3134-6fcc-457d-ae87-43814ccada0f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "6ac66626-4a7b-4880-ba39-6756b30e0872" - } - } - }, - "drag-handle-icon-size-75": { - "component": "drag-handle-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c4ae0720-ee2c-41b8-a8ad-a30528a8a967" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "e2615055-159e-4b87-b7ce-1537f25fcdd4" - } - } - }, - "drag-handle-icon-size-100": { - "component": "drag-handle-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "85273338-00a6-407d-b5f9-803a732b84fa" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "f60c626f-f217-46eb-b2ed-5c56c3f87aa4" - } - } - }, - "drag-handle-icon-size-200": { - "component": "drag-handle-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "4342319b-d8c4-485b-9b2f-5bd4c702979c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "b8370ec4-5e70-4a53-a98e-a733c86ce065" - } - } - }, - "drag-handle-icon-size-300": { - "component": "drag-handle-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "91eb8665-5728-468c-a533-1aadf70aeef1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "93052ad2-8ada-40d8-a046-16e5a91ae826" - } - } - }, - "gripper-icon-size-100": { - "component": "gripper-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "e6f95e88-636d-4d3a-8966-8c811dc697d6" - }, - "tag-field-default-width-small": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "65194439-66b2-4f47-9096-80e018f2708a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "264px", - "uuid": "face078a-da74-4dec-9519-ef8a1a8b15cc" - } - } - }, - "tag-field-default-width-medium": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "264px", - "uuid": "7afa2c15-4eae-42af-b323-5dfde15a68cc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "640aa691-c4a4-4cda-9912-2e6c6f9c1ac2" - } - } - }, - "tag-field-default-width-large": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "ebea4627-12b5-4f51-9bda-be4f9dca213b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "312px", - "uuid": "7f4da1db-493c-4965-b89e-3ca585bebd25" - } - } - }, - "tag-field-minimum-width": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "180px", - "uuid": "be7ccb7a-5eba-4104-91cf-f24121648b76" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "c1bf4479-eb9f-45de-b431-57fd892eac6f" - } - } - }, - "tag-field-minimum-height-small": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "b45ded81-85da-4c0d-abfe-3ff51c7e9c70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "54px", - "uuid": "f9f61ca1-b08f-4e8d-89ae-f7f2c5df289d" - } - } - }, - "tag-field-minimum-height-medium": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "12d9d6b6-1621-433a-bc94-4a47843153b9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "68px", - "uuid": "163ef7b4-537b-43b7-a543-ebea0153e16b" - } - } - }, - "tag-field-minimum-height-large": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "68px", - "uuid": "09f85b07-baa8-4f51-9067-cf41749e4214" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "82px", - "uuid": "b24c4940-bf4a-4c85-8cb8-b613ac9bc7c8" - } - } - }, - "tag-field-edge-to-content-small": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "b6eebf3a-4733-4177-a235-6eccfacf67cd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "5e448fc3-6c14-4169-84a0-1f70bbc478cb" - } - } - }, - "tag-field-edge-to-content-medium": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "798ecb75-638c-41dd-81a0-d7ecca9960da" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "0072dc62-b868-4c4b-afd9-9c52d876c614" - } - } - }, - "tag-field-edge-to-content-large": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "03b1351c-1309-4e1a-a18b-bf3a350814c4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "1fda84ab-aa68-46fb-bd0f-d8174a08a41e" - } - } - }, - "list-view-minimum-height": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "fe1dcf27-addf-4aa9-9057-7b98a4dcacdc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "6ca2c317-7e17-41f7-8e2c-20a762fe284d" - } - } - }, - "list-view-minimum-width": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "82b718ef-6127-472b-b92f-f2f15833c49f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "3f68b526-a22a-4086-a40d-3a875a6324b3" - } - } - }, - "list-view-item-top-corner-radius": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-default}", - "uuid": "6e4611f7-f202-4003-94b4-587d48d07e32" - }, - "list-view-item-bottom-corner-radius": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-default}", - "uuid": "57821e37-d39e-49d5-b978-4ece3747e531" - }, - "list-view-end-edge-to-content": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "6dc382ce-8e48-4bd9-8078-1272da767b13" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "16552174-994e-41c3-9439-32b9876c399d" - } - } - }, - "stack-item-selected-background-opacity-emphasized": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "d1cd1fc2-5ad1-4a6e-bef8-55a385c1ce29" - }, - "stack-item-selected-background-opacity-emphasized-hover": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "bb522e19-6bb9-471c-95af-5ab7fa748557" - }, - "stack-item-selected-background-opacity-emphasized-down": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "67946e29-b480-4991-85eb-c57331a509f7" - }, - "stack-item-selected-background-opacity-emphasized-key-focus": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "35415d70-944b-4c5a-ae70-4810f991b70d" - }, - "stack-item-header-minimum-width": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "6880260b-1d48-4bfc-9745-3e7c506c40fb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "e18832ec-c1f5-4cfb-9ac6-111204fc255c" - } - } - }, - "stack-item-start-edge-to-content": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "abc302a3-c0b5-4f93-a141-39988ca3720b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "799fbc36-ea79-44d2-8e8b-dc3aade544a0" - } - } - }, - "stack-item-drag-handle-to-control": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "80800e9d-8b0d-4d1b-adfc-f85faee2bc2f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ed1689ea-2661-419b-ad18-7877712b0dfa" - } - } - }, - "stack-item-text-to-control": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e65d0e08-9c29-43f6-b7a2-281865a82b70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "aaee547c-df72-420e-8d39-3028e79feac1" - } - } - }, - "stack-item-edge-to-control": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cb302d23-5dd8-4ca6-b104-3fc5f03f633b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ef8dc413-ef24-456c-aa91-6a80d107f6c6" - } - } - }, - "stack-item-edge-to-visual": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "5405f82f-6022-468c-a150-b74210ef52cb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "7e743edb-d49b-4750-88b3-e35b6e534a3b" - } - } - }, - "stack-item-action-to-navigation": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "3b41366d-2c29-4477-95fa-528c762b8a3b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "cd7df3af-975e-4d8a-addd-92a920173fd6" - } - } - }, - "stack-item-header-to-item": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "c030a978-cf5b-4ad0-a3c7-dde81f1bf136" - }, - "stack-item-item-to-item": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-1px", - "uuid": "3862f137-37f5-44c3-a31b-68834d8e1c3c" - }, - "accordion-bottom-to-text-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "47f2bc45-5fa5-439a-a705-ef965c6ea010" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "5ce86cfe-434b-42ab-b334-c574bae01e6f" - } - } - }, - "accordion-bottom-to-text-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "7ec7fa3a-5ab0-41e8-816a-bdd63b7d9d82" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "7db5a087-c361-4080-be50-8e4864436108" - } - } - }, - "accordion-bottom-to-text-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "c0f14d75-a7a7-4325-b891-76d055e6371f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "abbcad5f-be29-4ca4-b48f-6b0eab7f9942" - } - } - }, - "accordion-bottom-to-text-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "ee8445cc-82a2-489f-9ff9-ec5d38a8dfd5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "b69abbba-a98c-40f2-8a9a-972710b73149" - } - } - }, - "accordion-top-to-text-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "1a8c45b2-caa4-47b9-b72a-782894168342" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "d76aaca3-6e02-4f90-b254-debf8d10fc89" - } - } - }, - "accordion-top-to-text-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "b005554a-ac7f-45ff-86a1-d240d1270f40" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "ebc6e896-6964-4337-b146-468e43d31db3" - } - } - }, - "accordion-top-to-text-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "728ad09d-0820-4c71-9974-57386f3d62d2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "2d7e81ba-1390-4607-8ee2-5d322d3e0bae" - } - } - }, - "accordion-top-to-text-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "efd68835-b6de-479c-9c71-bccbe8e20c21" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0dea279c-62ca-4670-a693-03eaa7ccecb5" - } - } - }, - "select-box-horizontal-minimum-width": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "188px", - "uuid": "b2104b40-4b34-4d98-a564-1688900de75d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "220px", - "uuid": "0a6c3623-dd05-40df-a3d8-b724e8a88178" - } - } - }, - "side-navigation-counter-to-disclosure": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "fe5071ea-bcff-4a7b-ade8-16850426ac30" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "ce76b010-6554-4cfd-993f-9963aa15830e" - } - } - }, - "side-navigation-edge-to-indicator": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cb89bc11-246a-4824-afa3-68076c56f3d9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "a1ae3448-227c-4277-9bab-f0147eff02e9" - } - } - }, - "side-navigation-indicator-to-content": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "436f98c0-ec74-40ab-9a26-a8fe8d139329" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "37ba411c-9067-46b0-b757-8348f4cf9aab" - } - } - }, - "side-navigation-second-level-edge-to-indicator": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "e44d5d55-8fc5-4231-ab37-0c06edd06d2c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "87377ada-4ebf-4a45-b651-35ee1f94e73b" - } - } - }, - "side-navigation-second-level-with-icon-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "7ba0524c-cfef-47fd-b3df-2c71e5618d20" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "17ae8b85-c5d2-47c0-810a-c99c91735d3e" - } - } - }, - "side-navigation-second-level-with-icon-edge-to-indicator": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "c1a8c779-aacf-4b14-8b15-9734deafcc41" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "b76c6a5c-23c1-4cf1-8bbb-baca46b3b497" - } - } - }, - "side-navigation-third-level-edge-to-indicator": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "aaf6af3d-4d94-4559-880e-c6201a4f72a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "62px", - "uuid": "650a896e-c67d-427b-950c-88cfc1099406" - } - } - }, - "side-navigation-third-level-with-icon-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "7103cb49-859e-4376-8422-0e2a94b5d2d9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "811bd0a1-ed6a-4238-a194-c7709a1691ed" - } - } - }, - "side-navigation-third-level-with-icon-edge-to-indicator": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "0c3ad7a1-6e2d-4e34-874e-45a654884650" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "2216f8c3-43e1-47ef-aaad-20b0c9bf0f17" - } - } - }, - "side-navigation-trailing-accessory-area-to-edge": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "37969411-2beb-4038-bdee-d2a84398ef19" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "f52fe067-f989-4f43-a762-1ea453fa0dde" - } - } - }, - "side-navigation-indicator-height": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "07262bb6-4b57-4848-b45d-bbf808bdf257" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "dfae987d-8f6c-4b2c-a01b-3a010581488d" - } - } - }, - "side-navigation-indicator-thickness": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "6c2264d9-425a-4dec-9071-a47e0d2bfca6" - } -} diff --git a/docs/s2-tokens-viewer/tokens/layout.json b/docs/s2-tokens-viewer/tokens/layout.json deleted file mode 100644 index 10816c92..00000000 --- a/docs/s2-tokens-viewer/tokens/layout.json +++ /dev/null @@ -1,2697 +0,0 @@ -{ - "corner-radius-0": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "bb9d8350-b1fb-4496-9c22-6ec9647ff117" - }, - "corner-radius-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" - }, - "corner-radius-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30" - }, - "corner-radius-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" - }, - "corner-radius-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "154642d7-c23d-44fd-9d79-b719ef32922e" - }, - "corner-radius-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "690db7ae-cae8-49bb-8777-b4f1829b2f0b" - }, - "corner-radius-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "ada2ea1d-1728-411a-8aae-a198ce390a25" - }, - "corner-radius-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "abc0f309-3bd2-4800-af12-b27386e86617" - }, - "corner-radius-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "cb6b72ed-a9a1-4113-b147-1ef369fe6269" - }, - "corner-radius-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8fc023ca-8aec-40fe-9130-087aa035bac7" - }, - "corner-radius-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.5, - "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" - }, - "drop-shadow-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-100}", - "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316", - "deprecated": true - }, - "drop-shadow-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-100}", - "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962", - "deprecated": true - }, - "drop-shadow-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-100}", - "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429", - "deprecated": true - }, - "android-elevation": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2dp", - "uuid": "f9456531-ab61-4c14-b7af-7016ce1c0d3e" - }, - "workflow-icon-size-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "1423caf1-75ca-4ca8-aa6a-22dcf3655b0e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "4c4cb541-7d42-4bb4-9c86-7197c4600896" - } - } - }, - "workflow-icon-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "85cdef34-0682-45eb-ac06-98c76883cdf7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "b720c214-babe-426d-9629-9ec60d5e8622" - } - } - }, - "workflow-icon-size-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "40abc60f-ab65-41ef-b724-a0f0bdd94d14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "9e882a20-b8e1-4e9b-89f9-26f21db3cd78" - } - } - }, - "workflow-icon-size-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "6392e605-932e-456d-be53-149b624a04e2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "9948e083-8c75-48f7-8e58-32c75ec76116" - } - } - }, - "workflow-icon-size-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "25908278-79d3-47f4-9b53-adbdd1c13e2a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "df0dc6c3-59fc-4ee0-87a9-c3d49a07cf9c" - } - } - }, - "spacing-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "1b06f6e2-d9be-4934-b3da-bed75986d104" - }, - "spacing-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "576a60a3-ca80-46c5-a066-ba7b6197decd" - }, - "spacing-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "507c0b4a-9dbc-4242-89fd-5efc4d1c35b9" - }, - "spacing-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "79fca32b-214b-4760-9d3a-28f4d1bdf86f" - }, - "spacing-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "ba632ede-84a7-4e56-91ef-8143b2499452" - }, - "spacing-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "ec565065-0820-460f-9a1b-b81911c48cb5" - }, - "spacing-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "490b4010-1561-4b12-8cbb-cdb4b650ba74" - }, - "spacing-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "b6d0b881-d25e-452c-9069-c18745d21f33" - }, - "spacing-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "26639049-ec07-430d-983f-4d036758564a" - }, - "spacing-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "eeb099cb-707f-4e5e-97b9-1fdba35b2314" - }, - "spacing-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "d04e5d81-0b6e-48e7-9e47-744753dfcff3" - }, - "spacing-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "96px", - "uuid": "9d688a67-5ff6-4b72-8398-964c0337dce1" - }, - "text-to-visual-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "ff1fadc2-9ec0-456f-a054-4512e51c85c8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8588bf80-96df-40fb-8b6f-61d06899f8dd" - } - } - }, - "text-to-visual-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "50763a0d-c6eb-47f0-8b56-4c86ee22a430" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "77dc4cd4-8e4e-4873-b6f3-d573eb7fc315" - } - } - }, - "text-to-visual-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "1d601d0a-d6d0-4711-9fb9-71898c2bcc9a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "09d55113-8d94-429f-b0c8-ffabe8ccba27" - } - } - }, - "text-to-visual-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "7ce11af3-b94b-4239-a310-f8d09635779a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "dc4ec555-72eb-4328-aba4-e8d594102f45" - } - } - }, - "text-to-visual-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "4366909e-3bfb-481c-abdc-4ae71f965bc3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "205f0c77-6588-4cc7-927f-3ba767200bac" - } - } - }, - "text-to-visual-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "3d393d59-b358-48a7-82c6-a7802408cd0d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "b496071f-4151-4bc2-86eb-f2e41947e0f6" - } - } - }, - "text-to-control-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "4b47e7a8-b330-4c6c-a497-9ee9eed0c50a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "56e2cc0c-7d56-454e-bb4f-4517f412eeac" - } - } - }, - "text-to-control-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "aa27af6e-baef-4d7c-bf8c-f9a972e51713" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "45f94495-0f53-42b2-94f6-7a6d91eb2ca1" - } - } - }, - "text-to-control-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "24a438ce-be6a-477e-aa0e-a3e97e286904" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "b4ce04fa-bc03-44c9-afef-a38810ac9c65" - } - } - }, - "text-to-control-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "307fb510-8759-41ee-89d2-fcfe4d554b85" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "8991287c-763f-4a39-ad5b-7ccdbc39b3f6" - } - } - }, - "text-to-control-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7cde8c74-2ac9-4468-a25e-06c1a6cd9cbe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "53a33d46-8d81-4f13-8c79-c4d9257a5b68" - } - } - }, - "visual-to-control-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "0a392deb-fee3-4968-bc52-1377f9e23307" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "16b8c9c7-a601-4ff9-bf9d-c5a118738506" - } - } - }, - "label-to-description-0": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "4a00c810-c099-4de1-85b8-aaa7ed9538bb" - }, - "component-height-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "81ebf2b1-01fd-45a3-a099-72048e7d7991" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "fede8012-f00b-412b-8981-16f60a6133ab" - } - } - }, - "component-height-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "f70d4c16-f588-4fa9-9318-b7184a739193" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "5f363452-6317-4e7c-965a-291b3dfa8a8f" - } - } - }, - "component-height-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "3d7afc6a-f66b-4033-9ed4-e60cde661a18" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "5c31197d-0412-469d-a2dd-684efbd4b7e6" - } - } - }, - "component-height-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "8bf70f40-b282-4c5d-98f0-329245bdb6f9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "7c69efb5-bde7-4ee0-ad1e-2f20e85ebc24" - } - } - }, - "component-height-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "f4aaa7bb-e724-42ad-8ddf-934cc972995a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "53c665a4-83ae-45f2-b90d-33ce52430b84" - } - } - }, - "component-height-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "e146c28f-3349-48fc-8281-6997ab9da222" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "4fcbb85f-afbe-41bc-a979-dc09fb98946a" - } - } - }, - "component-height-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "b5211351-b7df-430a-93bf-906ac66ebf2e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "8135e75c-9536-4743-ab6d-05ed5adb0448" - } - } - }, - "focus-indicator-thickness": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "b6148878-b78d-4fe7-bf78-e01e7cb314c2" - }, - "focus-indicator-gap": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "693651ef-71c7-4096-91a5-1c84cb861021" - }, - "side-focus-indicator": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "d33433fd-6430-4769-a0b8-6d8c32a64803" - }, - "border-width-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "b5525080-28e7-4eb7-aee9-fb2c71a16f68" - }, - "border-width-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "cc8a43f4-0ba6-46e3-90af-653fbc59a328" - }, - "border-width-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "18b0ff0d-494c-4d33-acab-a62528c5ca66" - }, - "component-pill-edge-to-visual-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "3eaca9fb-25c0-4a1d-8c44-320cc0e0305b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "64343da6-f1a6-4615-b2b8-41f9509679e5" - } - } - }, - "component-pill-edge-to-visual-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "fff86b73-4e28-4453-9ba3-7c40998ace07" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "14624bfc-b08f-4637-991b-94a703a7b808" - } - } - }, - "component-pill-edge-to-visual-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "b9324a3c-557e-4832-8418-1d7783e7b9be" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "053363f2-5b8e-4365-8353-3cffac169608" - } - } - }, - "component-pill-edge-to-visual-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "4ccb4a02-6aa9-459a-a459-1d0ebbe2dc11" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "7ae3b6ee-2f80-4596-9d4a-08a5bf9612a7" - } - } - }, - "component-pill-edge-to-visual-only-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "47f5ab02-22db-4d82-be1d-804669d7fbd4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "7332a4d3-3775-4247-a4c0-fb01f0604d63" - } - } - }, - "component-pill-edge-to-visual-only-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "dd9e6e28-a382-46a1-a6e0-f73c8cc0ed70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "cf58ae75-8f3f-4b9e-809b-ee78abbb2f2f" - } - } - }, - "component-pill-edge-to-visual-only-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "64cdd254-d3fe-40e6-97a8-76dd8156afa8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "989aee4c-5c90-454a-b68d-a7564669c2bd" - } - } - }, - "component-pill-edge-to-visual-only-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9654369a-5bf8-4436-a331-aeac1fd25a70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "cb4f356c-2dcd-4043-8f5c-3da904716b48" - } - } - }, - "component-pill-edge-to-text-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "5c80900c-ff68-4b78-86fa-571bbf1eb9aa" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "8a23edfc-b993-48bb-917f-377051e02dff" - } - } - }, - "component-pill-edge-to-text-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "3c96bdad-6e05-4a1b-930b-92d35adf5d9d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "10e326b3-bcce-47df-a1ab-0e3ab9964dd2" - } - } - }, - "component-pill-edge-to-text-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "4cca2097-286e-46d5-bc8e-273ea50354e7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "c77f6b68-32b7-499c-81d9-50855cc68279" - } - } - }, - "component-pill-edge-to-text-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "29fa8da5-3f74-4141-bfb1-0f2847655345" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "dd7bc474-d5f1-46fe-8a6e-b1645c34c982" - } - } - }, - "component-edge-to-visual-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "a0b6c266-499d-4292-9be4-705ddd5e9fbc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "0b157417-e40f-481c-87e3-8563d55b3135" - } - } - }, - "component-edge-to-visual-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8d128c7d-ab8e-4a4e-9243-a2e919cb6e6f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "acc3e1b9-532d-485e-84e4-06e744c744b3" - } - } - }, - "component-edge-to-visual-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e220eb52-f821-4807-9ab7-b5f3905d769f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "e77f525e-5043-49c1-a663-9f6c30067043" - } - } - }, - "component-edge-to-visual-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "e0673a9f-7993-490c-b2db-e8e836837e83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "85f7f49a-7b87-4e2f-b44e-70e3ccde6291" - } - } - }, - "component-edge-to-visual-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a0ce87ca-29e0-40e3-b7dc-c53678effd9b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "4973c83c-792d-4bc1-9e3d-d047993292ba" - } - } - }, - "component-edge-to-visual-only-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "9c536051-7794-4282-bf07-c920cda83cbe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "fd1c11a6-53d5-4253-a7d7-c4131c4b1a5e" - } - } - }, - "component-edge-to-visual-only-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "c38259e9-87f4-4e7d-a041-692ca676a638" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "5c4f1f7a-2218-4d03-ac83-9750c2c9336b" - } - } - }, - "component-edge-to-visual-only-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "8fec6012-7cba-4ac5-94d7-14f39fce7612" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "93e42bfc-c2f0-40cd-a561-9045c68cb5d1" - } - } - }, - "component-edge-to-visual-only-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "0bf1ad10-235a-4c81-aba7-5bf55acc877d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9dffd6f3-6230-425e-9208-296cf4d5c185" - } - } - }, - "component-edge-to-visual-only-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "815523cd-8c01-4125-bb22-3a548f1cc702" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "090b3da5-0aa3-4bf8-b3bd-dd8dabb40721" - } - } - }, - "component-edge-to-text-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "b8af0ff9-1e4b-4298-907d-3ffcde88ba03" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "d660beeb-278b-4157-b6fc-852c680ecae7" - } - } - }, - "component-edge-to-text-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "40778817-6e47-4b58-a495-c4f34cee78df" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "942f0f34-611a-4318-9b0e-3632e7f520b3" - } - } - }, - "component-edge-to-text-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "0c0d6d38-6734-4312-9be5-dd48dd571841" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "0b3ecfcf-8fb9-4faf-ab7f-ff4baf733df5" - } - } - }, - "component-edge-to-text-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "44a668d6-e013-4138-a262-383994b0637f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "c567f435-928c-4bf8-b9c0-ac2f22d58348" - } - } - }, - "component-edge-to-text-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "11088de1-8e3b-4021-968d-a8c59c7b00bd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "616de468-71fc-4315-87ea-47cdc508a599" - } - } - }, - "component-top-to-workflow-icon-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "0fafc819-d65b-4952-849a-b3c426e9a4a9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "24853983-c1b0-422d-84b6-05b9313066ed" - } - } - }, - "component-top-to-workflow-icon-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "2bc8b2ca-9792-4034-a604-43ce28ce8ede" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "9d1b0ef4-5433-43fe-aa33-0274ff29f6f3" - } - } - }, - "component-top-to-workflow-icon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "c3a280b0-bc84-4a7c-8048-c689f8deef86" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a3d3f9e9-a784-445a-a052-22f84b832512" - } - } - }, - "component-top-to-workflow-icon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "ef82b92a-2cbd-4b70-920c-4b999b018e07" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "259c0cf5-d321-4a6b-a3ae-b8c58fc1c9d6" - } - } - }, - "component-top-to-workflow-icon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "72d6ae5c-e133-4e7f-bc96-3e4c28d586fd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "bac14298-68f0-4fb6-a152-c95ab19fd27f" - } - } - }, - "component-top-to-text-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "c71c0953-d9da-4e22-93a1-6982c7665ed6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cb2a6539-4cee-420c-aeef-dbdd3220039d" - } - } - }, - "component-top-to-text-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "477d659b-6489-4e90-84db-75a93174559a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "54a0e5cf-3e4a-454b-9dba-a6a2c277fa5e" - } - } - }, - "component-top-to-text-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "15bf492b-3a65-4577-8a3b-df09026b96a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bed358a2-0559-4501-a147-b375887f25af" - } - } - }, - "component-top-to-text-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "c7914376-3769-4172-8467-fb811b3c155f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "621c9cf1-02e2-478b-9f47-0804f0183531" - } - } - }, - "component-top-to-text-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "9bf3970e-eb76-4be5-82c4-0df2538df753" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "e0ae8c97-73ee-4b09-839f-5ebfb6eb0d7a" - } - } - }, - "component-bottom-to-text-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "ee165c7d-3e9a-4a8d-a71f-3083fd7fdc4b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "80f01183-a152-4c55-ac11-24edae62df64" - } - } - }, - "component-bottom-to-text-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "923c46e1-b6f7-4d8a-844d-b4c0661b5e60" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "0f1a6c63-bc4f-444c-9a18-67b6c35464b1" - } - } - }, - "component-bottom-to-text-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "24def269-4582-46f6-a00c-8b5a28410917" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "c8590269-dcaa-44f6-9c2d-d33274c3fe5e" - } - } - }, - "component-bottom-to-text-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "ae65b844-9758-4708-8781-2c8df35af1e9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "a39cef5c-631c-4942-b5d2-9121e05d47f8" - } - } - }, - "component-bottom-to-text-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "4459554a-d872-4a6a-a620-4a1937605d29" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "a6aac364-d617-4e21-a1db-5523daaa3c6c" - } - } - }, - "component-to-menu-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "4db24ebf-e169-4220-b895-787fe09f8658" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "cc2c2606-500a-45e2-b460-2b498dcddb26" - } - } - }, - "component-to-menu-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "0190ca9d-9f28-45b2-9dc7-c715089faebb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e8602fbe-1bf9-4aec-9cb0-5b4e994558c9" - } - } - }, - "component-to-menu-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "d03d1199-f49d-4e57-8434-b94efe5da440" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "b33acdfa-525e-45c6-ab2b-c959760c4024" - } - } - }, - "component-to-menu-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "31f44472-9681-469c-8ba2-9efc27eb981d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "9fa90167-54ec-4343-a14c-4cd18963dcc5" - } - } - }, - "field-edge-to-text-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "3f7cee20-c187-4066-be4b-f5a1335736f5", - "deprecated": true - }, - "field-edge-to-visual-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "89f16f89-fd7d-41d7-8e5c-464007fd0277" - }, - "field-edge-to-border-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "7fb81dcf-3329-4353-917d-75de8f43c05d", - "deprecated": true - }, - "field-edge-to-alert-icon-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "7858fdf3-e35f-4bc5-997a-0d480ec1cb32", - "deprecated": true - }, - "field-edge-to-validation-icon-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "151915e5-f946-474f-9595-18d8a159a6ff", - "deprecated": true - }, - "field-edge-to-disclosure-icon-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "7b68e88f-8ddd-496e-9fae-7fbe44317965" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "87d3f491-f45f-4bee-9dbd-00086cca5858" - } - } - }, - "field-edge-to-disclosure-icon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "71b53c8b-fbbb-4f84-847a-45db5ad8006f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "26d578cb-9228-4643-b042-8b00ba4d9b61" - } - } - }, - "field-edge-to-disclosure-icon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "77792f9d-b462-48e6-a4de-abf804bed3cd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "fcc139c1-08ed-4641-932d-5050237abfaa" - } - } - }, - "field-edge-to-disclosure-icon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "e84ef1dc-392b-4ab9-a13b-76364484a28d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "0d3045e2-a493-406a-a247-8d20f35db2d9" - } - } - }, - "field-end-edge-to-disclosure-icon-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "b79e5061-87c4-495c-ab01-90dcc5ae14ab" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "927e7b5a-57b4-4d47-9ad8-e287199e68a3" - } - } - }, - "field-end-edge-to-disclosure-icon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9fa71233-f98e-4d48-b2af-29552a62a479" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7b3ab0f8-8bde-461f-b658-6848d64de0e3" - } - } - }, - "field-end-edge-to-disclosure-icon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "622a39c4-4ed1-4637-8e8d-e8e6a72099b2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "417eb2ee-3fe9-47fc-a122-d466eb4e7b26" - } - } - }, - "field-end-edge-to-disclosure-icon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "43ec5915-b039-4210-9bc0-ce547f90ce32" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "7c2b5cc0-01c0-4e5f-a157-1d2432f8bbc1" - } - } - }, - "field-top-to-disclosure-icon-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "c5778e77-0ff1-431a-a72e-37f3066d3257" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "2f62718d-3df8-498b-9520-baf8be65f3bd" - } - } - }, - "field-top-to-disclosure-icon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "62c3618c-f28f-4b56-9227-a061dc54d19d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "1357cf8e-6e41-4d3c-be39-9aa87d010b78" - } - } - }, - "field-top-to-disclosure-icon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "bdf0fc6a-404c-492c-86bb-5d2ba06714e6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "2af47c9c-dba6-4340-b5fc-af00dcbaa05c" - } - } - }, - "field-top-to-disclosure-icon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "d5db6c17-700e-4782-9c29-001269b50200" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "631146ab-f3f2-4ea0-aac1-2bea622d0c85" - } - } - }, - "field-top-to-alert-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "f265e6d5-8bbd-464e-b6c7-637224756e95" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "580b677d-5d7e-4306-87ee-640a4613254b" - } - } - }, - "field-top-to-alert-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "adac6224-8e2f-4cdb-8684-9365164a1499" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "1def1d88-0098-4e00-987f-17a8656047da" - } - } - }, - "field-top-to-alert-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "7e21ccc7-ba55-4e0f-b5a5-1bd95406546f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "6247903e-2c00-4242-b2d5-da2864b6aa87" - } - } - }, - "field-top-to-alert-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "78286e58-d73a-42a8-a13c-a910d7fbb82d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "246058b4-e152-4673-91ab-34384fceb798" - } - } - }, - "field-top-to-validation-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "2aad124e-19f5-404c-921e-e2060bc48f07" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "1a5b6e87-12a8-4fda-a8f7-2928b0b68a46" - } - } - }, - "field-top-to-validation-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "2cdb6de8-d494-467d-bf9d-7fa96829bf82" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7bb6c4c7-4157-4da9-bf06-1d2527022d6a" - } - } - }, - "field-top-to-validation-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "97435915-44ba-4ace-993f-a0fac52e41f2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "f4f9d889-130a-4e71-9a9c-1ee82c2a4a4b" - } - } - }, - "field-top-to-validation-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "aa10c6ff-8cf6-4e68-8181-ca5e64f5c26f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "a6da1cb9-6085-4c58-b3dc-3b1377f64fa4" - } - } - }, - "field-top-to-progress-circle-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "9aac1df2-1693-43f1-ae43-b23c21a42f71" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "5da7e575-d0c3-44e7-bbfa-6fa58972343b" - } - } - }, - "field-top-to-progress-circle-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "7a3120a8-3c98-4227-afb4-5d6a8aa78e14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "7b4b7283-1223-4d2e-9f24-5ed6dada4711" - } - } - }, - "field-top-to-progress-circle-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "24784275-a117-4767-98ee-5d8a08c89296" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "7a17cc60-fa76-4234-a99e-c4f711e63f5f" - } - } - }, - "field-top-to-progress-circle-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "efcd740a-033e-493a-a902-e2f657897bd4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "263428f7-3b5a-449a-87d1-874cebf50fa8" - } - } - }, - "field-edge-to-alert-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "20658099-94df-4c6c-a2f2-558c92174121" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "68c4dc34-49cb-4174-bd06-5f5dfbd0b64e" - } - } - }, - "field-edge-to-alert-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "dd684a30-2e49-4096-8b1c-40fbd6c8cac2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "b98d3a2d-94fb-4491-9650-1c9a62365a19" - } - } - }, - "field-edge-to-alert-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "e0b53a9a-e95a-45b8-b9b2-a16b70096c05" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "a7c0e1fc-bc57-450e-bdc2-1c2cf2823d98" - } - } - }, - "field-edge-to-alert-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "7ea18d45-d6e1-4ef0-859d-4d39a3e0527a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "2a77de7a-20cb-40a2-b3a9-252fcaa7a7d2" - } - } - }, - "field-edge-to-validation-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "9ab112d7-af82-4b28-9bc2-a1216af87aea" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "a1c55785-3ae3-4c23-81e2-f088e76e4e04" - } - } - }, - "field-edge-to-validation-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "a93c8845-c89b-4e8d-b06e-c34e7c7b0e99" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "c51f02a2-35d4-460f-9f14-a97d9e8e6616" - } - } - }, - "field-edge-to-validation-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "faf7879f-d9c1-4bf1-8af7-95f48240bcf0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "9525d928-4cdb-4cf5-8616-2024ed6fb7c0" - } - } - }, - "field-edge-to-validation-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "9379019f-5498-45d1-8590-deb8a234a3d4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "539800f6-7bbc-4b67-8b61-99d1ee2f69a4" - } - } - }, - "field-text-to-alert-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "2d900e70-913e-4d45-9ef4-2ef8d80798fc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "01ad9b7d-926e-4db4-a86a-a804fdfc7d68" - } - } - }, - "field-text-to-alert-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cce2dfd4-b10f-4386-8f16-2bc2d47e49f5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "03d088d2-4ec9-45bc-896d-8423bf72317e" - } - } - }, - "field-text-to-alert-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "0f40702e-876a-4fb4-aeb7-ea56c26c081b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "73025a05-6203-460b-830b-458f8109abce" - } - } - }, - "field-text-to-alert-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "248144ce-6640-40ce-96a3-162c406c7edf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "ec794a47-71af-42ea-87f2-048fab8dbf9d" - } - } - }, - "field-text-to-validation-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "574ddef0-b45b-49a1-b057-fb2eacfbd36f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c2181581-6aa1-4e1f-80bc-1ca2e85ea01b" - } - } - }, - "field-text-to-validation-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "da53a8e5-95c3-48dd-a9c0-5ed2de25240d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "87e221ab-fb8c-4d59-9d4b-9815a672cc23" - } - } - }, - "field-text-to-validation-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "f9729ef3-9807-4401-80dd-b1c209c00065" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "b28a0156-4930-484c-a518-ee00e0292db5" - } - } - }, - "field-text-to-validation-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "8a573d4a-0543-4e77-8f54-5ad1706d87e7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "8926578a-c326-4a75-aafb-d90112aaedb5" - } - } - }, - "field-width": { - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-medium instead.", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-width-small}", - "uuid": "096ddcb7-5afd-416f-9a11-4275556c4b52" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-width-small}", - "uuid": "08c2390a-353b-4e6b-b025-dbaeaa5fdff2" - } - } - }, - "field-width-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-default-width-small}", - "uuid": "d316d676-b4cf-4d16-b89c-63ef1d969861", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-small instead." - }, - "character-count-to-field-quiet-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-3px", - "uuid": "f2f62625-dfd4-46b0-9113-033820745569", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "819cdbf4-9e26-4fdf-895d-8f60c06efa2a", - "deprecated": true - } - } - }, - "character-count-to-field-quiet-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-3px", - "uuid": "2ebe9ae0-3b74-47dc-af79-e1dd5f93b9bd", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "1cecea81-8c7f-4658-b3a2-0e1282f7eac9", - "deprecated": true - } - } - }, - "character-count-to-field-quiet-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-3px", - "uuid": "3f385135-015a-44dd-bde3-60389b14c2ff", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "cef58f98-9fb0-4fbb-b6aa-dc5786d7658a", - "deprecated": true - } - } - }, - "character-count-to-field-quiet-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "8b5b5dce-a9c4-4c03-a194-8a5bc716b18a", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-5px", - "uuid": "2cfe025b-8bf8-47a3-8ff1-733cf62dd182", - "deprecated": true - } - } - }, - "side-label-character-count-to-field": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "146add82-4f20-46c3-bacf-4d24d60d0e10" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ec387876-31d5-42a5-99aa-02c5d35e6223" - } - } - }, - "side-label-character-count-top-margin-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "a86ae363-b6b4-4da0-9630-97336922b3a1" - }, - "side-label-character-count-top-margin-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "4d93210f-f01a-4d1c-8c10-2cb4b9d14626" - }, - "side-label-character-count-top-margin-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "e2d9e241-469a-4b03-bd6a-a105a8ed5e00" - }, - "side-label-character-count-top-margin-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "9b1f15bf-ea4f-4f82-8c4f-3770b7f47353" - }, - "disclosure-indicator-top-to-disclosure-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "e8e0164f-2588-4c8e-9b85-543ce5a8fadb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "d7c1f2a1-b679-42ae-8512-27883d9789f9" - } - } - }, - "disclosure-indicator-top-to-disclosure-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "1e644622-9b4a-4cce-9cf7-2474d58f4956" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "049e0fe7-03d4-4d9b-bdcd-9c8a06852010" - } - } - }, - "disclosure-indicator-top-to-disclosure-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "ae9bbf8d-a896-4667-9034-2fd2dfeb1981" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "24dd2c12-17f0-4d38-9af3-a3b112c40c74" - } - } - }, - "disclosure-indicator-top-to-disclosure-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "ba7492f3-1a19-4d75-98cc-34a0d46ea802" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "9c38e8f6-cca7-4f7f-a7c3-9d4ee7af24b8" - } - } - }, - "text-underline-thickness": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "13f36ce1-84bb-41db-bec8-6d6e8f5c6ed3" - }, - "text-underline-gap": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "d9d51235-f3fe-4e2a-bdca-b6a104d9a9e5" - }, - "navigational-indicator-top-to-back-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "70de4f97-bc4a-44af-9995-1042e3c7c78f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "d11ab0de-19bd-4f56-8798-0192fd0cfe0e" - } - } - }, - "navigational-indicator-top-to-back-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "5561a148-fd77-44d3-b29d-3ed7389122a1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "74f8a686-0e06-4f7c-9e3d-694749beb420" - } - } - }, - "navigational-indicator-top-to-back-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "c0e06d21-7372-401f-9ec2-926e2b1faf26" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "e84bc865-c89f-403e-bb14-2a11f03fd364" - } - } - }, - "navigational-indicator-top-to-back-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ac4d18d5-361c-4425-82c3-83979d58f682" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "e68f2798-6a55-499a-b591-0cfc130607ba" - } - } - }, - "color-control-track-width": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "424db2a9-5795-400b-a98a-58081d311bff" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "07e3ac46-3f96-4c00-aa6a-09840ee04bdd" - } - } - }, - "corner-triangle-icon-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "490fac13-d347-4c21-85fa-57814bff7537" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "434b019c-efde-437a-967b-b841ec95e621" - } - } - }, - "corner-triangle-icon-size-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "6fcfc18c-c5e0-4f50-beab-6c4a10bfdaa7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "1352ad8f-a8ec-459d-8ae3-71c27038a29d" - } - } - }, - "corner-triangle-icon-size-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "9c2db47b-f017-432a-a44f-238bc461c4c1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "2be65bca-0f16-4754-bc8a-4a491ba87b90" - } - } - }, - "corner-triangle-icon-size-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "c9c18669-11bf-4ba3-b36f-26115981327c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "d396d74a-425d-4f06-837f-349f81ebf486" - } - } - }, - "component-size-width-ratio-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.3333, - "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" - }, - "component-size-minimum-perspective-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "103daec0-9711-4422-84d1-62ab77afa00d" - }, - "component-size-difference-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-2px", - "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" - }, - "corner-radius-none": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-0}", - "uuid": "7a11b308-bed2-4b6f-bb4a-c9ae4ef8e03d" - }, - "corner-radius-small-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", - "uuid": "b4971f86-aeea-42c9-9ba7-a74cf4d1a545" - }, - "corner-radius-medium-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-500}", - "uuid": "a83a882e-430c-46fc-a8be-5ade0dd8a4c6" - }, - "corner-radius-large-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-700}", - "uuid": "29981aef-aea6-4cde-849f-4bc67e320ea7" - }, - "corner-radius-extra-large-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-800}", - "uuid": "d639a0b5-16b4-4d75-ab37-d87815c7b500" - }, - "corner-radius-full": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-1000}", - "uuid": "4853520b-bda3-45d1-bd20-8508cac08847" - }, - "corner-radius-small-size-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-75}", - "uuid": "3d39e5de-0800-4629-ae1a-99a34706a772" - }, - "corner-radius-small-size-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", - "uuid": "a62a43dd-cb2a-4e18-bb94-7a9518668400" - }, - "corner-radius-small-size-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-200}", - "uuid": "f4f0bfc9-ce6d-473f-8dda-c9f21fb8a7b7" - }, - "corner-radius-small-size-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-300}", - "uuid": "d59337d1-4cec-43c0-821e-06a56745cbcc" - }, - "corner-radius-medium-size-extra-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-300}", - "uuid": "d0e02d98-e93f-4f81-8d81-8f95e06ad360" - }, - "corner-radius-medium-size-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-400}", - "uuid": "892bc9de-16b2-4c51-9c18-b239e52ffd14" - }, - "corner-radius-medium-size-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-500}", - "uuid": "67fb5355-6d7c-4e4e-a4cb-cdba10a85d84" - }, - "corner-radius-medium-size-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-600}", - "uuid": "ede17e00-83ef-40c5-a1d0-a46372d3fc90" - }, - "corner-radius-medium-size-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-700}", - "uuid": "81752b3e-488a-4273-abb5-4ba8b7f278d9" - }, - "field-width-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-default-width-medium}", - "uuid": "935927d3-b25e-468a-999a-938643901e50", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-medium instead." - }, - "field-width-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-default-width-large}", - "uuid": "cc43e053-1255-403f-aaf5-2182f5438592", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-large instead." - }, - "field-width-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-default-width-extra-large}", - "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-extra-large instead." - }, - "drop-shadow-x-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "751d636e-efb5-411e-a5b8-06b11439cc90" - }, - "drop-shadow-x-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "0c76c925-4d29-49a3-b882-e946bd7fe9f1" - }, - "drop-shadow-x-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "cb6d74fe-cc32-47ff-bf8b-74597643a8a6" - }, - "drop-shadow-y-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "ed1f46fd-a586-46a5-8cc1-d843a57e2cc2" - }, - "drop-shadow-y-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "d2d0320a-6984-4b3f-8f5d-ccb88892a26c" - }, - "drop-shadow-y-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "5d09089b-c0c5-4122-a3be-3e989562acda" - }, - "drop-shadow-blur-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "025e39f4-dfe7-4a8a-beb5-bd0577f72eac" - }, - "drop-shadow-blur-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "2b08d425-ecf2-4891-83cd-005a2d5e76ce" - }, - "drop-shadow-blur-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "34812e0c-7ccf-49c2-884a-6fecd45f7c5a" - }, - "drop-shadow-emphasized-default-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-100}", - "uuid": "5b611aa8-9db2-495d-a119-3385eee62442" - }, - "drop-shadow-emphasized-default-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-100}", - "uuid": "02949dd5-0596-44bc-8b63-dcc7d2ba628b" - }, - "drop-shadow-emphasized-default-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-100}", - "uuid": "57920fe8-72ad-48d2-aa9b-feec4c989106" - }, - "drop-shadow-emphasized-hover-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-200}", - "uuid": "d86f7c89-92a6-4bad-83b0-43953472ce7f" - }, - "drop-shadow-emphasized-hover-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-200}", - "uuid": "da17e314-f3e9-4d49-9362-533eb65c0f7b" - }, - "drop-shadow-emphasized-hover-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-200}", - "uuid": "5f6674e8-ef00-490a-800d-3b946059bae2" - }, - "drop-shadow-elevated-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-200}", - "uuid": "59324423-4428-40d7-a227-5f75aeb38312" - }, - "drop-shadow-elevated-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-200}", - "uuid": "45f313a5-1749-4b95-b5e3-20944adbea84" - }, - "drop-shadow-elevated-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-200}", - "uuid": "f3487a86-3aea-4527-8b5c-287c0bddad6c" - }, - "drop-shadow-dragged-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-300}", - "uuid": "be5c80b4-5769-491b-9550-fcf94f0c762e" - }, - "drop-shadow-dragged-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-300}", - "uuid": "ff8d4fda-72fa-4256-b2c8-f22a9d3e644f" - }, - "drop-shadow-dragged-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-300}", - "uuid": "f6015252-21fb-48f9-aadb-5ad050e3d590" - }, - "gradient-stop-1-genai": { - "value": 0, - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "uuid": "1b4e100e-3266-4212-84c7-ee6995aaff83" - }, - "gradient-stop-2-genai": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.3333, - "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" - }, - "gradient-stop-3-genai": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, - "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" - }, - "gradient-stop-1-premium": { - "value": 0, - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "uuid": "4cb26877-72bd-48e5-8266-6b29b1c2303d" - }, - "gradient-stop-2-premium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.6666, - "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" - }, - "gradient-stop-3-premium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, - "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" - }, - "window-to-edge": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-600}", - "uuid": "a3e53161-c38a-4ee0-88c2-4a36fd530e51" - }, - "component-size-maximum-perspective-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "96px", - "uuid": "437f2e57-2aa6-41b5-bdcc-e4993dc42168" - }, - "field-top-to-disclosure-icon-compact-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "6138a3a4-4d5f-42ae-b1eb-6d2b44b51072" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "bc3eee47-eb83-4ed7-9414-f9fbf620395b" - } - } - }, - "field-top-to-disclosure-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "0516bc3d-36a1-4dcb-9d1d-1fce7c431890" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "2bdf7b47-450a-4da9-bddb-f4cef626c889" - } - } - }, - "field-top-to-disclosure-icon-spacious-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "0f68ff7a-b68e-4688-9da1-bbce083d2b98" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "178832d2-9ead-4804-a025-5883eec850d6" - } - } - }, - "field-top-to-disclosure-icon-compact-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "b1e50285-c36d-4d95-a609-255a39845436" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "45385813-55dc-4a9f-81f8-c77a482b7268" - } - } - }, - "field-top-to-disclosure-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "54198ff3-d745-40b1-bcc0-2bca4fe1955e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "854384ce-1548-4e55-b19e-042b7a82db0e" - } - } - }, - "field-top-to-disclosure-icon-spacious-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "35900436-1a71-4a06-8b21-53b98398f7bc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "b7cde8bc-0553-4045-8fc1-edaf8f429950" - } - } - }, - "field-top-to-disclosure-icon-compact-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "101de772-de06-40dc-b3fb-9f3ff4ff4b45" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "d00bddef-eb79-4c0a-8794-52fa5b3d9b5c" - } - } - }, - "field-top-to-disclosure-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "b7093f51-e97a-4cdc-b068-f00ef8bb6658" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "ef7a07e3-a405-4788-a62b-771b0db019a8" - } - } - }, - "field-top-to-disclosure-icon-spacious-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "a3ee5984-d111-47f6-98b7-ad96b525e1ef" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "14cb8fe0-892a-438f-a794-9b013ef96d96" - } - } - }, - "field-top-to-disclosure-icon-compact-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "39f7e2c2-219b-4f4d-a45a-c0e2e458312e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "88fbbbe8-6dda-4d11-8d13-ed0fabaf0088" - } - } - }, - "field-top-to-disclosure-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "8ac99ac4-b63c-4824-a49f-35f0820cde81" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "4a5f821c-2703-48ba-85d2-15c922514839" - } - } - }, - "field-top-to-disclosure-icon-spacious-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "ca7c26d4-38eb-4382-b524-a27c73a34b7a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "31px", - "uuid": "45f97901-f614-42bc-b22b-c0b6cebb945b" - } - } - }, - "component-padding-vertical-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "409b876c-ae13-4d31-8487-9bfcd9b8be69" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "262dd415-ea5d-4f07-9493-030ac33a2dce" - } - } - }, - "component-padding-vertical-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "6ff7a5b7-4344-4498-887d-3af9585035a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "ae87b22b-17dd-46a1-9c40-ec4fbe701e95" - } - } - }, - "component-padding-vertical-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "5b2e9907-858e-41f9-9c63-a37e30ec472e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "67715127-dfd9-44ed-a3bf-4816e9dafb34" - } - } - }, - "component-padding-vertical-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "2af29e94-8c2c-475c-bde0-4e3f2ebd5df4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "e5202547-d71b-4e1f-8d60-fe1e63cf18f9" - } - } - }, - "component-padding-vertical-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "894526c7-315d-4325-be16-8e99a8a2586b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "ae78edbb-1b08-44d6-9c5a-37baf2fe94f6" - } - } - } -} diff --git a/docs/s2-tokens-viewer/tokens/package.json b/docs/s2-tokens-viewer/tokens/package.json deleted file mode 100644 index f3ce69ff..00000000 --- a/docs/s2-tokens-viewer/tokens/package.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "@adobe/spectrum-tokens", - "version": "13.16.0", - "description": "Design tokens for Spectrum, Adobe's design system", - "type": "module", - "main": "index.js", - "tokens": "dist/json/variables.json", - "scripts": {}, - "repository": { - "type": "git", - "url": "git+https://github.com/adobe/spectrum-tokens.git" - }, - "author": "Garth Braithwaite (http://garthdb.com/)", - "contributors": [ - "Aaron Brownlee (https://misterbrownlee.com)" - ], - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/adobe/spectrum-tokens/issues" - }, - "publishConfig": { - "provenance": true - }, - "homepage": "https://github.com/adobe/spectrum-tokens/tree/main/packages/tokens#readme", - "devDependencies": { - "ajv": "^8.17.1", - "ajv-formats": "^3.0.1", - "deep-object-diff": "^1.1.9", - "find-duplicated-property-keys": "^1.2.9", - "style-dictionary": "^3.9.2", - "style-dictionary-sets": "^2.3.0", - "tar": "^7.4.3", - "tmp-promise": "^3.0.3" - } -} diff --git a/docs/s2-tokens-viewer/tokens/semantic-color-palette.json b/docs/s2-tokens-viewer/tokens/semantic-color-palette.json deleted file mode 100644 index 7613cc33..00000000 --- a/docs/s2-tokens-viewer/tokens/semantic-color-palette.json +++ /dev/null @@ -1,551 +0,0 @@ -{ - "accent-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-100}", - "uuid": "2e080bb5-6f2c-4fd9-96a2-bf9fc19d2649" - }, - "accent-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "cf583998-4dfd-4222-a554-8e05ed7fb5d6" - }, - "accent-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-300}", - "uuid": "ea67f054-1f42-427e-a768-beb8d21de2a3" - }, - "accent-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-400}", - "uuid": "a249e4b1-e6f9-4ef3-96c6-1559059839a7" - }, - "accent-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-500}", - "uuid": "c1c0e6fb-ce21-49d7-91bb-73ce873aa69f" - }, - "accent-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-600}", - "uuid": "5a2000be-5640-4389-a128-b2c164ad2253" - }, - "accent-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-700}", - "uuid": "a8fbe39b-db6d-4bb4-a7c5-8a235060d2ae" - }, - "accent-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "87a2c8f0-54fd-4939-8f42-3124fde1e49e" - }, - "accent-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "90d82778-1cbb-47c0-aab9-b6e38a9cdc54" - }, - "accent-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "9bf3fa2f-75d3-44d3-ae30-d88893665366" - }, - "accent-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1100}", - "uuid": "f7f853a5-f091-4a7e-8aea-68d060c840f0" - }, - "accent-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1200}", - "uuid": "7c141cdb-1e5e-468a-ba48-0df01b275402" - }, - "accent-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1300}", - "uuid": "f7307eba-e311-41a8-bb50-0b1e96833dfa" - }, - "accent-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1400}", - "uuid": "06585cf4-a924-49b2-b6c8-f0e80b57c576" - }, - "accent-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1500}", - "uuid": "c43d9991-8929-4b1c-8631-670eef6bde83" - }, - "accent-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1600}", - "uuid": "4b70c929-f48d-403d-9607-5963203433dc" - }, - "informative-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-100}", - "uuid": "b9fc8b82-275a-49fe-98d7-95f136b48772" - }, - "informative-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "df4ceb7f-aa84-4d71-ab3f-a56146ef146c" - }, - "informative-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-300}", - "uuid": "0caae9f7-cad1-4cd6-b4a3-d47ac090d40a" - }, - "informative-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-400}", - "uuid": "46f3f214-5211-452b-8dc0-ffb7e9f9712b" - }, - "informative-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-500}", - "uuid": "546f860f-4e17-455a-a6eb-f7a6a3b37128" - }, - "informative-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-600}", - "uuid": "79a0fe09-63fb-4c96-a3bf-a8e126e7838c" - }, - "informative-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-700}", - "uuid": "04a018bd-229c-47da-99e9-d338d05f0fb6" - }, - "informative-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "b4efe4b2-3787-47df-a7a0-5d89c3641f9f" - }, - "informative-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "41b73196-0bc1-493e-9b5d-49f608914f5a" - }, - "informative-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "6b609325-2bcf-491a-ad38-1409025caae0" - }, - "informative-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1100}", - "uuid": "7bf54313-58b6-4581-b5ac-a2e51df4a9ed" - }, - "informative-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1200}", - "uuid": "4504d6a9-87f7-48ea-94a0-d075f28bbcff" - }, - "informative-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1300}", - "uuid": "f7a736c2-db44-4668-90a8-c27778ae9892" - }, - "informative-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1400}", - "uuid": "b178b13b-93ee-422c-af98-3bf89105754b" - }, - "informative-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1500}", - "uuid": "beeee44c-dc6b-4892-949e-67f069fc4a94" - }, - "informative-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1600}", - "uuid": "68aa069d-d8a6-413a-b330-0ec6af905e6d" - }, - "negative-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-100}", - "uuid": "c37f795e-e338-4220-b0ab-5cf899f114c0" - }, - "negative-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "14919f0c-a40f-48d1-adfd-55826de8e600" - }, - "negative-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-300}", - "uuid": "53486ec0-79f7-4853-ad5b-dacc5a904f8a" - }, - "negative-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-400}", - "uuid": "de87c624-7f43-406e-8cdf-584343a55edc" - }, - "negative-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-500}", - "uuid": "67d09223-03a0-444a-95b6-645a2d66f8c7" - }, - "negative-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-600}", - "uuid": "4a0c11a4-4e77-43e0-a2cd-9931ac51d87d" - }, - "negative-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-700}", - "uuid": "b7d5d2db-0282-436b-8cb0-873e891b22a6" - }, - "negative-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "d858b481-8970-4547-aed1-b6388c36aba4" - }, - "negative-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "0b469d2e-7c66-4188-b6bf-bbc379f75538" - }, - "negative-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1000}", - "uuid": "2ea616aa-e08f-47cb-a3b0-3d7a06bd6ec2" - }, - "negative-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1100}", - "uuid": "8a3dacc3-93f7-4e22-8bd7-c338da1a2489" - }, - "negative-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1200}", - "uuid": "1b24f4e8-224c-41f9-b0eb-6a01e9261598" - }, - "negative-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1300}", - "uuid": "fa641bdd-0714-4ae4-9a8f-8d829a9977e5" - }, - "negative-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1400}", - "uuid": "58824d04-e2c0-4f0c-a3d7-9b88a01bf28d" - }, - "negative-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1500}", - "uuid": "b4c1f747-e665-43bb-a1a9-1bf9f252471d" - }, - "negative-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1600}", - "uuid": "62beb7ee-c347-4cd7-a84b-40c84fcbc135" - }, - "notice-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-100}", - "uuid": "d0382c45-0cf7-4c3b-89fb-3536459cbc31" - }, - "notice-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "b9218264-6bd0-4fee-8ab7-346428c9bbaa" - }, - "notice-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-300}", - "uuid": "f1e8d13d-d9d2-46ea-befe-ebf1927e08dd" - }, - "notice-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-400}", - "uuid": "77535709-6e67-4d7c-aaeb-d2dea1918430" - }, - "notice-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-500}", - "uuid": "ab679012-b7cb-4f24-b401-b02e523d7c99" - }, - "notice-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-600}", - "uuid": "716af828-c64d-465d-8476-d142892ca59c" - }, - "notice-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "adb5159c-654f-4b9a-a101-3afa90328c42" - }, - "notice-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-800}", - "uuid": "a83cdd4d-b8a9-42af-98c4-459f721abbff" - }, - "notice-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "df87ca09-ff38-485e-90f7-6d9cbfbb6714" - }, - "notice-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1000}", - "uuid": "d6fdcf63-c135-48a0-a767-e8f1e93e8190" - }, - "notice-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1100}", - "uuid": "c30c4ce0-ed40-44eb-ae0b-3549523d5bc9" - }, - "notice-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1200}", - "uuid": "7e22e4fe-bd28-4dac-b518-e35ec6900da3" - }, - "notice-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1300}", - "uuid": "197c8ecc-3d6a-46e5-82f2-c315a52169fb" - }, - "notice-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1400}", - "uuid": "4eccc44a-1cd5-4d9e-8627-18f7a363d3c8" - }, - "notice-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1500}", - "uuid": "3da89d37-cf33-4408-b316-05bb61c25759" - }, - "notice-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1600}", - "uuid": "67e534f5-5421-493c-9324-624f0fd491f3" - }, - "positive-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-100}", - "uuid": "09503086-ccd2-4dfb-9bc1-6b86cf595976" - }, - "positive-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-200}", - "uuid": "00a2adcc-7b8a-4e94-97d2-51a647016265" - }, - "positive-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-300}", - "uuid": "2c75e63f-e628-487d-a143-e03de065d5ee" - }, - "positive-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-400}", - "uuid": "906a05ca-0b2f-4ada-9e71-507d9f0653be" - }, - "positive-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-500}", - "uuid": "b2e94182-57ae-479d-ab91-717edc0ec3f6" - }, - "positive-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-600}", - "uuid": "d3a018bf-0abe-4031-8c38-80a94b0d62ae" - }, - "positive-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-700}", - "uuid": "ffdde321-5c1d-489e-8a0f-afc582248594" - }, - "positive-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "ee02d9d5-b840-44af-be8a-0f10086e8f7e" - }, - "positive-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "1cd86108-ff79-4ccf-911e-8de9986c9053" - }, - "positive-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1000}", - "uuid": "82d9fc42-d750-43d2-b227-b8df29abaca4" - }, - "positive-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1100}", - "uuid": "05f42672-455e-421c-8a7e-cb187355d23d" - }, - "positive-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1200}", - "uuid": "c4f84a4a-cfc4-42a6-81d4-11f27e1b38eb" - }, - "positive-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1300}", - "uuid": "7d2d9fe7-5498-4f73-be6a-3a4ac91b6e15" - }, - "positive-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1400}", - "uuid": "eb2fdab7-ea9e-42a3-a3d1-f9beec0c7b66" - }, - "positive-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1500}", - "uuid": "2381ba55-11ff-4ef0-a770-dfd402650d5d" - }, - "positive-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1600}", - "uuid": "de206438-991f-4580-8aa1-1488acb03a09" - }, - "negative-subdued-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-subtle-background-color-default}", - "uuid": "a553db3e-a051-4023-87eb-da6545b983b2", - "deprecated": true - }, - "negative-subdued-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-300}", - "uuid": "9513cf13-8537-443f-81ce-f9d88292ba32", - "deprecated": true - }, - "negative-subdued-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-300}", - "uuid": "1eea917c-52e7-4295-b0e1-d33c2e73a137", - "deprecated": true - }, - "negative-subdued-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-300}", - "uuid": "4b6aaf76-e0ab-4be0-81c0-d5f64cacee88", - "deprecated": true - }, - "informative-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-200}", - "uuid": "62dfb07f-5eee-451c-9c77-745d8f714766" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-300}", - "uuid": "4cbe010f-0608-47e3-bf27-c7da70a70b9e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-200}", - "uuid": "71ebebf0-95e7-45f7-9f6f-d14ef51cf4f0" - } - } - }, - "positive-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-200}", - "uuid": "57a1aa8f-5c06-4ff6-8d1c-0e278a433ebf" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-300}", - "uuid": "c7644c81-1b2c-40ee-b3a6-b25e88fc34ea" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-200}", - "uuid": "531be3e1-ddfa-4d3b-9a7f-73d7f0e38cd9" - } - } - }, - "notice-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-200}", - "uuid": "f0799e87-dbb2-4e71-8253-65f45eddc078" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-300}", - "uuid": "c9bfd62b-95c7-47d3-bace-ce3f2bfaade8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-200}", - "uuid": "163958bd-7303-4328-ad3c-b04f8dacaf32" - } - } - }, - "negative-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-200}", - "uuid": "8e9429cf-4c89-47be-bc6e-eeecc632aeb1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-300}", - "uuid": "c7575b76-8035-4037-8bd5-e8bdb82bddc3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-200}", - "uuid": "ea3ceaa2-235b-4c55-88b2-c0d744434d83" - } - } - }, - "icon-color-informative": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-visual-color}", - "uuid": "2296b0de-6231-4f89-9992-499b67c6879c" - }, - "icon-color-neutral": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-visual-color}", - "uuid": "29f5b73c-e8e8-4162-b9af-5a8e327baab8" - }, - "icon-color-positive": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-visual-color}", - "uuid": "02f093b3-ab51-42e7-8f6e-26bc7c7cba63" - }, - "icon-color-notice": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-visual-color}", - "uuid": "4bdb8681-f7a1-4bbe-b788-a64c6f9df6ea" - }, - "icon-color-negative": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-visual-color}", - "uuid": "adf2a3f0-d1cd-4b53-8a9c-47ab9cb7bb0f" - }, - "accent-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-200}", - "uuid": "97293b77-c21d-4ba1-bd2c-5d1de37d75eb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-300}", - "uuid": "c120499e-98c4-442d-971f-31dee8d16c4d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-200}", - "uuid": "5c9c8a1c-c4ac-45e5-ba5f-b08edd9f4297" - } - } - } -} diff --git a/docs/s2-tokens-viewer/tokens/src/color-aliases.json b/docs/s2-tokens-viewer/tokens/src/color-aliases.json deleted file mode 100644 index 5bc31471..00000000 --- a/docs/s2-tokens-viewer/tokens/src/color-aliases.json +++ /dev/null @@ -1,2179 +0,0 @@ -{ - "focus-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "fe914904-a368-414b-a4ac-21c0b0340d05" - }, - "static-white-focus-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{white}", - "uuid": "1dd6dc5b-47a2-41eb-80fc-f06293ae8e13" - }, - "static-black-focus-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "c6b8275b-f44e-43b4-b763-82dda94d963c" - }, - "overlay-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "af66daa6-9e52-4e68-a605-86d1de4ee971" - }, - "overlay-opacity": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.4", - "uuid": "26b9803c-577f-4a29-badd-dfc459e8b73e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.6", - "uuid": "31d5b502-6266-4309-8f8a-3892e6e158da" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.4", - "uuid": "8964a28b-af18-4623-b530-7f4446ee6fa4" - } - } - }, - "drop-shadow-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-100}", - "uuid": "be45ace6-9227-41d1-80be-0c58c3f8b3cb", - "deprecated": true, - "deprecated_comment": "Replaced with drop-shadow-color-100" - }, - "opacity-disabled": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.3", - "uuid": "fdf6fd5d-55a0-4428-a258-4e8fafc74b74" - }, - "background-base-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "e0d8739d-18dd-44bc-92ea-e443882a780b" - }, - "background-layer-1-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-50}", - "uuid": "7e6678b7-2903-434b-8ee2-06c83815b01d" - }, - "background-layer-2-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "b7b2bf98-b96a-40ca-b51e-5876d3418085" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-75}", - "uuid": "e30b7936-6ae7-4ada-8892-94a1f67d55c9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "b834a6a5-e582-4450-b87a-57fa23e12179" - } - } - }, - "neutral-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "95cf1481-f476-47ce-a45a-54da64b44255" - }, - "neutral-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "142f9467-e519-4ed7-bd98-69a31e876e70" - }, - "neutral-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "5a0fdda5-6ac2-4a31-a7b9-6b3a5dd868d6" - }, - "neutral-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "f52c6bfb-2d62-4fc8-a1cd-6c8d7420eeb4" - }, - "neutral-background-color-selected-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "fd1c9f2b-8358-4bd3-a5cc-d211673428bc" - }, - "neutral-background-color-selected-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "1c220122-5f32-42f9-848f-ae10061241e5" - }, - "neutral-background-color-selected-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "966c56d0-4461-45e7-9e20-0277f2111a34" - }, - "neutral-background-color-selected-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "9b8df7df-3439-4614-b446-97a4de782e27" - }, - "neutral-subdued-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "3b09b2fd-cbf9-4933-9655-27a75d984f06" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "fdcab585-e3a9-4026-bf40-e7fdd01bf05b" - } - } - }, - "neutral-subdued-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "a1ab50d5-1aa1-4198-9510-7ea8458cc62f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "81fb8734-c8c3-4f6e-8a14-177ce1d7db02" - } - } - }, - "neutral-subdued-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "300d2800-a6e5-4b78-9b6c-aaf2f4af39c6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "11bf9149-d8df-4f37-ba21-51ff911b0517" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "6e62476c-b60b-4d33-97c5-5fdf1f3a7930" - } - } - }, - "neutral-subdued-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "eece165c-743c-4d7a-b770-3ee50e1951cf" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "a1e08db6-3a72-4b8e-9475-b54a7b9be506" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "ee7dec87-de8b-4145-9985-f5ba78bc3a3b" - } - } - }, - "neutral-subdued-content-color-selected": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-subdued-content-color-down}", - "uuid": "ea46f6d3-4261-4482-a70f-2cddd113aa4a" - }, - "accent-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-900}", - "uuid": "d9d8488d-9b38-47e0-9660-dcad040f3ca8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-800}", - "uuid": "f24eb871-6419-4cef-88a2-cca8548ae31e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-900}", - "uuid": "1f4f6c48-633c-4eb5-b7d6-bf5a9a7fde18" - } - } - }, - "accent-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "9651d413-47dc-4b55-976f-91e5c6c91fb5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-700}", - "uuid": "9e140a94-c11f-470b-b7af-49880e58d4ce" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "a4fb3dc6-b724-4e5d-bbc4-c4d985e85975" - } - } - }, - "accent-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "026b1d5e-7cbc-4ee9-91e8-19766b9ac541" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-700}", - "uuid": "e2c0de7e-d271-4b2c-9393-d864a95732e6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "a5201034-a592-47c6-be78-050ae951043e" - } - } - }, - "accent-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "43ca5f34-decc-4de8-9413-74ce57802b65" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-700}", - "uuid": "af809118-7a97-409c-925f-8d7636a791c8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "afb8dd77-7de2-4749-a594-1ff68b2fcd67" - } - } - }, - "accent-content-color-selected": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-content-color-down}", - "uuid": "9cfbf8bc-e4f3-4658-922e-9421e2ed126b" - }, - "informative-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-900}", - "uuid": "3acd52f0-d19c-4174-9ad5-42885ec9d49d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-800}", - "uuid": "da3a7c08-7f54-4486-bb66-146db21f0627" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-900}", - "uuid": "02e7121e-71eb-4228-a61a-963d7f2a531b" - } - } - }, - "informative-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "06dcb775-28b2-454e-89ce-fda34f30c7d7" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-700}", - "uuid": "092415a8-0054-4f6d-9a93-1541c767b2c5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "d0ad5e30-c689-4831-bbd0-2de373aa11b5" - } - } - }, - "informative-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "91f91b8c-0e65-4b7b-8c7b-60d3b6e235d8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-700}", - "uuid": "c9c09cc9-1ebd-4738-9613-6a0a67bea4f9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "109c9d4a-a024-4b41-9a99-4c0e671f1011" - } - } - }, - "informative-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "ea314056-fd9a-4325-b19a-33f56fad2859" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-700}", - "uuid": "e5292c94-ea4a-49ba-8c25-6ab1114e0fe3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-1000}", - "uuid": "5bcac2b7-7ebb-405a-bfe3-1785d4e6fde6" - } - } - }, - "negative-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "46204746-7fe7-4f22-887e-2c9b85c3b7bc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-800}", - "uuid": "1117b73b-42e3-4ad6-8b26-af76859a27bb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "ebadb88b-90a3-492e-ba3c-e9f1232b5ce5" - } - } - }, - "negative-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "d2481a50-13a0-4f19-8faa-a1a215fee21d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-700}", - "uuid": "648da867-549e-47c3-9312-e9cfda288705" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "b1104fe3-4965-411e-95d3-87f59cdbc756" - } - } - }, - "negative-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "3c2d5afe-fff4-487d-a312-000f738c8704" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-700}", - "uuid": "8565ec8e-2196-47ac-8636-40084acbfd4f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "ce2e6ea6-c692-4cff-a2ac-f0c1c2e054ca" - } - } - }, - "negative-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "41a6ee21-8db2-410b-a694-fca1fbf70f2a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-700}", - "uuid": "f1470931-f4f8-47d9-b118-5b813e4c154a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "abcf178e-0e44-4f57-a62c-382cb9478be2" - } - } - }, - "positive-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-900}", - "uuid": "d878d795-2292-4d90-a9e2-37af1d97a532" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-800}", - "uuid": "82b54f71-7c9e-4388-9e3b-4d13f12fad60" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-900}", - "uuid": "27688f39-6b46-4b40-a3c5-67694a0ff672" - } - } - }, - "positive-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "d60ab5e9-9ada-4587-a75f-91f2b492800f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-700}", - "uuid": "2992a78b-9ce0-4b29-a4f6-ddbc51f820f2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "7c4bd8ad-72ce-4518-b91d-a7b7721fe920" - } - } - }, - "positive-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "4096a319-241e-410c-ad51-521d57155004" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-700}", - "uuid": "58a934d2-a715-4544-aa79-7f94bd493f09" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "45c598af-e0da-4e41-855a-55dfc77f198c" - } - } - }, - "positive-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "036525d0-c6c4-478c-9aa3-84242737c6b1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-700}", - "uuid": "56d371b4-437f-4ca9-854f-ae6daf5dcfce" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-1000}", - "uuid": "74eef2ae-5b83-4a25-b882-5960f64ecef0" - } - } - }, - "notice-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-900}", - "uuid": "323428c1-792d-41b4-8a17-a12f1ac00e2a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-600}", - "uuid": "48f3445a-63d8-4477-a2f5-1fee6a022328" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-600}", - "uuid": "85515d6c-4674-435f-a2d4-b9bf8311781e" - } - } - }, - "disabled-background-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "a46de9d2-5c68-4a1e-97cd-7cbaf4038303" - }, - "disabled-static-white-background-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-100}", - "uuid": "fbd40c55-bb12-43ff-9fa6-c93884befc89" - }, - "disabled-static-black-background-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-100}", - "uuid": "579e401c-de49-41af-a8c7-a0a070c31979" - }, - "gray-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "5adeb281-3183-43e0-b20c-bd4e29f4da7e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "a3e71134-b44f-4b52-a84d-4841e01505e6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "385372e9-8b04-45ea-a7a2-f1f62ac68ad6" - } - } - }, - "red-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "8cec4a84-3eea-45d6-ae1b-64907be7da78" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "ce074ee2-a2a2-4da3-a99e-603524193d46" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "3fb6aa49-631f-489b-9dab-63a5712d72da" - } - } - }, - "orange-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-600}", - "uuid": "981c054e-9db5-4589-b9e7-eed307b115ca" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "3e9a6c2a-bd09-4d28-a95c-920109c1852f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-600}", - "uuid": "37c3db03-6dd6-47e5-a03c-25663d116c52" - } - } - }, - "yellow-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "f8e435de-1630-4628-8b6d-128987d66ddc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1100}", - "uuid": "61c5e375-bff3-479f-8c32-2d2a5edb906c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "ff49d6b0-4f39-4cbb-a580-db03b0579a71" - } - } - }, - "chartreuse-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-500}", - "uuid": "f6e68186-e7fe-4d36-b371-72461a271358" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-1000}", - "uuid": "5df9a029-dc91-4078-a198-574486948834" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-500}", - "uuid": "67d55f09-a468-4174-9b59-13008b32b44e" - } - } - }, - "celery-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-600}", - "uuid": "d4fd682d-4bef-4a92-bf14-90ce02b534e6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-900}", - "uuid": "a9ab7a59-9cab-47fb-876d-6f0af93dc5df" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-600}", - "uuid": "b6e14409-7a61-46fc-80d0-2b7854baf871" - } - } - }, - "green-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "d5cac08e-56e8-4217-a153-33f43c1a2059" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "49170573-9c22-42e1-a1ce-cd3d3972ddb7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "f7814be9-b21f-40ff-9d34-8c0a96eea93e" - } - } - }, - "seafoam-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-900}", - "uuid": "be1d8187-effc-430f-ac31-3904cf83a6d6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-800}", - "uuid": "9a727140-328d-430f-9b10-8965eebe77d1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-900}", - "uuid": "e2f2ef18-aabf-44fd-b074-d94f75862f3d" - } - } - }, - "cyan-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-900}", - "uuid": "12c060c6-db12-41ca-8b53-f4fc0afd2ed7" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-800}", - "uuid": "543af64f-9c28-4e88-8597-3259cd7ebf1f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-900}", - "uuid": "764bb832-de5a-4c21-b429-f911a931ead6" - } - } - }, - "blue-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "c6c435b6-34b3-4fc1-bf96-a56a15e01fe5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "83591a94-83e1-4557-8f50-cc1fe9793b76" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "db8b9268-68dc-46be-aace-1adf8d85061b" - } - } - }, - "indigo-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "23859fff-27f5-4576-83c9-0fbc316e880a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-800}", - "uuid": "b7f5a677-4e89-40e1-8324-7619a628ce8b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "dedf817e-2883-4632-936c-207fdafe7469" - } - } - }, - "purple-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "ed07d8f4-390f-4124-a4c4-81b62767c6cd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-800}", - "uuid": "e577d521-0271-4226-a094-624b35a05826" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "720cfaa3-6bb1-4df1-946f-94fabae54e7b" - } - } - }, - "fuchsia-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "5f61f890-93b3-4ab9-bc80-d75198a5bacf" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-800}", - "uuid": "7b4d71d3-ad78-4e02-a48e-fa79f40854a2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "13e66afc-a9d8-46a9-8b15-310c5b35e52f" - } - } - }, - "magenta-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "4e02601f-12da-4ce2-b58c-0aa0e309442d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-800}", - "uuid": "5867d764-d909-4490-b947-533e89997d0a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "c7b29eba-f8a3-43f7-b5b9-0c1a7f04bb38" - } - } - }, - "background-opacity-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "b7b25005-7188-4936-8dbc-e2dd15213f47" - }, - "background-opacity-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "048c326d-93b1-435f-a9e3-a4cbd3144fdd" - }, - "background-opacity-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "0718c9fc-3bb2-4887-97bd-e23b8ad308c5" - }, - "background-opacity-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "a35883a9-43fd-4be5-97ee-62fdf3a33f39" - }, - "neutral-content-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "43ca4c0d-7803-4e8e-b444-26fe70d5304c" - }, - "neutral-content-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "d236bdc5-037b-4838-8401-8a0d5136936c" - }, - "neutral-content-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "cf169d95-e427-4665-a983-c24727dbfa60" - }, - "neutral-content-color-focus-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-down}", - "uuid": "a370f375-b3b1-4af8-9628-fa901c0252fb" - }, - "neutral-content-color-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-down}", - "uuid": "f218dfd0-23be-4f07-becb-6027cc971c8b" - }, - "neutral-content-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "c2c538e0-6f8d-4586-953a-b98ef40c9eca" - }, - "neutral-subdued-content-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-700}", - "uuid": "7a058b23-341c-4dd3-83d8-358917277836" - }, - "neutral-subdued-content-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "a6d8a177-3e5c-4d28-a675-c21c2695d2f6" - }, - "neutral-subdued-content-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "8ab4accc-bd95-48e0-ae3a-539740a07cc6" - }, - "neutral-subdued-content-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "4e79877b-254d-4226-a28f-4c80d2d8b2f3" - }, - "accent-content-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-900}", - "uuid": "b14c876e-2930-413b-8688-1e0cf2358185" - }, - "accent-content-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "d6cd141c-d7a4-457f-bed5-9a725ca7a0fe" - }, - "accent-content-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "25d3b2d2-e7d5-4686-95ff-bfaaddc14ff1" - }, - "accent-content-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-1000}", - "uuid": "71dcd137-f767-4d2c-b6ac-942b99ac8621" - }, - "negative-content-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "2a1b0c71-c3a4-4f4c-a625-346e026853e5" - }, - "negative-content-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "ff90152d-86bf-4a34-9a7e-ede61966bda0" - }, - "negative-content-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "f760cc99-ebec-4d34-931e-5621aef995a0" - }, - "negative-content-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "03a7aa1f-9493-4054-bb21-eb10e593da73" - }, - "disabled-content-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "8bf69fd3-1462-49b9-a78a-cc2f03380823" - }, - "disabled-static-white-content-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-400}", - "uuid": "fe319bca-0413-4ad8-a783-c64563e05816" - }, - "disabled-static-black-content-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-400}", - "uuid": "e75dbb08-80eb-4de5-afd4-55a532c69c97" - }, - "neutral-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "0dc6ed4d-17d5-4878-8ac3-bd99549b4f42" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "35ef6675-7e66-4ef5-8c8d-e8e70939b224" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "57233b29-bbc6-4f9e-83c1-9325fd6f964c" - } - } - }, - "accent-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-800}", - "uuid": "dbcb4372-f250-42bd-a5bc-b9d48cfb9322" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-900}", - "uuid": "8ccd197f-fc8e-4d31-866c-2b96049eea89" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-800}", - "uuid": "6e12afb7-c76e-4a83-acc2-f891953d5190" - } - } - }, - "informative-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-800}", - "uuid": "cd900a8d-1852-4592-9031-9edab2f9721f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-900}", - "uuid": "fd64c9ca-6ad7-415c-b0b8-2579399e33a5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-800}", - "uuid": "556d02fd-fecb-4772-92cb-921ac509bcae" - } - } - }, - "negative-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-800}", - "uuid": "d1beeda3-a00d-4f8c-8553-0a0f84093b1f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "70cb0316-5b7a-416c-bf93-7d8885c4fce6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-800}", - "uuid": "9211e320-de05-4097-8350-fef2293be6a0" - } - } - }, - "notice-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-800}", - "uuid": "b8b38df6-aac5-49fc-99bb-d64a543c5bf8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-900}", - "uuid": "2759c912-6385-40e4-9ed9-ff2e11815b4d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-800}", - "uuid": "e6e779ea-6015-467f-8df7-9027280bdea2" - } - } - }, - "positive-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-800}", - "uuid": "455acfc0-1997-4fee-b1dc-3c91bbd9fca2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-900}", - "uuid": "25e8289f-6c82-4485-8920-a187f790cd47" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-800}", - "uuid": "96075e1a-6739-41c8-985b-af30b09be6c3" - } - } - }, - "gray-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "744537db-023b-4833-8262-9c349b0915ee" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "0f7a39c2-3ee7-4ff0-873f-334c81054b77" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-500}", - "uuid": "e8113995-d2ec-4089-a050-9b393eb9e403" - } - } - }, - "red-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "7fe7c804-7e6b-48ac-b1fa-b88874e0a330" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-700}", - "uuid": "870f90ab-7f3e-41b6-9c11-59e9c4ff82c6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "834d0a71-9060-4ce0-8e25-8b062ef89b19" - } - } - }, - "orange-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "8fdaf9e0-bd3e-4188-84bd-7abf72e50b58" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "e7bf9977-2edf-48bc-8099-ad95e57b55b1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "f76b6279-2d64-47fe-a531-1737a834b21a" - } - } - }, - "yellow-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-600}", - "uuid": "73e40884-6d55-4a56-a376-bd788e615754" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1100}", - "uuid": "4a2ebbb5-b8b7-43a0-9d64-4974bb382a8b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-600}", - "uuid": "c14eedf9-0f34-4a38-9b89-7c9b5f3e0af6" - } - } - }, - "chartreuse-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-600}", - "uuid": "18735078-a942-442b-bc04-1b72bac77c98" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-900}", - "uuid": "a46d8e05-4f56-4b46-a279-0164abfa42e8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-600}", - "uuid": "a2cc3b6e-014f-4522-8d05-9e9d06464504" - } - } - }, - "celery-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-700}", - "uuid": "8f6f9f6e-1762-4ac3-a9b9-6cacd135dfac" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-800}", - "uuid": "37c1311b-29ed-44ab-b656-a7538726ad77" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-700}", - "uuid": "d8adaaf1-b6a3-400a-853b-6ba5a5c873e7" - } - } - }, - "green-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-700}", - "uuid": "83f76815-8660-425e-80e6-825a5be0628f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "1219770d-543d-4216-9e87-c158f8a74df6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-700}", - "uuid": "4aba2da7-3eed-4a11-830c-58cc4f6bb6cb" - } - } - }, - "seafoam-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-700}", - "uuid": "2b0a6584-db41-43b9-ba39-39171548c01a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-800}", - "uuid": "736e4768-7944-40ec-a412-4cd36299e03d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-700}", - "uuid": "15de4533-1a59-4a9f-899f-004a429471c7" - } - } - }, - "cyan-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-600}", - "uuid": "c3c126c9-2133-416a-ac0e-4ae00546941b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-900}", - "uuid": "091a2073-baa0-4cc6-b943-9dddc285ad62" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-600}", - "uuid": "ad004c2f-8cab-45d5-8e22-921d3f0332ea" - } - } - }, - "blue-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "b7cca44c-7c7d-4904-8f2c-d5bde4ea42a2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "63fe16ed-70fa-4eaf-918c-f642ff69ce05" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "0f058412-085d-4670-8cd5-964ed903a20a" - } - } - }, - "indigo-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-800}", - "uuid": "cb59d4d5-c17e-428d-a22a-e9a3fc02ac9c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "584ccbd4-3243-4041-b665-e2342d2b26e8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-800}", - "uuid": "056968e0-d29e-4b1c-a9b1-50853f6d159b" - } - } - }, - "purple-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-800}", - "uuid": "681fc141-b235-4cde-9c3a-f0033943d772" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "0ee2957b-c401-4106-8ff3-9de9fa544a03" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-800}", - "uuid": "ef836f5b-c6b9-4e6b-a671-e979dc53c407" - } - } - }, - "fuchsia-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-800}", - "uuid": "36b69bb1-d443-4ec6-807b-ea449a886825" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "38e60263-cb08-4090-a653-5acbd1664ae0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-800}", - "uuid": "656af4f3-a545-4445-9d2b-2c4a17ab46db" - } - } - }, - "magenta-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-800}", - "uuid": "8bc581a9-558c-424d-a72b-f24b48207b82" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "178e4bc6-6986-4e77-aab0-78dbe66f8e6f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-800}", - "uuid": "9bf3d052-42d1-454b-8ae6-ee0b40d9a9c8" - } - } - }, - "disabled-border-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", - "uuid": "474ae56c-709a-4f5a-a56b-62d01093f412" - }, - "disabled-static-white-border-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-300}", - "uuid": "c0dfeb64-983e-4f4c-a13e-24b5fbd2b791" - }, - "disabled-static-black-border-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-300}", - "uuid": "2df7303f-3c34-47d1-9ec9-b901dfbcf947" - }, - "negative-border-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-900}", - "uuid": "6effed65-3d52-465f-9eb2-7994f1ee90fb" - }, - "negative-border-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "496571fc-18ce-44a3-a89e-40ff6397adcd" - }, - "negative-border-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1100}", - "uuid": "0c35da5c-cf37-4349-82e4-8739ea94aa65" - }, - "negative-border-color-focus-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-border-color-down}", - "uuid": "63abd660-13c4-47b8-be9e-61e270b95212" - }, - "negative-border-color-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "aae2b3a5-1f68-4832-9539-62227179e69e" - }, - "negative-border-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-1000}", - "uuid": "393cb93a-3d0a-4118-a2ee-451fdc871b0f" - }, - "background-elevated-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-75}", - "uuid": "4c19885d-0411-43dc-8f4a-db81905728e6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "2275e0fa-69a3-4542-9ec6-919e44035118" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "644ca621-9138-44e3-bdd7-123a9fccd9a6" - } - } - }, - "background-pasteboard-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "6a7c5092-c262-49b0-b5ec-5b8b4fa66d1e" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "4938710b-5a69-49eb-8517-6f5556c23298" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "93e51c98-d83e-4dad-86b7-f060a80a601e" - } - } - }, - "brown-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "12fd4bac-b0ef-4285-a0e4-5947526a91a9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "a25ac05c-c108-4caf-a77e-79b4fd36ee91" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "349dc3c5-fd57-403c-bc42-2a60b8325bd3" - } - } - }, - "cinnamon-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-800}", - "uuid": "86aa8b9c-b124-45ba-a359-a58295d28509" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-900}", - "uuid": "24026c61-470e-41b9-a247-58605b54706d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-800}", - "uuid": "9022dc27-f9d9-4697-b808-ebe36d216f8b" - } - } - }, - "pink-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "4be32a08-c731-4c59-b376-ba0ef134e14e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "496cef67-3a25-4d99-8545-e8aa9a7f0adc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "fcbf8451-ad82-4247-a867-a5d0034667b5" - } - } - }, - "silver-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "35f96ec6-0eae-4c55-aa54-134f03feda7d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "f7d55707-b9db-4711-b93f-dcc03932516c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "7e749788-d92d-4ad5-b4d2-446e77c5a041" - } - } - }, - "turquoise-visual-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "2c31e5bc-cf23-42d6-85e8-9947e305d1ff" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "04c6819d-5049-4e18-bb83-95239fa3d8c2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "bc700351-a33c-4164-9ba7-3f86733ebe54" - } - } - }, - "brown-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "168c3534-c54e-415b-a623-27c2a8caea8c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "c6dcdb8e-4966-4de6-a74a-fffa0793d58e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "fbd8df06-a6c9-462b-ad25-a3f77016128e" - } - } - }, - "cinnamon-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-900}", - "uuid": "6dc7df67-2cfb-440f-9b1c-b7262a7cc2d3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-800}", - "uuid": "d442e5b5-5083-443d-ba60-12c60406c452" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-900}", - "uuid": "8e940601-2401-46ff-a5fb-9137d12678b7" - } - } - }, - "pink-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "78fc6322-a961-429a-bd40-3e1c1bf2c4e9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "3a363aa8-cf27-48a1-8c61-b1f1eaff6110" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "b60042cd-3ce7-4952-aeae-338d2b5fe98d" - } - } - }, - "silver-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "13d332e4-45b0-4549-a1a3-a608034960a1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "a6e04390-003e-4565-bf96-e0fb8a791cb9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "e0bb7dad-7f1b-4b6e-b2fe-99f8b14f3240" - } - } - }, - "turquoise-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "e763acbc-2c17-46c5-8484-1d8536e7ef10" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "6beacbfc-6d61-4567-86fe-39771550cf20" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "50eb3d20-ab84-4541-8807-551391016b54" - } - } - }, - "title-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "a7e9c20c-ab9b-46de-bf6a-c8fec9a8986b" - }, - "drop-shadow-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "5c0f0543-7e9b-43d6-9fea-c771b9b524c6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.36)", - "uuid": "8d7e0eb7-c3c7-485e-896c-d5d5107e3b8f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "4110e60c-efd6-421d-9c5c-0356cfff8697" - } - } - }, - "drop-shadow-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.16)", - "uuid": "5945eb42-744c-41df-a4ab-a3d61f8782ee" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.48)", - "uuid": "c88f7b8e-e5f5-4d0e-a8dd-025f8d274948" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.16)", - "uuid": "6e379d86-d4cc-48d4-a8a4-8b4be9cfc912" - } - } - }, - "drop-shadow-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.2)", - "uuid": "84ced765-054d-44f4-9dbe-5be607f65a16" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.6)", - "uuid": "8fd7fa72-67c3-4004-b8b3-af55a4b9cada" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.2)", - "uuid": "e91afe82-e2db-4c13-86cd-bcb2e866edf2" - } - } - }, - "drop-shadow-emphasized-default-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-100}", - "uuid": "af4e0a7a-7c6a-4cf2-a17b-0b07ef365869" - }, - "drop-shadow-emphasized-hover-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-200}", - "uuid": "4c84adb3-9edf-4a5d-b39a-5f31a0d3529c" - }, - "drop-shadow-elevated-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-200}", - "uuid": "e475981f-97af-479c-859b-7619dd87c448" - }, - "neutral-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "cc79fbaf-a2e1-4761-82e7-1dbea52acee8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", - "uuid": "9a9589e8-c08c-486f-a42f-8e139dedaa37" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "64b2528e-4c1b-4850-a67f-8bd7bb05d36c" - } - } - }, - "static-black-text-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "9b7919b5-764c-4f93-b4c7-39d8bf7f2b51" - }, - "static-white-text-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{white}", - "uuid": "13ee65f0-4bb9-4213-905d-92c1b788a702" - }, - "track-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", - "uuid": "6f2bb13a-8579-495c-8fe3-0046b1f99b01" - }, - "static-black-track-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-300}", - "uuid": "c6d40ce0-bcee-4b56-9e63-a51ee1579ef0" - }, - "static-white-track-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-300}", - "uuid": "23791534-8963-4ff8-bfb4-15108da47103" - }, - "static-black-track-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-900}", - "uuid": "0599d3b0-4d9e-4a12-ae0e-8f60e3533ab9" - }, - "static-white-track-indicator-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-900}", - "uuid": "a1cbc282-1376-48d1-b8bb-92f10aef7c6f" - }, - "drop-shadow-dragged-color": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-color-300}", - "uuid": "83c30113-68b5-475b-ba46-9179c9ff7e8d" - }, - "gray-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "83fd0c1f-fbf3-4540-b370-6f44a6dbba7e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-300}", - "uuid": "a95998aa-d6ce-4090-9743-614196862acf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "6529e76c-0c21-449f-a318-2629cf90a58a" - } - } - }, - "blue-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "7d52711e-43fa-4a95-a7b1-3a7367570596" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-300}", - "uuid": "7da4709c-caf3-401a-a2ce-07186a7e8e8c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "93563495-60af-4a84-b811-9672fc46a1cc" - } - } - }, - "green-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-200}", - "uuid": "3b582b64-988e-4b5d-a08d-e04269403536" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-300}", - "uuid": "e10ef55e-c18d-4b73-97d0-330b480e9aa4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-200}", - "uuid": "3911fa84-a5b3-4ea1-b6ad-47f222482ddb" - } - } - }, - "orange-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "e7e1eb3c-7590-4622-a261-8de879bb1500" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-300}", - "uuid": "9b2505cc-2a71-4b1e-804d-3f2ffa69d06c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "a9671857-3e09-4132-a522-cd8f5b4cf8ff" - } - } - }, - "red-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "5d7cd7c1-66fa-49d4-923b-8cca2dcb4726" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-300}", - "uuid": "c098c385-7fce-4f16-b1d1-54a86c608e64" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "8a6b560b-50b2-4dbf-900b-0ed63233df8b" - } - } - }, - "brown-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-200}", - "uuid": "4f1f131b-b6d1-401b-82ff-be6fc0cce9f3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-300}", - "uuid": "77b47209-4527-462b-a11f-b3e5f47857ec" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-200}", - "uuid": "ac6995d9-8982-4dac-ba85-4c79ec7850a1" - } - } - }, - "cinnamon-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-200}", - "uuid": "4d114a18-a876-4b01-a356-64b6098496f4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-300}", - "uuid": "68b6af88-a951-48f8-89c3-9d599a05f4dc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-200}", - "uuid": "f326443a-8f5d-4aa2-8bbb-17dc7b0420d6" - } - } - }, - "celery-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-200}", - "uuid": "cf459b71-0d91-4cb4-96b8-f536e553f66e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-300}", - "uuid": "67618d20-60a0-44d9-b98a-a84faf409788" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-200}", - "uuid": "2182ee3c-55aa-4d07-9cc1-f827c88ce3d6" - } - } - }, - "chartreuse-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-200}", - "uuid": "2dd50902-f9bb-4f79-b31c-3997f4fd2163" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-300}", - "uuid": "b80c47b0-222b-49a2-9012-1465a4575092" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-200}", - "uuid": "ab75a3ba-17ce-4aae-902f-2b3e0233b726" - } - } - }, - "cyan-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-200}", - "uuid": "084200e3-85bf-496e-b12a-b439e108b9fb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-300}", - "uuid": "740e1c42-e68c-4c10-9bcd-30dc0bae6418" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-200}", - "uuid": "2f72eaf9-547a-436e-86ab-695979db4f93" - } - } - }, - "fuchsia-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-200}", - "uuid": "9bb9c1e9-6067-49a4-b4af-13ccd87830d9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-300}", - "uuid": "3e62d682-c770-498d-a25a-5544775aeaa1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-200}", - "uuid": "28ef060d-098c-4388-b600-00f4f8fe49aa" - } - } - }, - "indigo-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-200}", - "uuid": "dda05431-bce9-4686-8738-78fb409ab28f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-300}", - "uuid": "533023cb-f78a-4f1c-af52-244b3c10a7bb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-200}", - "uuid": "2110b943-24cf-4afd-81b2-31676f1400f8" - } - } - }, - "magenta-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-200}", - "uuid": "09787c85-44e0-4efe-b427-f6e7dde544a4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-300}", - "uuid": "143b0387-7069-4bef-b852-9c456d692b88" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-200}", - "uuid": "b526e518-47b2-4a1c-b54b-42596381b7fd" - } - } - }, - "pink-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-200}", - "uuid": "41f3d269-85d6-4c82-9b1c-e40ea508fa78" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-300}", - "uuid": "72400c8f-2e44-4757-8be6-3c1eb28d9606" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-200}", - "uuid": "d726501f-8920-4434-b397-b0974037161a" - } - } - }, - "purple-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-200}", - "uuid": "a53f9f9a-8fde-4de2-83a3-944e1c4556c1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-300}", - "uuid": "896f2a2f-4d02-4104-ac33-a3705a9c61e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-200}", - "uuid": "1d628f99-7c9c-423d-a470-a260d84d0d8d" - } - } - }, - "seafoam-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-200}", - "uuid": "7623166b-5320-40eb-8a5f-2cd12f17bdb2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-300}", - "uuid": "73620c8b-3943-46c0-acb8-d517e7e6081e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-200}", - "uuid": "0acaf55e-7e99-45f9-b99b-e461fa78a481" - } - } - }, - "silver-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-200}", - "uuid": "c80f665a-801e-45c8-b59b-8b9b47ebb356" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-300}", - "uuid": "6f596774-e326-4d80-bf1d-23f7ad1f4ccb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-200}", - "uuid": "ec3dddb5-3944-493c-b5c8-f08c3272dc06" - } - } - }, - "turquoise-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-200}", - "uuid": "aa7d44fd-6c77-43dc-8981-4200356fd02a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-300}", - "uuid": "5e5d9ba8-df94-43e1-ad40-f78312925ec5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-200}", - "uuid": "4e874813-4ebc-4855-bcb3-83024a6d1ba2" - } - } - }, - "yellow-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-200}", - "uuid": "5d5cfc7a-e6f4-4d6d-a39b-359350ddd280" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-300}", - "uuid": "fcb0fe04-3498-4cfa-964d-5134bbcc74c6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-200}", - "uuid": "a238d434-3d0b-48fe-a413-a07e9229cdda" - } - } - } -} diff --git a/docs/s2-tokens-viewer/tokens/src/color-component.json b/docs/s2-tokens-viewer/tokens/src/color-component.json deleted file mode 100644 index b148472c..00000000 --- a/docs/s2-tokens-viewer/tokens/src/color-component.json +++ /dev/null @@ -1,598 +0,0 @@ -{ - "swatch-border-color": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "7da5157d-7f25-405b-8de0-f3669565fb48" - }, - "swatch-border-opacity": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.42", - "uuid": "0e397a80-cf33-44ed-8b7d-1abaf4426bf5" - }, - "swatch-disabled-icon-border-color": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "c49cd7ae-7657-458b-871a-6b4f28bca535" - }, - "swatch-disabled-icon-border-opacity": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.42", - "uuid": "cdbba3b6-cb51-4fec-88f0-273d4bb59a18" - }, - "thumbnail-border-color": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "5bd226f1-0a6b-42bc-80af-4a9dde99e9e9" - }, - "thumbnail-border-opacity": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "58bd04e9-5b85-44d8-8474-96e157701070" - }, - "thumbnail-opacity-disabled": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{opacity-disabled}", - "uuid": "92418bcd-5f0f-4f26-9a96-51f8c9e871bf" - }, - "opacity-checkerboard-square-light": { - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{white}", - "uuid": "c7e50676-3f61-49c3-a35f-2532fdb02360" - }, - "opacity-checkerboard-square-dark": { - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "84a7cd5e-bb2b-4bb5-bb5f-f5839ae3a761" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "f783b8cb-d31f-46c2-b550-990639752510" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "35fcf7b1-7140-4522-8410-48547aaf6fd6" - } - } - }, - "avatar-opacity-disabled": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{opacity-disabled}", - "uuid": "84d25d1b-f9e4-4a9e-8cd0-92367ff00637" - }, - "color-area-border-color": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "70fc4674-0f09-48f5-8850-48b4b38c2f01" - }, - "color-area-border-opacity": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "fba1851e-0056-4cdf-938d-6d61550bbe3c" - }, - "color-slider-border-color": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "0c85e7fa-f950-436c-a68a-dd7fb8dfac9e" - }, - "color-slider-border-opacity": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "8271b69e-6542-4b17-b0f0-72567e16c41b" - }, - "color-loupe-drop-shadow-color": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-elevated-color}", - "uuid": "918b8089-d89f-45d2-8c9c-f3f13f81b0b9", - "deprecated": true, - "deprecated_comment": "Use `drop-shadow-elevated-color` instead" - }, - "color-loupe-drop-shadow-y": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-elevated-y}", - "uuid": "c9af5d60-11b1-4fc3-972e-6a607120657b", - "deprecated": true - }, - "color-loupe-drop-shadow-blur": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-elevated-blur}", - "uuid": "86caa027-9e9e-4a5f-aa38-058f0a96bc9d", - "deprecated": true - }, - "color-loupe-inner-border": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-200}", - "uuid": "d2c4cb48-8a90-461d-95bc-d882ba01472b" - }, - "color-loupe-outer-border": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{white}", - "uuid": "4e1d1cc5-736e-4e82-9054-5c1a74ac1aca" - }, - "card-selection-background-color": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-600}", - "uuid": "622c6e86-dea6-416d-9f13-bb6ef112d3cb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-600}", - "uuid": "81c0608b-c977-490e-b8d7-830d0676fdad" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-600}", - "uuid": "5dd9406f-9b36-43f1-8b35-b1bb7f2a4c8d" - } - } - }, - "card-selection-background-color-opacity": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.95", - "uuid": "ac039445-0bf8-4821-b02e-e7e06a416576" - }, - "drop-zone-background-color": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-visual-color}", - "uuid": "866f3613-c12f-4475-87b1-ad86ef2ce153" - }, - "drop-zone-background-color-opacity": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "ee5ed78b-230c-4b37-9d76-1787a975bb63" - }, - "drop-zone-background-color-opacity-filled": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.3", - "uuid": "ca70550a-b11a-438f-9c70-ff1eeba532cc" - }, - "coach-mark-pagination-color": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "f8cefe70-db2c-489e-bbbe-964050e96ab6" - }, - "color-handle-inner-border-color": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "0c93f310-d7c6-474b-8f07-0e8e76e2756e" - }, - "color-handle-inner-border-opacity": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.42", - "uuid": "72b473c6-ec9b-4830-a0f8-48b80070e7b8" - }, - "color-handle-outer-border-color": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black}", - "uuid": "e4733356-090e-4bb7-b32d-ab9df30fb785" - }, - "color-handle-outer-border-opacity": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{color-handle-inner-border-opacity}", - "uuid": "0a0eff89-7e7d-4b7f-bcfa-a85e33e5798a" - }, - "color-handle-drop-shadow-color": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "deprecated": true, - "deprecated_comment": "Express does not need a separate design for Color loupe and Color handle components", - "value": "{drop-shadow-color}", - "uuid": "97dfaf7f-ac2d-4517-84cc-6f692f712fc5" - }, - "floating-action-button-drop-shadow-color": { - "component": "floating-action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-black-300}", - "uuid": "d66d3a56-1ba0-4ce7-a263-eb46a4d17af0" - }, - "floating-action-button-shadow-color": { - "component": "floating-action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{floating-action-button-drop-shadow-color}", - "uuid": "f843b1b7-4b2f-496e-a679-b0372e49d575", - "deprecated": true, - "deprecated_comment": "Use `floating-action-button-drop-shadow-color` instead" - }, - "table-row-hover-color": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "44aedb76-5483-4ac3-a6f5-8cf71c2bd376" - }, - "table-row-hover-opacity": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.07", - "uuid": "e287d553-3712-4d6e-98f0-6075107e85fe" - }, - "table-selected-row-background-color": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-background-color-default}", - "uuid": "b7537f50-bd49-44b6-a171-19943d443d24" - }, - "table-selected-row-background-opacity": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "61b3aa04-0e7e-44b8-a4c8-8442a4ebf549" - }, - "table-selected-row-background-color-non-emphasized": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-background-color-selected-default}", - "uuid": "8578067a-6ce0-4059-84ad-4688c71df156" - }, - "table-selected-row-background-opacity-non-emphasized": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "1ef41e27-3dea-4589-ad7a-140a03a77384" - }, - "table-row-down-opacity": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "75ae742c-e96e-494f-9880-746bb2849575" - }, - "table-selected-row-background-opacity-hover": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "ce2851bc-8ae1-4b27-8cd6-f191c9cd7fe9" - }, - "table-selected-row-background-opacity-non-emphasized-hover": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "6a093ea1-f07e-4673-b52f-5b28a2e080d0" - }, - "menu-item-background-color-default": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "f4d97d6a-c1f3-4ef5-b7e5-8fbee1365a83" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "9b9e8b32-46b8-470d-85b9-352c00e90138" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "ae0fb15e-c8a2-42c4-b973-0fb523003b79" - } - } - }, - "menu-item-background-color-hover": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "857e82a6-537e-4534-9084-353c5401f567" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "f68ff159-e886-4519-b95e-e93879a2f535" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "1329d684-6ac9-4f46-9bbc-046e2de5276e" - } - } - }, - "menu-item-background-color-down": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "d609bd79-ab48-4a7a-95b1-da5a88ac5338" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "7ccdd9e8-3677-4de8-b9df-19efa80d88c0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "e31108a0-1b8a-4d5e-b579-592a01619bd0" - } - } - }, - "menu-item-background-color-keyboard-focus": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "dd044387-57b9-4867-90fa-b3c4c4a62e5c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "ae9dc785-2406-407e-ab47-d42d6fbf65f6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "e9b046ee-408e-4781-a2cd-1d321bde4529" - } - } - }, - "menu-item-background-color-disabled": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "211d6540-cf9d-4d80-815b-885844283fa6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "0e2c2900-180c-443a-86ff-49170166e616" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "5924d0c5-6938-4660-8be3-9374bb3e5b0c" - } - } - }, - "popover-border-color": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-25}", - "uuid": "66da6f53-5446-43c1-bbe0-73b46763fde1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "825dc035-7b1c-4ddd-b1a9-be1546dae7e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "92133ef4-9b81-4fbd-9736-8b83078ef053" - } - } - }, - "popover-border-opacity": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "05c58363-1d34-4991-a7f7-7be7da4df50a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "1.0", - "uuid": "fa9feacc-0c82-41a7-badc-5803c45a703b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "55ab7957-997f-41a7-b31d-0994a2f77859" - } - } - }, - "coach-indicator-color": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "bfd387b8-0ce0-45ff-8d66-fc5de2f4900c" - }, - "swatch-group-border-color": { - "component": "swatch-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "08b8d06a-5475-47bf-ad2e-9f52ee07345a" - }, - "avatar-border-color": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-25}", - "uuid": "bae79ea7-2b3e-4d43-af42-7deab67acc7c" - }, - "standard-panel-gripper-color-drag": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "69e2d0b3-6807-4e46-9f8a-72bf49439f36" - }, - "standard-panel-gripper-color": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "71840c7b-acdd-45b9-a228-5091591f5405" - }, - "bar-panel-gripper-color": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "5a46c025-32b4-4bda-bab0-5ab0fb69ca8e" - }, - "bar-panel-gripper-color-drag": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "16431c28-23e4-4077-bcfa-138f90583282" - }, - "select-box-selected-border-color": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "4bbb81b1-09fb-4ebe-80b5-cebb75c13839" - }, - "tree-view-row-background-hover": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "39d26185-da40-47b5-b4b3-e47689129256" - }, - "tree-view-selected-row-background-color-emphasized": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-background-color-default}", - "uuid": "65854450-ed1a-49ea-ab29-d257b8a0569e" - }, - "tree-view-selected-row-background-default": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "8f19994d-f49a-42ea-97bd-98ab1d76d02d" - }, - "tree-view-selected-row-background-hover": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "c325ed8f-8248-40c3-a0f0-efba57638f24" - }, - "color-wheel-border-color": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-1000}", - "uuid": "a60c3946-dff7-4245-bdcd-b61445066e48" - }, - "color-wheel-border-opacity": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "be8fac27-b644-492e-a89d-6c87cfecb8a1" - }, - "action-bar-border-color": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-25}", - "uuid": "166159cc-9353-4d22-90f0-64718533d73a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "dac0d761-d8c1-4b1f-bfbe-766651122ecf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{transparent-white-25}", - "uuid": "e242c2e1-54db-40c5-98ee-abebdcd59f4d" - } - } - }, - "card-background-well-color": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "c9c0e684-6b6c-4314-9b5b-7ba5e3333071" - }, - "card-background-loading-color": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "6022f845-b182-493f-bdae-f86f6336efaa" - }, - "stack-item-background-color-hover": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "022a6244-ce6c-4c3f-82a1-e2f5118d3c5e" - }, - "stack-item-background-color-down": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "c99360a4-de28-48e6-80ad-93adb714d388" - }, - "stack-item-background-color-key-focus": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "a0251da6-7517-4712-85a1-29ca7f16ef91" - }, - "stack-item-selected-background-color-default": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-100}", - "uuid": "128c4963-471a-44e3-9fb5-328d92d0266d" - }, - "stack-item-selected-background-color-hover": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "a1bcd6c6-ef3e-42e4-8d88-2fafe2b318da" - }, - "stack-item-selected-background-color-down": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "1ad58d16-66da-44ae-829e-9ee1ff56a857" - }, - "stack-item-selected-background-color-key-focus": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-200}", - "uuid": "93f433f2-2d0b-4225-8b39-b10000808360" - }, - "stack-item-selected-background-color-emphasized": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-background-color-default}", - "uuid": "95685612-09b7-477f-9c13-06eb58abe5c8" - } -} diff --git a/docs/s2-tokens-viewer/tokens/src/color-palette.json b/docs/s2-tokens-viewer/tokens/src/color-palette.json deleted file mode 100644 index f1be337f..00000000 --- a/docs/s2-tokens-viewer/tokens/src/color-palette.json +++ /dev/null @@ -1,6551 +0,0 @@ -{ - "white": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "9b799da8-2130-417e-b7ee-5e1154a89837", - "private": true - }, - "transparent-white-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0)", - "uuid": "98a7279b-e21c-41ae-9bae-8b9b2b243e35", - "private": true - }, - "transparent-white-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.04)", - "uuid": "db1dbf26-fa48-42e1-b724-7953b0a6a543", - "private": true - }, - "transparent-white-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.07)", - "uuid": "28d11d38-570d-4d99-b581-855781b972c5", - "private": true - }, - "transparent-white-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.11)", - "uuid": "a1b64a62-7c78-415e-a9be-c86acbf361ca", - "private": true - }, - "transparent-white-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.14)", - "uuid": "936db837-bc5a-40b0-a0e8-8e39b9fc62cb", - "private": true - }, - "transparent-white-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.17)", - "uuid": "5ffa0283-ce9c-4f96-9227-f559ec54ee0c", - "private": true - }, - "transparent-white-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.21)", - "uuid": "12e610d4-e3dc-4e86-9c09-09d86915b6f1", - "private": true - }, - "transparent-white-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.39)", - "uuid": "89c1380f-3e8e-4895-b025-027cee7ecd5b", - "private": true - }, - "transparent-white-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.51)", - "uuid": "b24431ee-5c72-4a73-8733-746c6f5d77c0", - "private": true - }, - "transparent-white-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.66)", - "uuid": "3ecc14ec-a21e-47ba-8225-915509a532af", - "private": true - }, - "transparent-white-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.85)", - "uuid": "b85836bf-af47-412a-900a-4ec5ad0733b2", - "private": true - }, - "transparent-white-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(255, 255, 255, 0.94)", - "uuid": "c5c823c6-1911-4e0e-ba2f-5105f467e108", - "private": true - }, - "transparent-white-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "1409a50a-9a9d-463d-957f-fa2e4f98a0cd", - "private": true - }, - "black": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 0, 0)", - "uuid": "28dea8b0-4e9a-46f9-babb-c8910e6ae783", - "private": true - }, - "transparent-black-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0)", - "uuid": "d0867b86-6245-4c02-8617-ea7fd5c80288", - "private": true - }, - "transparent-black-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.03)", - "uuid": "d6aa176c-30bd-423f-b05f-4360672bd87e", - "private": true - }, - "transparent-black-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.05)", - "uuid": "d33a66ea-ca60-416f-9e92-967dbbb1e983", - "private": true - }, - "transparent-black-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.09)", - "uuid": "7565eb32-d745-4fc3-8779-a717f8ba910a", - "private": true - }, - "transparent-black-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.12)", - "uuid": "a84ecad8-8005-4ce4-add6-7f83f7e05ba0", - "private": true - }, - "transparent-black-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.15)", - "uuid": "16a871e1-d9df-42bb-8889-99059d70e82e", - "private": true - }, - "transparent-black-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.22)", - "uuid": "b769453b-586c-4dd2-b3a1-ddf5964160bc", - "private": true - }, - "transparent-black-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.44)", - "uuid": "cebedd9f-9e4b-47cf-addb-45d8ff9c9179", - "private": true - }, - "transparent-black-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.56)", - "uuid": "199e19a5-bf7d-4933-8425-d7d5881e4cf5", - "private": true - }, - "transparent-black-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.69)", - "uuid": "56da822f-98ea-4ad1-b993-3f052de45f36", - "private": true - }, - "transparent-black-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.84)", - "uuid": "3e89f180-b0f0-4de0-904b-c80f0210a361", - "private": true - }, - "transparent-black-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgba(0, 0, 0, 0.93)", - "uuid": "c0a331f9-53e3-4c72-b5e3-139d730a1752", - "private": true - }, - "transparent-black-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 0, 0)", - "uuid": "098f2f56-e52f-47b1-943a-d1d7218de484", - "private": true - }, - "gray-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(17, 17, 17)", - "uuid": "ac61b090-d356-4f7f-ac6d-b4f20617c9e3" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "a8c6363c-5297-41e3-ad76-1b6d0d3a3cc9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(254, 254, 255)", - "uuid": "0906f3b2-74a9-4012-9e26-4d8f68f0eba9" - } - }, - "private": true - }, - "gray-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(248, 248, 248)", - "uuid": "f6e408a6-81ae-4658-8375-a532f324eba0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(27, 27, 27)", - "uuid": "0913be1e-b648-4b80-9976-fd8e5e53f4fc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 253)", - "uuid": "16ee1a81-e7d0-46ff-af81-5eca376ce203" - } - }, - "private": true - }, - "gray-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(243, 243, 243)", - "uuid": "01cd6c7e-f2eb-4b5d-9e2a-30940e1ab37b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 34, 34)", - "uuid": "1666d544-ad1b-445a-9a57-d2277fb752eb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(241, 244, 251)", - "uuid": "4b6e738d-ac71-4d34-83eb-cd45e511b144" - } - }, - "private": true - }, - "gray-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(233, 233, 233)", - "uuid": "64e2dbc2-05fa-43d7-80ae-d4d11c55348f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 44, 44)", - "uuid": "abd011c4-87a5-4b1f-82e2-e94d118f417f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(228, 234, 249)", - "uuid": "3605974e-8f93-4907-81b3-fb6ab55d03f8" - } - }, - "private": true - }, - "gray-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(225, 225, 225)", - "uuid": "8de4888d-8da5-45a0-8d5d-64a734993ae4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(50, 50, 50)", - "uuid": "0a676e7a-8a89-4607-a918-3abcfb0234a2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(214, 224, 246)", - "uuid": "eaad36fe-2827-4404-8876-060de75c2b34" - } - }, - "private": true - }, - "gray-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(218, 218, 218)", - "uuid": "aad52960-a7ec-4f69-85f9-3e1a87975120" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(57, 57, 57)", - "uuid": "cc8c4299-c40d-4e93-80b2-c052ee8aaf40" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(207, 219, 245)", - "uuid": "57d4b287-c9d9-4c56-894b-2df496d9a3b4" - } - }, - "private": true - }, - "gray-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(198, 198, 198)", - "uuid": "9a4b4fc4-25e4-4ca8-b0d1-949c5851b47e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(68, 68, 68)", - "uuid": "c34dd99f-e576-4c98-a89d-86dd47514c55" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(180, 199, 239)", - "uuid": "4634f126-2240-4de9-b244-ab2b833d70ef" - } - }, - "private": true - }, - "gray-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 143, 143)", - "uuid": "7fa86c73-f058-4922-be8d-19902515cf44" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(109, 109, 109)", - "uuid": "05808575-f14b-49d1-aefb-e3667ec0f5a4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(108, 142, 217)", - "uuid": "bc09529e-716c-4541-a75a-081ed9fdd860" - } - }, - "private": true - }, - "gray-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 113, 113)", - "uuid": "e6a41088-a188-483c-b197-63ed3c70463d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(138, 138, 138)", - "uuid": "8880b8f1-7850-49ef-a7ab-fd4e16cb37a6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(72, 110, 194)", - "uuid": "3ab25385-aece-42c4-af86-01ea97ed2455" - } - }, - "private": true - }, - "gray-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(80, 80, 80)", - "uuid": "97111e8e-5823-47f2-af64-c3244b8d3492" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(175, 175, 175)", - "uuid": "3cc563c6-386e-4b08-850d-68d4a292e559" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 77, 149)", - "uuid": "b5201efc-0a69-4a87-8b9b-e869bcf03457" - } - }, - "private": true - }, - "gray-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(41, 41, 41)", - "uuid": "2caf1f36-80b9-4659-90be-8d89672bb19f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(219, 219, 219)", - "uuid": "d39fc368-ec71-40cd-85e9-afb07862f2b7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 46, 93)", - "uuid": "22e79b14-2a60-4721-8e9b-800fa9e7a128" - } - }, - "private": true - }, - "gray-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(19, 19, 19)", - "uuid": "59093f0d-98b7-4659-bea6-3248ad20e96c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 242, 242)", - "uuid": "90d25d68-afb1-4b2a-9dba-3fe22d44976f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(10, 19, 39)", - "uuid": "93fb6cac-b190-4a5a-951f-f5dc4c0d5978" - } - }, - "private": true - }, - "gray-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "5ce8c477-ae6e-427a-ac5c-79d15c8056ab" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 0, 0)", - "uuid": "457fbeb8-56cd-4f3c-9950-f5e01f83f07c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 0, 0)", - "uuid": "e804baf9-ae2c-4574-96d9-10cd5253fe47" - } - }, - "private": true - }, - "blue-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(245, 249, 255)", - "uuid": "bb610367-a43d-4ba9-b667-84b4d8da69b2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(14, 23, 63)", - "uuid": "7d56ac58-fd58-41b3-9bbd-448ae0a7dd85" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "05ffb7a9-8bd9-46cd-bfb0-66217d52ceb1" - } - }, - "private": true - }, - "blue-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 240, 254)", - "uuid": "989a37a5-66f2-4a84-a118-8d36caee6695" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(15, 28, 82)", - "uuid": "7b7d1fd8-cc1e-4053-b320-e481b8f64c46" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "1f9bd0a5-d1ed-4d24-b8bf-273f5f22a5f4" - } - }, - "private": true - }, - "blue-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 226, 254)", - "uuid": "58dc7d3a-3a6d-4ee4-ad38-5e01a07335bd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 33, 117)", - "uuid": "d88d1685-29dc-486b-a0b9-9c90f60b8cde" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "94ed3997-5b56-41e8-9746-1d7515244c6e" - } - }, - "private": true - }, - "blue-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(172, 207, 253)", - "uuid": "9c39c15f-04ee-4cb3-acf3-04c390f14780" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 45, 154)", - "uuid": "29d339bb-ef80-40f8-a69b-afa778b60805" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "23852b5e-2d80-4c89-946c-1c8c2fe37b39" - } - }, - "private": true - }, - "blue-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(142, 185, 252)", - "uuid": "ccc5c654-280e-4f46-964e-9d589f571bc6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(26, 58, 195)", - "uuid": "a61ed901-7f77-4667-9d19-fff6bab20623" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "ca7117db-c105-446f-85e5-72f1191b9cfd" - } - }, - "private": true - }, - "blue-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 158, 253)", - "uuid": "b781aad3-054c-4e81-a368-a8165e6035fd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(37, 73, 229)", - "uuid": "7e770996-780a-4494-91ea-08c1ae6cfa80" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "560dddaa-d4ae-4d84-8750-30eb72f9e33c" - } - }, - "private": true - }, - "blue-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 137, 255)", - "uuid": "1a25f1fe-6d20-49f9-b8f9-d304efc83626" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 91, 248)", - "uuid": "5cc66280-e13a-459d-8529-c3f531aa5e4e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "0a50f1d3-8ae9-4955-9b1e-3d18121a3302" - } - }, - "private": true - }, - "blue-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(75, 117, 255)", - "uuid": "5ac73d3a-a6cc-4403-a8d5-46bc262d62e9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 105, 253)", - "uuid": "cf0bafc5-f5c6-4986-a17a-6660dc542b71" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "84bc6532-7cb0-47ea-8951-b16bc2a7aab9" - } - }, - "private": true - }, - "blue-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 99, 251)", - "uuid": "3451c170-3e78-449b-86f2-8b7dbea24c1c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(86, 129, 255)", - "uuid": "82b09b04-6a70-4a95-9eb5-a321a66a6465" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "895407bb-8fda-4857-92a9-bf0cc06f2c3f" - } - }, - "private": true - }, - "blue-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 77, 234)", - "uuid": "da15fc4a-a3ce-4cbe-a2d1-bf5a2e77e5c4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(105, 149, 254)", - "uuid": "147ed079-b4f0-4cd7-89cd-7ec93750d688" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "a50fef9e-d01f-490c-9baa-8c9672f1ac96" - } - }, - "private": true - }, - "blue-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 62, 207)", - "uuid": "7044000c-09c4-4c12-8b37-94f8601217e2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(124, 169, 252)", - "uuid": "2a5d2e32-930d-4c50-b1fd-6781a1dc1db5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "85683533-e660-4037-ad0a-3d5e7714a757" - } - }, - "private": true - }, - "blue-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(21, 50, 173)", - "uuid": "aae7bf70-35c6-49f9-a6da-ba40ee217c3d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 192, 252)", - "uuid": "ce7da4ba-77ed-4bdd-a154-90f389af6c2a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "ccde5f80-26bb-4de8-9982-0f7fd3a97e7d" - } - }, - "private": true - }, - "blue-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(16, 40, 140)", - "uuid": "c6fce6c2-ca99-4a3d-b2af-d96a35ec70dc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 213, 253)", - "uuid": "2bc63c0d-691c-4cc4-95b6-b4e530a44978" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "4dbbc998-deeb-4268-9a6a-c49a57ff0bcc" - } - }, - "private": true - }, - "blue-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 31, 105)", - "uuid": "af563d02-b975-4ba5-82d3-02bcf30f762c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(213, 231, 254)", - "uuid": "eb86d777-ec23-47e4-adc6-1203709dc00d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "0284c8ef-fd73-4c33-8f31-bc9a83a5a84f" - } - }, - "private": true - }, - "blue-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(238, 245, 255)", - "uuid": "616c28b4-d9bf-4ff3-9075-6acaad6c112c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(14, 24, 67)", - "uuid": "a24a53d4-d3c3-4d84-b6eb-048326659524" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "07862296-803e-42fc-8ba1-ff8c25e76f66" - } - }, - "private": true - }, - "blue-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "7e8a7cd3-c803-41a9-9178-b43f9eb2e735" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 11, 30)", - "uuid": "29610c54-a311-470d-ad77-c28c000730e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "9d380e6c-f6e9-433d-a8d8-f2432181736c" - } - }, - "private": true - }, - "red-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 246, 245)", - "uuid": "c9e0870a-8cf0-438e-9395-8141c316ad57" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(54, 10, 3)", - "uuid": "04f6044b-d0fa-4705-858c-2dc5721ec30f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "b9752d64-5683-4ddc-ae30-164c475a5d90" - } - }, - "private": true - }, - "red-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 235, 232)", - "uuid": "a1f7b6a3-4195-44dc-a772-9a04d3cf859c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(68, 13, 5)", - "uuid": "b18ca77b-898e-4e09-88e2-8901de3e9172" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "1d78cfc4-2c54-450e-9c5a-e3d3a40bcf32" - } - }, - "private": true - }, - "red-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 214, 209)", - "uuid": "3a393af6-c7f2-45bb-a4bc-9b55518c71ac" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(87, 17, 7)", - "uuid": "fcfcf026-be31-4a05-b833-6757cacb8b05" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "c020ab70-b666-478b-aaf2-8e06c033f307" - } - }, - "private": true - }, - "red-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 188, 180)", - "uuid": "49e7cf3a-1f2a-4487-a0a9-3869a30593f1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(115, 24, 11)", - "uuid": "8f9fa135-5aca-4e42-b247-fdfbf74bc07b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "4ca331f0-9278-4ad7-9328-766e8a5f83e6" - } - }, - "private": true - }, - "red-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 157, 145)", - "uuid": "70b11bf5-60c8-48a6-a1d5-2a74bc22e283" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(147, 31, 17)", - "uuid": "ec50a21c-88aa-41a8-b607-c8b1c407ac4f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "92784233-e6b0-4de0-8069-f3c037472dec" - } - }, - "private": true - }, - "red-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 118, 101)", - "uuid": "00d13447-f1f9-4cda-89b4-6a839260e91a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(177, 38, 23)", - "uuid": "ff0fa040-17d6-4570-84b5-7a88c5bb9f45" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "3fe966a7-eac1-4e06-9652-271182ff332d" - } - }, - "private": true - }, - "red-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 81, 61)", - "uuid": "a84b6ffe-5235-4517-9beb-320ed79cf6b0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(205, 46, 29)", - "uuid": "cb2486de-b2be-45e5-b459-6e371b29d357" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "fd598b48-a775-4c72-92e5-55f357c33537" - } - }, - "private": true - }, - "red-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(240, 56, 35)", - "uuid": "6c3daf67-9cdc-4c02-9912-ff0b902c22ed" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(223, 52, 34)", - "uuid": "9ff36ad0-608e-46a7-ab56-00af3d307d83" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "abc67d6b-bd80-4e94-a91b-1f52216a5013" - } - }, - "private": true - }, - "red-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(215, 50, 32)", - "uuid": "d5d3bc64-629c-44b0-8ff5-81f260521f5b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 67, 46)", - "uuid": "ccb79099-59f4-4bf2-b149-0de72f556a45" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "f9fbdd87-77f6-4b99-b5f5-357604b57a48" - } - }, - "private": true - }, - "red-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 40, 24)", - "uuid": "4a585714-4331-44b1-b81f-25a8ff1cc8ea" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 103, 86)", - "uuid": "95621c5a-1768-4707-a2ce-bd15c61c89f4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "d3c2852d-4d9f-4493-af1a-cba5269baf22" - } - }, - "private": true - }, - "red-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(156, 33, 19)", - "uuid": "a02ee7fb-b9de-45f1-bee7-8ffe2145cbec" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 134, 120)", - "uuid": "53617d38-1075-4b47-87c7-4695b385a2d7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "fb1cf925-d51e-4b6a-9cd1-ee711193a03a" - } - }, - "private": true - }, - "red-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(129, 27, 14)", - "uuid": "ea79c634-9d94-4012-bae0-903479c34dc5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 167, 157)", - "uuid": "e7820c1c-ff58-431d-b521-b81ee3281db0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "2caf3838-8be9-41d9-9cb9-fa2e6a2f8373" - } - }, - "private": true - }, - "red-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(104, 21, 10)", - "uuid": "63934482-260f-4c73-a176-cad11427c537" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 196, 189)", - "uuid": "7691bca6-3749-4cb7-a950-a94fe3d2910f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "5e630b5e-ff35-4463-8db5-79519a54d64f" - } - }, - "private": true - }, - "red-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(80, 16, 6)", - "uuid": "1c208bc2-2eca-4727-a195-f80fe0e7ea11" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 222, 219)", - "uuid": "aaafa24c-cb3c-48cd-9cb7-e164be140ab5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "e70a8b5a-06ec-4771-9c16-9e74ae15c9bc" - } - }, - "private": true - }, - "red-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 242, 240)", - "uuid": "e99ac2fd-25ab-4202-a279-41808cc8dbc6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 11, 4)", - "uuid": "45ef3c1f-fb24-4a0e-98c3-69c6027eb709" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "421ec0d6-4d71-4c2d-8a39-19e3700451f0" - } - }, - "private": true - }, - "red-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "685778a4-bc17-4d74-a713-1776fc2516af" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 5, 2)", - "uuid": "3d8a70af-6e0b-449f-98e3-515498bf00ca" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "50807cbc-ade6-4f6d-8711-f569a52adaf8" - } - }, - "private": true - }, - "orange-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 246, 231)", - "uuid": "8bfd5eff-55b4-4b98-9b2e-2871e4ec6ff6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(49, 16, 0)", - "uuid": "974ab8ec-6691-4696-b38c-77e16fb3df88" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "e4fff178-2055-4ec8-83e8-636a4ea8bb8c" - } - }, - "private": true - }, - "orange-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 236, 207)", - "uuid": "64371717-ac11-4ec3-a0aa-9042cf43fa8f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 21, 0)", - "uuid": "587d4ce3-4275-4d2a-916c-2b1bf78c38ea" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "47e53be7-b33b-48e3-abdf-fe48d59f8819" - } - }, - "private": true - }, - "orange-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 218, 158)", - "uuid": "f34f9b32-ef46-4473-bfd6-10b858e53f55" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(80, 27, 0)", - "uuid": "74f40bbb-5afd-4c88-89d3-e69de9e2b604" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "c455298b-cc23-4504-b731-27be6433fbcd" - } - }, - "private": true - }, - "orange-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 193, 94)", - "uuid": "15bea688-4c32-44c0-9ee3-242bdb50954c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(106, 36, 0)", - "uuid": "b912089a-b6c9-49ef-8a4b-0a1f6fbbe963" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "2c08292c-e6cc-4dcb-9046-8a2af09d1e43" - } - }, - "private": true - }, - "orange-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 162, 19)", - "uuid": "33bd4908-1259-4e75-8e96-bd410bebcfd6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 47, 0)", - "uuid": "8a56b352-d7d4-45d4-b403-448557656dab" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "e6c70e40-f9e7-4975-af39-9458a8325c6f" - } - }, - "private": true - }, - "orange-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 125, 0)", - "uuid": "eeede364-d711-40e5-9d2a-0255b10d36f2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(162, 59, 0)", - "uuid": "27b198b5-bf02-476a-a440-84c9a5bd2ce3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "8a201cca-353e-4538-a6b5-efbc2fc86186" - } - }, - "private": true - }, - "orange-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(232, 106, 0)", - "uuid": "a4527b6f-e2d4-4a0f-b013-007dc5a2d3ac" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(185, 73, 0)", - "uuid": "f9e84513-57d6-4786-b8db-c86055cebfc6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "58992b4e-69ab-4919-922a-dd9277cb770e" - } - }, - "private": true - }, - "orange-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(212, 91, 0)", - "uuid": "437e4f5b-e68c-4491-b26c-a9fa1503561b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(199, 82, 0)", - "uuid": "5a88ed4e-94f9-4533-ab13-3995b5a60a5a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "8f42ee1b-59a5-4759-bef3-614835b348b2" - } - }, - "private": true - }, - "orange-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(194, 78, 0)", - "uuid": "e9df9a43-f509-44f3-89f6-c277f7445651" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(224, 100, 0)", - "uuid": "0fbe4f46-02a8-444d-ace5-c245c6f15112" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "69637678-cb68-46f1-9353-1c7d0f86e51e" - } - }, - "private": true - }, - "orange-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(167, 62, 0)", - "uuid": "7dc902b9-6512-429e-9cb4-c2f97ca08e99" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(243, 117, 0)", - "uuid": "92e06ff6-8347-4320-9a98-3054ba458d0e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "bc744bfa-dd64-4660-b67c-105f07e66644" - } - }, - "private": true - }, - "orange-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(144, 51, 0)", - "uuid": "b6c1e499-f043-4b5a-81cf-4224a0f83fce" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 137, 0)", - "uuid": "a571e2cd-2aff-4344-b608-45a48162cb61" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "7aea0d8d-0fb0-47c1-ae6a-97510159359b" - } - }, - "private": true - }, - "orange-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(118, 41, 0)", - "uuid": "14da1231-c89f-45a1-845e-f3bd902f704b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 173, 45)", - "uuid": "8e3fe8e0-2b14-4331-869f-de2680ea60ac" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "269da724-5ec7-4ceb-991d-1e83495cfaed" - } - }, - "private": true - }, - "orange-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(95, 32, 0)", - "uuid": "f650301b-6586-4193-9937-9f12d6c3f99f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 201, 116)", - "uuid": "06afaefe-7e0a-42e2-99b5-e62674e1185d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "c1389efc-8e68-4e2d-94b1-17e193264be7" - } - }, - "private": true - }, - "orange-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(73, 24, 0)", - "uuid": "99a43835-df3a-4447-b91d-9d943659b07f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 225, 178)", - "uuid": "9f2f551f-b606-48ce-9493-888587d3ccb6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "0d6ed0c9-b185-4656-9985-04904a39f5e6" - } - }, - "private": true - }, - "orange-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 243, 225)", - "uuid": "48b0167c-d675-4fc5-9130-1b36a94fd163" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 18, 0)", - "uuid": "8aa75bbd-fd78-463d-a321-8672e5a537d6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "ea973b33-e10f-44b6-a621-92c752edb8af" - } - }, - "private": true - }, - "orange-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "b2f21ea2-e546-4b1a-a72d-e840172857b4" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 8, 0)", - "uuid": "e99566f3-7b29-4c75-a4bd-ce17c0d84c3f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "c93608b1-700d-496c-90c4-298870776956" - } - }, - "private": true - }, - "yellow-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 248, 204)", - "uuid": "910d2e36-245f-4df6-a99c-92a5bb4d4cce" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(37, 23, 0)", - "uuid": "7bef094a-1523-4392-a0ca-59c48409f17a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "be46f4fb-64d6-4e04-abd1-1f87c634d272" - } - }, - "private": true - }, - "yellow-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 241, 151)", - "uuid": "0ebcaa53-4d19-4eed-99d1-4477f4358a58" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(47, 29, 0)", - "uuid": "f4fdc925-63b3-4670-9f2b-a057c27c834a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "2e4d1e66-b660-4e99-8f01-ff9964aa19d8" - } - }, - "private": true - }, - "yellow-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 222, 44)", - "uuid": "97ea0771-52c6-48f0-8725-dc514b0738d4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 39, 0)", - "uuid": "238147c6-0302-4d43-b3a3-42df832c7857" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "6547eb52-a3a5-4004-8125-df92fed7a062" - } - }, - "private": true - }, - "yellow-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(245, 199, 0)", - "uuid": "8ffb47cc-cc5c-4179-807e-4a1cb45c6496" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(83, 52, 0)", - "uuid": "62ab6892-66ea-4b55-8c1a-fcc191d29717" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "2c6515da-f97b-4961-93cf-5b6c668fc0fc" - } - }, - "private": true - }, - "yellow-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(230, 175, 0)", - "uuid": "68a43979-6dee-45b9-963d-3e827b2554f4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 67, 0)", - "uuid": "efa1fdd8-4478-411a-892c-0ecf23939489" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "8e450204-2aa5-4cb2-959b-8fc28f7f55bf" - } - }, - "private": true - }, - "yellow-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(210, 149, 0)", - "uuid": "8c86293e-334b-49ed-a7aa-eb4fe987002f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(130, 82, 0)", - "uuid": "8ae3c5ec-aabe-47a0-b822-ba0907e67ed4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "dfdf38c7-1e23-44a8-8a62-a5f6c3a341bf" - } - }, - "private": true - }, - "yellow-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(193, 131, 0)", - "uuid": "881b7389-0c65-46e6-a391-d1d5800c535c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(151, 97, 0)", - "uuid": "ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "69c7c213-9a1c-4cd2-ac90-2142aa955e00" - } - }, - "private": true - }, - "yellow-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(175, 116, 0)", - "uuid": "b9ee2410-9573-4acd-bff8-ce11bf0f72a0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 106, 0)", - "uuid": "67e8d9aa-d843-4536-9c97-bd51e62da8ee" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "9ebe0ca0-5580-4083-899a-ba4a4638254d" - } - }, - "private": true - }, - "yellow-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(158, 102, 0)", - "uuid": "1b030fd3-f5bc-4e84-8efd-33db77bf64b8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 124, 0)", - "uuid": "a12f6cac-7fdc-4fd4-8120-ad957823ff6b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "a9e4cb0b-80af-417f-b8d5-b1a7aefa15e5" - } - }, - "private": true - }, - "yellow-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(134, 85, 0)", - "uuid": "a9d84db4-e9db-45a8-9010-4e64822f0408" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(203, 141, 0)", - "uuid": "4cf4a500-37a2-4dd8-a243-14f6c012b53c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "7e7a2c49-bf61-4402-b85b-bf4df9ca8ff0" - } - }, - "private": true - }, - "yellow-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 72, 0)", - "uuid": "b6001568-2f26-4722-85e2-e6a3a8ad0ec8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(218, 159, 0)", - "uuid": "4eee9daf-e19d-4e0b-b12d-4fdcc4852956" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "b54bc7bb-2347-4265-ba88-8af7fa420bdf" - } - }, - "private": true - }, - "yellow-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 59, 0)", - "uuid": "7be15b50-51c6-4d0c-9ec8-89b4ac170a5a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 183, 0)", - "uuid": "69059dfa-e2e1-4f8d-b06b-058a8724e071" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "2e92e2de-12fa-45d3-be1d-5d875311bf1e" - } - }, - "private": true - }, - "yellow-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(75, 47, 0)", - "uuid": "b5808c39-38db-4378-96db-1f6d44ce5172" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(249, 206, 0)", - "uuid": "b2a1039c-cbfe-44bf-a0fe-822c5f576f52" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "21c27c6d-f054-48b4-abb8-5b0907e238e2" - } - }, - "private": true - }, - "yellow-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(56, 35, 0)", - "uuid": "65ad1c10-fb0d-4dd2-a9f5-66ab34dcc86b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 230, 86)", - "uuid": "dfd355e7-82fd-4fdb-96bd-b584d7268ee9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "e0d95ec7-193d-40d1-9bd9-e68ff27c0275" - } - }, - "private": true - }, - "yellow-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 246, 195)", - "uuid": "166ee2cc-b727-4f3c-9c08-5c586a0f6c11" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(40, 25, 0)", - "uuid": "d8eebb60-7b0c-496e-ae04-1f1fc61f3013" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "8be0ad1a-0cdf-409d-953f-0a203282e1d9" - } - }, - "private": true - }, - "yellow-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "3df0b31f-656a-4400-99c4-d559da586714" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 11, 0)", - "uuid": "ada313e4-768c-4fd0-b93c-b6f6d2a50f68" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "15f47c52-fa9c-4982-ad9c-684024a9a667" - } - }, - "private": true - }, - "chartreuse-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 251, 222)", - "uuid": "b7cca467-abe9-4632-b01a-dda350c93480" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(23, 28, 0)", - "uuid": "bdc6a473-3109-44c6-9e2f-198d3224d75f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "cc59e104-9997-4ed2-a29e-0af0b1a04b67" - } - }, - "private": true - }, - "chartreuse-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(234, 246, 173)", - "uuid": "c1146153-61bf-4a31-8254-54a1d25a93c5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(30, 36, 0)", - "uuid": "b18f4550-5bbe-496c-b4a5-13df8fd0c7d7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "838a5de8-2ec7-4814-8ba9-eaa4b0ad8e55" - } - }, - "private": true - }, - "chartreuse-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(208, 236, 70)", - "uuid": "f8812b11-742b-44d6-a21a-7fd3db39fe71" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 47, 0)", - "uuid": "b98dec90-df71-4593-946d-91df7918caac" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "bbb32db5-4835-4520-8bb1-ef2c8916c604" - } - }, - "private": true - }, - "chartreuse-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(182, 219, 0)", - "uuid": "32e471ce-5b0d-40f1-a77a-67feff02775e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(53, 63, 0)", - "uuid": "6a974b7d-ccd2-4778-baae-8caf419a529c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "eb857d3b-1956-4870-98cb-eaaffffaed85" - } - }, - "private": true - }, - "chartreuse-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(163, 196, 0)", - "uuid": "fe3be762-b55e-43cb-9163-68ee7dafc53e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(68, 82, 0)", - "uuid": "46d8fd3b-0e51-4cdd-a33c-de184b82dcc5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "7bffe928-4940-41b1-a9d4-3cbee27cb472" - } - }, - "private": true - }, - "chartreuse-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 172, 0)", - "uuid": "d61e865b-6538-42a8-aba8-0842359b80c2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(83, 100, 0)", - "uuid": "965174d2-e743-41df-a8e2-570b2ae2f447" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "788108ff-5238-4a75-8936-092df93a3fd0" - } - }, - "private": true - }, - "chartreuse-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 153, 0)", - "uuid": "3d0fd171-80f3-4f08-9ac0-eb46d0e755f9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(97, 116, 0)", - "uuid": "a615bb51-0249-4201-b1c9-1c6269b82ec2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "0386fb0b-3653-4015-a3a1-cbf047435f0f" - } - }, - "private": true - }, - "chartreuse-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 137, 0)", - "uuid": "9a0701e4-81a0-420b-b751-c6a46670fbf3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(106, 127, 0)", - "uuid": "343f1685-2314-4a64-bc7a-5b7b3fd9fdcf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "c8046b7e-506c-47b7-8105-4d7e805f6b92" - } - }, - "private": true - }, - "chartreuse-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(102, 122, 0)", - "uuid": "7d22a144-0f7c-435e-ad05-b2d7672dff08" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 147, 0)", - "uuid": "1637c50e-88e4-4273-8a75-6e8a233a690c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "5f1f16c2-d562-4dd8-9b96-9d19b9a88093" - } - }, - "private": true - }, - "chartreuse-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(86, 103, 0)", - "uuid": "00100510-9965-4086-ba82-0cb62ffebba1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(136, 164, 0)", - "uuid": "7dbedc59-e21c-4953-a7af-5e91d170604a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "9a6983b0-a2ba-4633-a618-f3b4ac8f05c6" - } - }, - "private": true - }, - "chartreuse-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(73, 87, 0)", - "uuid": "e964b654-261d-44a5-ab0a-78c8137a7783" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(151, 181, 0)", - "uuid": "90417b40-97dd-47b3-9dbc-4ac45f8e4a5f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "8e44257e-ec8e-4459-863e-0bbbab65f6e0" - } - }, - "private": true - }, - "chartreuse-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(60, 71, 0)", - "uuid": "6bf184f6-f0e1-41af-94a4-47aa1a37b0aa" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 203, 0)", - "uuid": "e4b04d5d-e99d-41c5-8b24-540d653ef3ff" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "9af36936-6d05-4ba4-8beb-9b65bafb9277" - } - }, - "private": true - }, - "chartreuse-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(47, 57, 0)", - "uuid": "e320e57d-2794-4c1e-97ef-3a8b04be1328" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(187, 225, 0)", - "uuid": "615841b9-08b2-4e21-981a-b8f5247e9e89" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "acb36528-7ad1-497c-baf7-c53171ce4112" - } - }, - "private": true - }, - "chartreuse-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 43, 0)", - "uuid": "56b4f40c-d9f2-4360-99eb-7097aafedf94" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(219, 240, 117)", - "uuid": "a75188c9-02e3-4337-8056-9a6f8f39001f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "485b7081-a921-42ee-b781-8a99bfeb84fa" - } - }, - "private": true - }, - "chartreuse-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 249, 206)", - "uuid": "d7f569e2-f91c-439e-8e5a-8c8c825367ff" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 30, 0)", - "uuid": "63f13dcb-6d61-4ff0-9999-33e16d30e5d6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "75e5c281-4c83-4ffe-a1de-aedfa65be894" - } - }, - "private": true - }, - "chartreuse-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "753f7aa2-6c7d-4b43-baf9-c72adbd9279d" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 14, 0)", - "uuid": "01b68e1d-06d7-44a3-91e6-08e17353008c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "a8d9965e-14d9-4015-9a6f-421400c6d011" - } - }, - "private": true - }, - "celery-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 255, 220)", - "uuid": "b4a22d71-d90a-4f6e-8f6d-e4967849376f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 31, 0)", - "uuid": "43feed9a-9a2a-44e0-9506-9bc5eb8eab1d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "a52ac86a-8627-483b-b747-6e8aa5fa7249" - } - }, - "private": true - }, - "celery-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(197, 255, 156)", - "uuid": "30941af9-354a-4d61-9462-aca4bcd50093" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(15, 38, 0)", - "uuid": "741a30fb-62a9-4c76-a78e-cc2590af9c7d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "a83229ca-de1f-4fdb-a72b-b8a3498a31bb" - } - }, - "private": true - }, - "celery-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(157, 247, 92)", - "uuid": "3562f589-ba34-465e-9549-2600e2527ab8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(21, 51, 1)", - "uuid": "5eda4487-8f82-48ed-8b22-aa38601bbf88" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "5b271002-0fe2-4407-be21-7c09646a2303" - } - }, - "private": true - }, - "celery-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(129, 228, 58)", - "uuid": "d86c4477-a2f4-449a-8883-daaf33608fde" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(31, 67, 4)", - "uuid": "646d80c1-7073-4e13-bbfe-4bd0c2226079" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "813b3e86-659b-48ee-b88d-122c13fa96e8" - } - }, - "private": true - }, - "celery-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(110, 206, 42)", - "uuid": "9c5fc2d5-30cc-4389-b219-2db69f8a86f9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(41, 86, 8)", - "uuid": "7d4c282b-78ce-4b2c-ab39-26bf02366e4d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "13e77335-22c0-470a-a5e5-da6363f622e0" - } - }, - "private": true - }, - "celery-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 180, 31)", - "uuid": "c2cfbc22-b556-4cb5-b5ee-670254d5ecbc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(50, 105, 11)", - "uuid": "260d8921-3810-4a5d-a20f-cd00170cf951" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "a52a4fbf-dc30-4c09-b1d8-b25bcead712c" - } - }, - "private": true - }, - "celery-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(82, 161, 25)", - "uuid": "59b03f98-f898-4888-ad71-07a434e2fc7e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(60, 122, 15)", - "uuid": "7e7e6abb-a2e9-4308-ac8e-e6866ec17c64" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "3e9a8018-a0bf-4562-867d-555c75c08d9f" - } - }, - "private": true - }, - "celery-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(72, 144, 20)", - "uuid": "41747345-10ab-476a-9d3d-e657f9383e8e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(66, 134, 18)", - "uuid": "3b130e0d-eb9b-49e6-84db-eda6ee95eee5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "7a5096e0-6845-4ae5-bab4-d958c7e3dadb" - } - }, - "private": true - }, - "celery-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 129, 17)", - "uuid": "deec9c21-caeb-4ec4-bca4-a7661a2c5f91" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(78, 154, 23)", - "uuid": "706f3a95-ab27-497f-aab7-f4ed806eef30" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "10c7c9b0-0d15-43ae-bf6f-84384783a9aa" - } - }, - "private": true - }, - "celery-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 109, 12)", - "uuid": "3d509755-d653-4a3f-a5a3-fcbed0c2e21c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(88, 172, 28)", - "uuid": "021a55b8-26ae-4767-82fb-06b20c58762b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "085d2bcb-85b1-4b55-842b-9559c457a1a0" - } - }, - "private": true - }, - "celery-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 92, 9)", - "uuid": "ea7327bb-48a8-41dd-b139-c7bda3dedaee" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(100, 190, 35)", - "uuid": "e091babe-6e02-4393-a67e-63222ab860b4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "5c9ac732-7e1a-448c-b338-18d3b265d5d1" - } - }, - "private": true - }, - "celery-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 75, 6)", - "uuid": "fc4dedc3-0009-4a5a-8e93-f52ba4155e0a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(116, 213, 46)", - "uuid": "9913e84a-4070-476f-a570-a16781a924cf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "865fc403-cab2-4e38-a181-e5e10523e04d" - } - }, - "private": true - }, - "celery-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(27, 60, 3)", - "uuid": "7a3d9646-272f-4ca1-a4e6-0708eb2cd378" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(136, 234, 65)", - "uuid": "d2d8dc91-da75-4c56-a0d8-e6e9802434ad" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "cc88021a-ce1a-4f69-9208-d1b897a1d71b" - } - }, - "private": true - }, - "celery-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(19, 46, 0)", - "uuid": "02e66104-cbf7-4e27-89cf-f18b1ef04f2d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(170, 251, 112)", - "uuid": "c5c3c68c-8293-4ebb-a8d1-9f4af902906e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "0fd51556-72b0-48ea-86f2-435bf64de316" - } - }, - "private": true - }, - "celery-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(222, 255, 198)", - "uuid": "ad9c1278-7296-4aef-9e19-6cabc2997bfa" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 33, 0)", - "uuid": "ca5c139e-1784-4139-89a3-281a83dbeb99" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "fe522078-7e21-447e-bd4f-e5f2ea6845d9" - } - }, - "private": true - }, - "celery-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "f1a7d5b6-4414-493a-a5d8-77d81a0121a2" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(4, 15, 0)", - "uuid": "56e0d793-ce33-4da3-8e67-d7df10b2cd89" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "99fb92f6-7186-4432-99ec-d5fa5b35c5be" - } - }, - "private": true - }, - "green-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 252, 241)", - "uuid": "4428dba5-df85-4125-ba54-1c022b986847" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 30, 23)", - "uuid": "e5a14d4a-47c5-4a53-84c5-589a0749d906" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "f0702380-ed81-4f16-844c-b4c3b797161c" - } - }, - "private": true - }, - "green-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(215, 247, 225)", - "uuid": "9d32cd19-8375-4da3-9324-0e8334c2e714" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 38, 29)", - "uuid": "e8f294f5-cb17-4fdc-b370-ca2e3f95d342" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "b5d964d5-e68d-44c6-880f-2e23d2bae7ec" - } - }, - "private": true - }, - "green-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 238, 197)", - "uuid": "88bac762-84e1-4652-8152-384f3b1faf59" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 51, 38)", - "uuid": "cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "1aaecce9-f58c-44a5-9bb9-f62172ebcd21" - } - }, - "private": true - }, - "green-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 227, 162)", - "uuid": "5cb02868-9f86-4e20-85e0-e4f5df24853c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 68, 48)", - "uuid": "c5e88879-9773-446c-883e-96531bcb8fad" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "8143aced-4012-4dc3-a132-2b5701e09a52" - } - }, - "private": true - }, - "green-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(43, 209, 125)", - "uuid": "8b315766-4fa0-4acc-a679-89da4162a15c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(2, 87, 58)", - "uuid": "27649ccc-69a8-48d6-9d52-6d6e2e28ae17" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "9418d6a8-69a1-49a4-ac3d-d81c81a633be" - } - }, - "private": true - }, - "green-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 184, 103)", - "uuid": "4c6c7b90-29ac-4186-a991-c298f19aa83d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 106, 67)", - "uuid": "a0513e49-8483-40f8-8b8f-41fdc222f13d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "57d2a064-3028-4225-82c4-e200e4abc6a3" - } - }, - "private": true - }, - "green-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 164, 93)", - "uuid": "19a07ad0-9e01-4adc-861d-f7634de1f1ab" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(4, 124, 75)", - "uuid": "9c24175e-34a5-46c8-b646-f70c08292776" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "fa823d25-6075-455b-a6f4-18de77a01f06" - } - }, - "private": true - }, - "green-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 147, 85)", - "uuid": "1be225f8-3612-422c-923f-b35f1ec4fc00" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(6, 136, 80)", - "uuid": "412da16e-4db2-47d8-84d4-583ae35534f9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "12755af6-ac1f-441a-80fb-07c3d61dc6c9" - } - }, - "private": true - }, - "green-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(5, 131, 78)", - "uuid": "cd39a520-2020-41d0-96d1-3b0fdb453fef" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(9, 157, 89)", - "uuid": "5afee2ee-a5d5-4dcf-a917-11dfdd0c3691" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "81174c05-0b05-4030-a8b7-e2fc13533954" - } - }, - "private": true - }, - "green-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 110, 69)", - "uuid": "b0846caa-d394-4614-aaa2-af179de285f4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(14, 175, 98)", - "uuid": "3d6732a1-a1f9-4e18-927b-93cebaae3895" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "a1c41ddd-5c54-4dce-bea3-51768998639c" - } - }, - "private": true - }, - "green-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(2, 93, 60)", - "uuid": "8d0742b8-c334-41e0-a8e1-50fc8ea3b3ef" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(24, 193, 110)", - "uuid": "a2f8f6c6-07b4-43a4-8f59-995ea2bf4e82" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "7f426d3d-5ff9-4ee2-b0e1-07282fe389df" - } - }, - "private": true - }, - "green-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(1, 76, 52)", - "uuid": "4ea6f2d0-bc92-44fa-90e9-9618806a19c2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(57, 215, 134)", - "uuid": "07fa1b72-bf84-4fd5-9565-28373fae6a1f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "515298b6-f629-4c08-9e0f-18a5ba8fe20f" - } - }, - "private": true - }, - "green-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 61, 44)", - "uuid": "569d58d2-c7e4-4a0c-b92a-841e45fcbc09" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(126, 231, 172)", - "uuid": "c5ec27ed-3a16-44fe-bb8d-a21edd2f4d73" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "ce02582f-b327-4367-9f66-92dcc67fd072" - } - }, - "private": true - }, - "green-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 46, 34)", - "uuid": "c0711ebf-a91a-4041-8e1a-259ed6c3c54c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(189, 241, 208)", - "uuid": "df5458e5-891b-4a88-a96c-748a812978a7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "51b8502d-e045-4b40-93e1-e2b49f6bf90c" - } - }, - "private": true - }, - "green-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 250, 236)", - "uuid": "8efbb45d-4d6d-423e-8a3d-cb7117f9fbf8" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 33, 25)", - "uuid": "f853b643-e7bf-4af6-81f4-bc6de9007f3c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "490cf084-b56e-4464-8e38-1bb15458213e" - } - }, - "private": true - }, - "green-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "ce6f19ce-d3fe-4bad-a4fc-7863ea9fd186" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 15, 12)", - "uuid": "2b4c3a1a-8ea4-4149-862d-801b559e4f65" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "96e3e83b-1878-460e-9bc2-aa25a36ff887" - } - }, - "private": true - }, - "seafoam-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 251, 246)", - "uuid": "2330ab05-6153-47a1-ab56-18f3cb1c579f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 30, 27)", - "uuid": "080b56a3-6f95-422a-9f4b-d850966c4984" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "3c862893-b1e9-45df-99da-33906686d3c1" - } - }, - "private": true - }, - "seafoam-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(211, 246, 234)", - "uuid": "870298fd-4e1f-4649-bfbc-5ad5b768c2e3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 39, 35)", - "uuid": "2876bdd7-af97-4cd6-89cc-bdb9c2110946" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "4115d94a-b52e-4cc8-8067-cd9184030ffe" - } - }, - "private": true - }, - "seafoam-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 237, 216)", - "uuid": "1fe5483a-95bd-4597-802a-9e84c1486dbe" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 50, 44)", - "uuid": "d90b7496-0f54-41ce-96eb-c973457661ae" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "56c4f393-086d-41d9-87d0-babaea86a2a4" - } - }, - "private": true - }, - "seafoam-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 225, 194)", - "uuid": "e2b4d354-9a1d-4153-b988-4fc24c117252" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 67, 59)", - "uuid": "ec603c2c-b2b2-4769-a889-ba7c91a458eb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "21467045-093e-461e-86ac-dc65b657bf50" - } - }, - "private": true - }, - "seafoam-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(16, 207, 169)", - "uuid": "a1da1af7-df37-455d-8d27-2920b36f209f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(2, 86, 75)", - "uuid": "c24b866c-5ac0-49de-857b-48c655fa9990" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "50117040-ca43-4b90-832d-7e4c2d83c31c" - } - }, - "private": true - }, - "seafoam-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(13, 181, 149)", - "uuid": "cfd8a8b3-d567-4eb4-9b6f-5db352607dab" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(4, 105, 89)", - "uuid": "73b58f7e-008b-44ae-8969-19d981d444d6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "0a450ad0-dd5e-414c-9b76-dac4ca20a1b8" - } - }, - "private": true - }, - "seafoam-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 162, 134)", - "uuid": "a036b309-95ec-45e6-b035-f30f0f922422" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(6, 122, 103)", - "uuid": "0b8528e6-ceea-47a5-9727-24e97d7bc138" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "c26d7e9d-fef9-4aa9-991b-bbac307e3c7a" - } - }, - "private": true - }, - "seafoam-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(9, 144, 120)", - "uuid": "ac4f12a3-a3f0-4053-87f4-5fc42b08cf23" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 134, 112)", - "uuid": "df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "7a88f0bf-59cb-4af3-9542-f7648fecd50e" - } - }, - "private": true - }, - "seafoam-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 129, 109)", - "uuid": "74cb44f8-8ab0-4a36-9920-0735756e0ddc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(10, 154, 128)", - "uuid": "dca23a18-2b19-48bf-9894-2f0948f6c05e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "8e444b02-f977-4948-b862-63275642ad58" - } - }, - "private": true - }, - "seafoam-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(5, 108, 92)", - "uuid": "84e4e598-4fd7-445a-a6cf-2884c0aae4d0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 173, 142)", - "uuid": "c416b5c5-0506-419f-88ca-f722f12a9d86" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "72873817-3cf5-4a14-aa93-1f86b4c6f7f2" - } - }, - "private": true - }, - "seafoam-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 92, 80)", - "uuid": "d1bb038a-f83b-4e97-b95f-b215c7bc2916" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(14, 190, 156)", - "uuid": "4a853bfc-f1b0-4e39-8cd8-da0350c99cd5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "fb3f4cf4-e032-4cc1-94b1-d122f0d695ac" - } - }, - "private": true - }, - "seafoam-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(1, 75, 67)", - "uuid": "0eab9416-b6f5-4d26-bde6-9b8a840f7681" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 214, 176)", - "uuid": "8e4c65b7-d819-4ffd-9398-71e9d294ba63" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "8a7fb1d7-90ca-41d1-a04c-84bd1d70d9ec" - } - }, - "private": true - }, - "seafoam-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 60, 54)", - "uuid": "a88e0c6e-dfd5-4a43-8d43-97fa10101165" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 229, 203)", - "uuid": "ef35ace8-870d-42e0-8ce6-2df61415431f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "3e88a833-9ef2-4f37-86a1-041e76850e1e" - } - }, - "private": true - }, - "seafoam-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 46, 40)", - "uuid": "52c9177c-bc81-41b1-ba6d-9b075fbe8541" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 241, 222)", - "uuid": "9499384b-336c-4a41-af05-645a92ae40d4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "badc0d78-4232-44f0-8911-e9e2f0eab94f" - } - }, - "private": true - }, - "seafoam-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 249, 243)", - "uuid": "6e538a2b-05f7-41f5-af4b-89bc3039c25a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 33, 29)", - "uuid": "4cbacecc-89c9-482d-b3f5-7d8f85f0a3f1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "fd0d5cda-892b-4628-a125-353dcd123987" - } - }, - "private": true - }, - "seafoam-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "29aae26e-f4a4-4e5a-acd2-02df01f6cc90" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 15, 14)", - "uuid": "ebbfe9f4-5c24-46b2-983a-98570ed5ec78" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "6685e580-982d-4f86-800a-19797f1675af" - } - }, - "private": true - }, - "cyan-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(238, 250, 254)", - "uuid": "72bef490-0c3a-4627-9341-fc6627cf3f74" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 29, 39)", - "uuid": "24a8bb5a-93c3-4dd1-9ea2-d48c11479fe7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "28fe7c7b-b43c-4650-9155-5b0f5ec27a09" - } - }, - "private": true - }, - "cyan-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(217, 244, 253)", - "uuid": "c2aaf729-7f39-499a-8b67-e23801073b05" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 36, 49)", - "uuid": "3445cf4b-2460-4692-acf2-71844d687da4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "b6b314ea-f9ba-4f49-a115-f4177ecb7bbc" - } - }, - "private": true - }, - "cyan-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 231, 252)", - "uuid": "b54275ad-3ea6-4e69-aea2-97f488308fcc" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 48, 65)", - "uuid": "e4bcf4fc-aaec-49a5-a2bb-6bb55e7fff47" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "f7d51b4b-6c95-4271-a51e-4ad5a1660591" - } - }, - "private": true - }, - "cyan-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(138, 213, 255)", - "uuid": "a33de292-77a9-40b7-961e-41ebfe331ad0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 64, 88)", - "uuid": "94a5bd53-d69a-4063-b630-1976230d4f2d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "6c2a20c7-e453-4401-a0b4-8e0d1d7edd7e" - } - }, - "private": true - }, - "cyan-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 192, 255)", - "uuid": "f3e8ff9f-e60b-4bce-9c39-280aef6fcb08" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 82, 113)", - "uuid": "909baeef-fd2f-4550-89ea-fb7ac9ea2db5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "39f96e8f-c9c8-4158-8da9-6825cd084fc3" - } - }, - "private": true - }, - "cyan-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(48, 167, 254)", - "uuid": "d65f3e1d-ad9d-4fa7-ac06-37235124e999" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 99, 140)", - "uuid": "d753ef33-bfc0-424b-a2ac-ea87ecbee590" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "6f67dfce-62d0-4147-aac6-33873a325cd3" - } - }, - "private": true - }, - "cyan-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 149, 231)", - "uuid": "08b4548a-618d-4ab5-ae46-2a60c7936f57" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 115, 168)", - "uuid": "3cb348d4-14a9-43da-84c4-068cf46c8c6f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "08173787-f50d-48a7-badc-141a9e7b7981" - } - }, - "private": true - }, - "cyan-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 134, 205)", - "uuid": "6dbdd00d-3b03-4eab-a77c-3a1f16d5e6ef" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(13, 125, 186)", - "uuid": "ee8673ca-c39c-437e-b3a5-416f4e8664d3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "a006424a-ad2b-4091-a38d-b4af80ddc03e" - } - }, - "private": true - }, - "cyan-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 120, 179)", - "uuid": "71769f93-467d-497a-b214-45c8753f34f5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(24, 142, 220)", - "uuid": "9c183829-4858-4908-b1ac-d89f40f2e903" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "03de1fef-9ae1-457d-917b-6f22fb545d00" - } - }, - "private": true - }, - "cyan-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(4, 102, 145)", - "uuid": "25c689a1-7876-44fa-8849-3a8db03a866c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(38, 159, 244)", - "uuid": "04f3d463-9118-43d5-973d-8bf94417912d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "8dd5e110-aa2f-47b2-aa21-30bc4241db86" - } - }, - "private": true - }, - "cyan-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 87, 121)", - "uuid": "57ca59a9-1677-4813-9c0d-28267233ba35" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(63, 177, 255)", - "uuid": "62a7ebff-a49b-4e7a-981f-692a506b4146" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "4698ba84-dab0-4b6b-a2b1-e289261aa7b4" - } - }, - "private": true - }, - "cyan-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 71, 98)", - "uuid": "d6ba8ac5-09d4-44e2-8ade-216c626eb154" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 199, 255)", - "uuid": "36a2af99-eef4-476b-a3b8-58eade0931b7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "8e12e7fe-546a-4e8c-92eb-56673446b1bb" - } - }, - "private": true - }, - "cyan-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 57, 78)", - "uuid": "1b179218-9e53-457d-977b-902509ef28aa" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 219, 255)", - "uuid": "5f3df12b-1330-4482-ad34-c623bd36253c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "958d5c96-6b57-47c2-a9a5-f589c054aa13" - } - }, - "private": true - }, - "cyan-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 43, 59)", - "uuid": "3eac8807-136f-4687-8403-203fb49fbd74" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(195, 236, 252)", - "uuid": "fe63b8a3-ebb9-45fe-99c2-e246b53e06a6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "8a2d9c8d-a95a-48ac-b6eb-0ca1d5e69bd7" - } - }, - "private": true - }, - "cyan-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(230, 248, 253)", - "uuid": "ce687c28-38ce-4fbe-8181-060e566b4196" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 31, 43)", - "uuid": "4d029c4c-4658-4207-b43c-d69b138b25a3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "6aa5f844-ba8d-40a3-86ec-109e9430ace5" - } - }, - "private": true - }, - "cyan-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "291e6a5c-41b3-4bf1-ad10-38d427e80e48" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 14, 20)", - "uuid": "e6cd6257-d8de-428e-8ebf-c1c812031e5e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "9bf84aeb-6822-40c9-b027-8db8a49fd54b" - } - }, - "private": true - }, - "indigo-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 248, 255)", - "uuid": "04cf76e0-1e7c-479a-9411-0dcad2f6ab25" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(30, 0, 93)", - "uuid": "e60cb247-c265-4009-9f0a-bcbbbb801dd4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "37af1036-6ba7-4eac-b1a5-9442ff55036f" - } - }, - "private": true - }, - "indigo-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 238, 255)", - "uuid": "ab568cfd-20e5-4e20-a3bf-32292297df8f" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 0, 110)", - "uuid": "56c709dd-b41e-478a-8098-21014e3f9ec8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "401d532f-8374-4e5a-99c5-51c4ec9bc344" - } - }, - "private": true - }, - "indigo-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 222, 255)", - "uuid": "a220a225-3bb9-446c-8ee3-732a96a150d2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(47, 0, 140)", - "uuid": "716f244e-67c5-4566-b824-ed7f2192b585" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "fb607a6f-2d62-4163-a6a3-068b80a084da" - } - }, - "private": true - }, - "indigo-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 201, 255)", - "uuid": "891799a7-b51d-4769-abe3-62dd0da6e190" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(62, 12, 174)", - "uuid": "c256e06e-07bc-4dcd-9239-48841916c93b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "5cd6358b-bdc0-488e-a5fe-089a769b6bfb" - } - }, - "private": true - }, - "indigo-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(167, 178, 255)", - "uuid": "2751b8ae-f347-4a57-938d-98a5ee86071c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(79, 30, 209)", - "uuid": "1ea0564b-6e88-456e-a796-4620d57b8771" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "a9e657da-8f33-425a-b2ab-dca9d1337bf3" - } - }, - "private": true - }, - "indigo-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(145, 151, 254)", - "uuid": "2d69bbe7-37c1-4302-9fee-39733bb13a86" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(95, 52, 235)", - "uuid": "df590853-ce16-4ddf-bbe9-a912695eae17" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "233a1b84-3ab6-4899-9b41-d9177356c175" - } - }, - "private": true - }, - "indigo-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(132, 128, 254)", - "uuid": "3c57f9f6-e837-450b-9443-a702caa049a4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(109, 75, 248)", - "uuid": "0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "feeeaa05-5c75-4a06-b5be-ed8bf3ecd773" - } - }, - "private": true - }, - "indigo-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 106, 253)", - "uuid": "f5a317ea-25f2-4193-9305-f20c231e786e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(116, 91, 252)", - "uuid": "97e84a30-1de4-4e84-8d59-e625f9ec9ab1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "63e9a41c-ee85-43c1-b550-3ca8ce7c0986" - } - }, - "private": true - }, - "indigo-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 85, 250)", - "uuid": "87b65e85-d767-47bb-8af5-01b85282c663" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 119, 254)", - "uuid": "5cb7ff5e-ec53-4df8-b59d-a1419190a6cf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "39f6823f-ca35-413c-ad64-31529710cf3c" - } - }, - "private": true - }, - "indigo-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(99, 56, 238)", - "uuid": "9d1a9aa9-a7b3-4254-9e55-a992784bb7b5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(139, 141, 254)", - "uuid": "0bf6170c-50d7-4600-96fe-2d1af93f173a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "ef5ddbb5-3e37-4806-b863-9369294dc07a" - } - }, - "private": true - }, - "indigo-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(84, 36, 219)", - "uuid": "2f59721c-2922-4ad3-b50a-37327d592050" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(153, 161, 255)", - "uuid": "c85ea1d9-e28d-46c5-abd0-c053858770e0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "f4c7c283-b412-4acc-b2f5-0339f946ff3d" - } - }, - "private": true - }, - "indigo-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(69, 19, 191)", - "uuid": "4aaedaea-2d42-4593-84e4-18a12ce5efc2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(176, 186, 255)", - "uuid": "91f9622a-03b4-47b0-b380-5f6d64c13b5d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "91d7c77f-6cb0-4f1d-92ea-03965a296cc6" - } - }, - "private": true - }, - "indigo-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(55, 6, 160)", - "uuid": "f8300596-def6-4640-8d9a-c08fea25bfda" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(199, 208, 255)", - "uuid": "c0bfd081-7859-4ed5-aa4c-c1f547dab8f3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "a274d960-197e-4045-99d3-9919cfa90e6e" - } - }, - "private": true - }, - "indigo-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 0, 129)", - "uuid": "4e8c10e6-0c7e-4f48-91a0-ff460915725d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(223, 228, 255)", - "uuid": "080f9ea4-1d87-4691-adb7-3875a7708555" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "46fa9ff8-5758-41c3-b0aa-fefd075eb739" - } - }, - "private": true - }, - "indigo-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(243, 244, 255)", - "uuid": "498d2f9c-7304-406d-a3f8-802a2cbd3502" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(31, 0, 98)", - "uuid": "2653368d-d90b-4a5a-97f3-8380fe2e7551" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "72c07c8d-19f8-44de-8e73-98997502cf86" - } - }, - "private": true - }, - "indigo-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "c498c300-86e8-4c71-bd3e-5a344324b9c1" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(17, 0, 54)", - "uuid": "6a0ad8e2-b574-4148-b151-e0607c4d5317" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "2f76990f-4bfd-4b4d-b063-aa374ea9df83" - } - }, - "private": true - }, - "purple-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(251, 247, 254)", - "uuid": "e80b112b-a26d-4392-a431-844b33d8bac8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(41, 0, 79)", - "uuid": "ffc5aa7a-c339-4583-a586-3e8b1329d16d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "8898f93b-9e3f-4143-bb78-fd0afd4c4ee0" - } - }, - "private": true - }, - "purple-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(244, 235, 252)", - "uuid": "65816c3d-544e-4bbd-bf0e-c0981e08a5cb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(50, 0, 96)", - "uuid": "2d67627b-372c-46af-b015-6c95bd027664" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "0980d65e-bf37-40c7-a59c-5a0c80795211" - } - }, - "private": true - }, - "purple-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 218, 249)", - "uuid": "bea266d7-8f53-43b7-b7df-0daa5b7e6f89" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 0, 122)", - "uuid": "be628028-f41d-4ace-abf3-f7f38ecb2e01" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "2f450b24-782a-428f-80ff-9d762e22e44c" - } - }, - "private": true - }, - "purple-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(221, 193, 246)", - "uuid": "b68c2d3d-02e6-4130-9904-d2d32e67d115" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(83, 0, 159)", - "uuid": "474fed30-921a-4795-8999-2310521c64c5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "7faf15d0-6890-4cde-919e-1b720d5bfc0a" - } - }, - "private": true - }, - "purple-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(208, 167, 243)", - "uuid": "9625edd4-fcdd-406a-9a66-068dcfeb3bd9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(107, 6, 195)", - "uuid": "b912e8ba-ed77-4179-9b80-7448f9e37193" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "2473ee91-ecb3-414d-ac05-8b040aee3283" - } - }, - "private": true - }, - "purple-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(191, 138, 238)", - "uuid": "bfd24d4f-9100-4937-a45d-7614ce0ece74" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(130, 34, 215)", - "uuid": "05638159-aaf7-4f3e-849e-a46e80cd9ee6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "78f628a8-2d9f-4532-8502-bf389ec8ae7d" - } - }, - "private": true - }, - "purple-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(178, 114, 235)", - "uuid": "2f218111-4cef-432b-8d69-06492e7c40c1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(148, 62, 224)", - "uuid": "fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "8cdcca2d-71d7-4a08-b7a0-072e954980fe" - } - }, - "private": true - }, - "purple-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(166, 92, 231)", - "uuid": "a6205c53-9e63-475c-85f4-bdd5963e1eb2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(157, 78, 228)", - "uuid": "30aae683-83e3-47a1-bdcb-ebe658e110a3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "32ee4548-9a32-476b-a245-f0af6c701fdb" - } - }, - "private": true - }, - "purple-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 71, 226)", - "uuid": "b72cb9ff-2b75-487c-914f-1c10bff76f75" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 105, 233)", - "uuid": "12d86845-fd54-4d30-aac8-bb9451560ba5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "1f898f83-cd72-4bf1-bd66-ee1486a0f70d" - } - }, - "private": true - }, - "purple-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(134, 40, 217)", - "uuid": "163a3d87-cba9-48de-8384-c2820cf03984" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 127, 237)", - "uuid": "e527a3bd-3543-4b40-8a9c-eb465695bdb9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "2287f92f-6851-4f5f-b48c-3a43067a7a08" - } - }, - "private": true - }, - "purple-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(115, 13, 204)", - "uuid": "991db22a-d0c2-4f1a-a45b-95aaf13d747d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(197, 149, 240)", - "uuid": "18265c0a-e466-4575-a364-3dfda9e71bd4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "ed68aade-7d0a-4029-bf17-9a3b88f08ceb" - } - }, - "private": true - }, - "purple-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 0, 177)", - "uuid": "b71041e1-ca59-4d0c-87e4-2a8e8821b3ab" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(212, 176, 244)", - "uuid": "ae071768-dcdd-4e30-8f72-d066abac97af" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "aa502b60-e84f-4a35-910f-de28016d44fc" - } - }, - "private": true - }, - "purple-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(75, 0, 144)", - "uuid": "7a524851-d57b-40f7-930a-f67739c0e138" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(225, 201, 247)", - "uuid": "fbaaff02-da93-4f45-830a-5fc449a58f0b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "eeb7a71b-1a59-4629-a1fd-4fe9bae6d3db" - } - }, - "private": true - }, - "purple-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 0, 111)", - "uuid": "e1609d80-a6ba-46b6-bd52-83f32fd009ad" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(238, 224, 250)", - "uuid": "9ae063c9-5817-45b4-9f57-4b2196c845b9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "10c0a8e7-8496-4421-bfa0-cc41af6271d7" - } - }, - "private": true - }, - "purple-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(248, 243, 253)", - "uuid": "d96c8fa3-5872-4bd2-81a3-0109ddf0bf18" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 0, 84)", - "uuid": "f43e7a56-8663-41a9-b688-5b6471e3fcff" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "05c1a879-e716-4f67-97ab-7f524b713815" - } - }, - "private": true - }, - "purple-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "0f10b720-c0f8-46db-9205-fdde265d05f7" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(23, 0, 45)", - "uuid": "8adc4493-0971-4b9c-bff7-c5ce8100fc43" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "1d742643-035d-4966-aba9-2be2bbfb793e" - } - }, - "private": true - }, - "fuchsia-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(254, 246, 255)", - "uuid": "2a8743fc-d3b3-444a-b3f1-8ad816945941" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(50, 0, 61)", - "uuid": "3a434405-c4b0-40ef-b383-7cb9a9b60cab" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "c826bbb3-badb-48a1-becf-86f5f395eef7" - } - }, - "private": true - }, - "fuchsia-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(253, 233, 255)", - "uuid": "a304f27a-7a17-4c12-88d1-07171fa3ca75" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 0, 74)", - "uuid": "779ec441-475d-41de-b207-3e139c7c3168" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "eed8370d-a367-4333-ba69-56843a7657ba" - } - }, - "private": true - }, - "fuchsia-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(250, 211, 255)", - "uuid": "723a23a1-0bb0-4c11-89cf-0eca2a421867" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(79, 0, 95)", - "uuid": "5fa7110f-0c33-4139-8277-eff40921939e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "7b52a8c6-67b3-4d8c-b506-aa5eeababdfb" - } - }, - "private": true - }, - "fuchsia-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 181, 255)", - "uuid": "ce8ce579-0dca-462c-a9d3-49e451931812" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(102, 9, 120)", - "uuid": "a81bfdd6-4b80-4f1a-922d-2f6e04c27e01" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "670788fe-2614-4673-bda2-681622680109" - } - }, - "private": true - }, - "fuchsia-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(243, 147, 255)", - "uuid": "779bda09-25fd-4912-9aa8-8e3a5643d0cb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(127, 23, 146)", - "uuid": "7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "906889fa-ad69-4129-978c-23ea12d2b362" - } - }, - "private": true - }, - "fuchsia-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(236, 105, 255)", - "uuid": "bd2db3f8-5eae-4fcb-a1f6-307d3b8e4139" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(151, 38, 170)", - "uuid": "0fb76488-9965-4cf9-878f-ceed7fc2be43" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "0b09ae9a-7aa8-4b63-b6c4-4317b03dc3ff" - } - }, - "private": true - }, - "fuchsia-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(223, 77, 245)", - "uuid": "42525649-03ba-44f7-bc8c-9a824b898920" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(173, 51, 192)", - "uuid": "5f971453-aa30-4c1f-8cbc-be45ff042fcd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "02b7bf12-ff14-4829-aa9b-52c3033b0652" - } - }, - "private": true - }, - "fuchsia-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(200, 68, 220)", - "uuid": "3b2867ea-80f8-44ca-9394-7bb17e8c5a22" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 60, 206)", - "uuid": "5848fed6-5b42-42ef-9800-8f32e42cf6ba" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "a6344998-b1e8-4651-a4c9-b1b2aa22d48b" - } - }, - "private": true - }, - "fuchsia-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 57, 200)", - "uuid": "5fa3362b-01ee-4861-9a02-6af6da804f61" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(213, 73, 235)", - "uuid": "3c6d42c9-4cba-4373-a61c-c8617c509f92" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "2a29020c-1524-4b9b-a249-25b9927d4a54" - } - }, - "private": true - }, - "fuchsia-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(156, 40, 175)", - "uuid": "fa79840c-fe56-4f21-b9c5-f1e24f89e031" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(232, 91, 253)", - "uuid": "a13d5f15-e4cc-4f7c-928f-aaccbf0d590e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "7606b799-458c-466e-96c6-a0a7e949a83c" - } - }, - "private": true - }, - "fuchsia-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 27, 154)", - "uuid": "44aeb8b3-dd63-43a5-adb6-67cca83ca4c5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(240, 122, 255)", - "uuid": "0a4eb3af-d067-4d9f-af91-66c676e49e26" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "aa82e21e-e5a2-4bcd-a63d-a2d76c467ac7" - } - }, - "private": true - }, - "fuchsia-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 15, 131)", - "uuid": "fc66406d-0e4c-4f82-9fa6-aec444f04070" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(245, 159, 255)", - "uuid": "0d93ff9f-63e8-4caf-9e7b-714e56d968d4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "bdb3a49e-331e-44b9-96e2-4f1dccdae565" - } - }, - "private": true - }, - "fuchsia-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 4, 109)", - "uuid": "00cfb450-b2b1-47ea-aaf2-221827cca75d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(248, 191, 255)", - "uuid": "abd44b32-b837-4e11-95c7-4ba1c34db44b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "c53a7f46-12aa-48c9-afdf-20e7a26bbb09" - } - }, - "private": true - }, - "fuchsia-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(72, 0, 88)", - "uuid": "e5fc57ed-6d37-4496-a89c-db93104cb333" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(251, 219, 255)", - "uuid": "7c819391-d74c-4326-ae0d-fe3534eb44e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "ee6b1d77-41ce-4c87-9d95-098f5fc66da9" - } - }, - "private": true - }, - "fuchsia-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(253, 241, 255)", - "uuid": "ff510e34-7c7c-4795-a224-b1e1c5cc25e0" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(54, 0, 66)", - "uuid": "afdfcd22-19fd-4306-a069-c8f9cd0d4f2d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "a8afc139-5eeb-4b56-9acd-62433f802563" - } - }, - "private": true - }, - "fuchsia-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "c06ab95f-6471-4840-99cc-710851d25de4" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(29, 0, 35)", - "uuid": "38117e2a-efd1-4edd-8284-6fb0bc7482cc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "cd37d695-d1b0-4322-92f7-9bc0a347aa90" - } - }, - "private": true - }, - "magenta-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 245, 248)", - "uuid": "06219a66-5150-42ab-a9fd-c743058728af" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 0, 22)", - "uuid": "9149371a-1978-4136-a89c-8895edd35e7d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "3f70bddc-f8e3-41a1-a68e-9500ac9a2474" - } - }, - "private": true - }, - "magenta-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 232, 240)", - "uuid": "0a9c01d3-0659-4884-a0e8-7032deeee766" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 0, 27)", - "uuid": "f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "074993b8-2652-448c-a6ca-b18a39176ed9" - } - }, - "private": true - }, - "magenta-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 213, 227)", - "uuid": "bfe2436d-c026-4641-8cd7-a9824f6948dd" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 0, 34)", - "uuid": "673ab9b4-e296-4472-b0b5-15adf9f1f762" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "04b09fbb-08cb-4fe3-a287-d7de2bf39312" - } - }, - "private": true - }, - "magenta-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 185, 208)", - "uuid": "4419b5e5-344d-4905-b39d-8935bedf7d6c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(123, 0, 45)", - "uuid": "60560de2-28e6-44b4-bcff-f357fe13a4a7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "41d578d1-c853-4360-95e9-b94ad61e7786" - } - }, - "private": true - }, - "magenta-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 152, 187)", - "uuid": "d7c3e696-4ec4-497f-89c5-bad17cb4699a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 7, 60)", - "uuid": "830123a6-0e42-4c4f-9b20-2f4204d37af8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "0734c859-3e4c-4974-98e2-700c49c69bcd" - } - }, - "private": true - }, - "magenta-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 112, 159)", - "uuid": "329f4efa-6f0b-4bc1-95f7-1121bda7f421" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 19, 76)", - "uuid": "e6b14a1d-e26e-41c4-b386-7fb3f95b8c93" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "e70126f5-e8d6-47e2-9737-0dbb17655b1f" - } - }, - "private": true - }, - "magenta-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 72, 133)", - "uuid": "fcacf0f0-c919-4705-b4c2-6edbe2796fb0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(207, 31, 92)", - "uuid": "11055a6b-7e81-4b59-9feb-8b0b6352be07" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "e5ffefaa-72d6-444d-8f9f-3fb08a9f2480" - } - }, - "private": true - }, - "magenta-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(240, 45, 110)", - "uuid": "21e774f7-89d8-438d-9fc4-aa93261022d1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(224, 38, 101)", - "uuid": "6676db79-7b7e-4fcf-868b-321f9372517a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "6dca10b8-2ed2-463c-82f5-fad66a833675" - } - }, - "private": true - }, - "magenta-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(217, 35, 97)", - "uuid": "0166ed9b-52e7-447a-b45d-de29ba85eb0d" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 51, 119)", - "uuid": "fa5e523e-7ee3-46d0-971f-4ee95c7222b8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "991792f1-03ed-494b-ada7-1beb965e39c9" - } - }, - "private": true - }, - "magenta-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 22, 80)", - "uuid": "98125f18-a061-4aa7-a0c5-a746d635c4c5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 96, 149)", - "uuid": "bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "8a8e447b-6b31-4758-b59e-51acad7c9210" - } - }, - "private": true - }, - "magenta-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(163, 5, 62)", - "uuid": "29d203d7-7c2c-4f36-a5f3-d84fab6be9f1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 128, 171)", - "uuid": "548a74eb-4401-44f4-85b4-921287d84ac9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "9784741b-612e-4986-952b-a102c04e2afd" - } - }, - "private": true - }, - "magenta-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(136, 0, 51)", - "uuid": "2a9f4ecf-5678-4345-973a-da1e066eaf10" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 163, 194)", - "uuid": "9c634688-1ad5-438b-bd44-a92c64ef9934" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "3c632a35-bf86-4182-9475-84854a20f15a" - } - }, - "private": true - }, - "magenta-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(111, 0, 40)", - "uuid": "0be3f108-028b-4fdd-9a98-8bb24deec2d8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 193, 214)", - "uuid": "6c441ca7-0294-462f-ac18-7b28ff20d7ff" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "030c6431-3ea5-429b-a492-1a01dd396d44" - } - }, - "private": true - }, - "magenta-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(86, 0, 30)", - "uuid": "40d9a0f7-0085-4001-a22e-3c22d3887846" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 220, 232)", - "uuid": "15f36ded-01af-4c5d-8b11-45523e7d908e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "b6dd1b22-5f8f-46d8-924e-4ce02ad5a99f" - } - }, - "private": true - }, - "magenta-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 241, 246)", - "uuid": "d2814529-9c64-47fd-a317-8669d565cf67" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 0, 22)", - "uuid": "70dd220b-46cd-4975-ad8b-5ca31f7c33dc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "950ba124-e6b5-47b6-b1b8-31960f7cc380" - } - }, - "private": true - }, - "magenta-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "c24954cd-f17c-47b4-8a3e-8cb019a3e330" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 0, 12)", - "uuid": "fd25d1ee-438b-49a3-93d8-1d59b2a06f72" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "2fc90f48-a54e-4aae-9b9f-aa3c4d7e55de" - } - }, - "private": true - }, - "pink-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(58, 0, 37)", - "uuid": "bd616b1d-fe15-498b-b8c3-02b3ec12917c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 246, 252)", - "uuid": "89d9aa85-aef2-47fa-8939-e6774f5fa2de" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "4c01ddf8-d689-4433-826c-75b33bc2214d" - } - }, - "private": true - }, - "pink-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(71, 0, 44)", - "uuid": "b27db3ca-2a1d-40f0-aa6b-d7256262a70c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 232, 247)", - "uuid": "d80ed3c8-4db1-48e7-bd16-1d34580a3108" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "d4e972fb-fbd5-4b37-bd20-9487ed47d243" - } - }, - "private": true - }, - "pink-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(90, 0, 57)", - "uuid": "b4a885e9-96d3-498f-b8a9-87c448723198" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 211, 240)", - "uuid": "3041a3b2-4275-41fb-94ff-607108d94df3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "83e9b8e8-ff2a-49fc-9ac8-349c694c1aec" - } - }, - "private": true - }, - "pink-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(115, 7, 75)", - "uuid": "3a4e3a24-0f21-44a4-ad80-f721ad6acb38" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 181, 230)", - "uuid": "c86af74f-6fe2-41a1-a934-2589f56fd041" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "ba838eaa-0dc0-4bbd-be25-300e8bd89272" - } - }, - "private": true - }, - "pink-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 18, 97)", - "uuid": "14b4ffb1-3dcb-4155-b470-1006982eec4c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 148, 219)", - "uuid": "e526f977-736d-473b-b851-475fd08f5276" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "356a4b99-8ffc-4d11-b56e-a88c5e70194d" - } - }, - "private": true - }, - "pink-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(171, 29, 119)", - "uuid": "77da83cc-1a57-486b-bb43-e74e6b5ac041" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 103, 204)", - "uuid": "d383f12e-48f4-446c-abb4-595a50fd29a2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "527b5dcd-0896-4dbc-82f9-866297227eb0" - } - }, - "private": true - }, - "pink-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(196, 39, 138)", - "uuid": "6c1ae7db-8ca1-4dbe-9d1e-2b3f5ab28a5c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 76, 184)", - "uuid": "91406d69-6d53-4231-be9e-e90d8ad0cc51" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "873c22cd-488b-45d4-a79d-0473fc4f3c7f" - } - }, - "private": true - }, - "pink-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(213, 45, 151)", - "uuid": "86b686e1-d580-4fc0-9246-8b94ad2fed96" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(228, 52, 163)", - "uuid": "af67d2bf-e92e-42f2-93d6-2f0b45fba0ac" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "b50fbb92-1897-469d-a867-d9f6e5070c2e" - } - }, - "private": true - }, - "pink-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(236, 67, 175)", - "uuid": "fb259e11-a051-4116-a7cb-f567cf814df5" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(206, 42, 146)", - "uuid": "a53ae96d-64bc-4baa-b51f-4490242047df" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "85c314fe-cdfe-4542-856f-f58acfad1aee" - } - }, - "private": true - }, - "pink-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(251, 90, 196)", - "uuid": "89cc3b46-c438-4e65-bf43-c373cb6af83f" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(176, 31, 123)", - "uuid": "8d8448ee-5b8d-4953-a2f8-ba34a3c7f796" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "deac6200-0e75-47d5-9073-3aaa390f1cd1" - } - }, - "private": true - }, - "pink-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 122, 210)", - "uuid": "ee41ab95-9c22-4523-94ce-efab466cc261" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 22, 104)", - "uuid": "889ea4ff-1362-474e-ab12-15eb08bec89b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "b9911ab3-fa6b-42e7-9247-c341b68ee151" - } - }, - "private": true - }, - "pink-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 159, 223)", - "uuid": "670f5ea8-1435-4dd6-9ee9-f1886378b18f" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 12, 85)", - "uuid": "ac7fa4bb-da89-44ef-95d0-5d15fd8df976" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "4c73d77d-95e3-4311-b644-2b55ad4552cf" - } - }, - "private": true - }, - "pink-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 191, 234)", - "uuid": "c70eb5b9-80fa-4e03-9589-88001bbed4e2" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(105, 3, 68)", - "uuid": "a10ffb76-fc1a-4f2f-ac43-dace44726820" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "efa5d789-8e54-493d-9787-8e5dce4180a0" - } - }, - "private": true - }, - "pink-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 219, 243)", - "uuid": "bb85af92-a0c8-4b12-b651-a2a084d6d1cc" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(83, 0, 53)", - "uuid": "8c14e640-5df8-4753-8a47-295c1aee63c5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "4d10b352-648d-404a-a863-3fd3308b2696" - } - }, - "private": true - }, - "pink-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 241, 250)", - "uuid": "0344a02f-ae86-4c77-bb36-480da43b3be1" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(62, 0, 39)", - "uuid": "886065e2-949f-4f4c-9aa9-0a843c3d8cf2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "13813529-7eb8-4171-a40b-a719c430299b" - } - }, - "private": true - }, - "pink-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "fd715951-5fb7-433c-8a9d-2d10707893e5" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(33, 0, 21)", - "uuid": "0612a373-58a7-4393-b789-7dcf8e388b2c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "44800628-6a86-49de-b44f-256ca36c4127" - } - }, - "private": true - }, - "turquoise-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 30, 33)", - "uuid": "7be82e76-2525-4496-9425-c180746f12df" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(238, 251, 251)", - "uuid": "8e69d558-2c95-496f-8244-56c1abecef5f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "094b2708-cb1f-4936-96ee-503cf113ab7a" - } - }, - "private": true - }, - "turquoise-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 37, 41)", - "uuid": "f70fdb17-da0b-4163-8af6-2daa65327e3a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(209, 245, 245)", - "uuid": "2dd6c94d-b55e-491e-91a9-bf9b4e3ceb54" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "e5a0aca5-4d22-4d1a-9732-6e0e2c98e72d" - } - }, - "private": true - }, - "turquoise-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 49, 54)", - "uuid": "eb6f8d2a-1a82-42ef-b668-0aac077d4053" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 236, 237)", - "uuid": "7eda1d2a-4c4a-495c-8b2f-c663be8c22f8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "c4877ffd-985b-4260-b1c3-3ac37392315a" - } - }, - "private": true - }, - "turquoise-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 66, 72)", - "uuid": "e354eda3-17c2-4f07-b64b-3620692a12f3" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(111, 221, 228)", - "uuid": "7a80623f-07eb-426a-9a64-ced6e3d09df1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "f136369b-3ac7-4041-871e-90c90f3da3a9" - } - }, - "private": true - }, - "turquoise-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 84, 92)", - "uuid": "de4d07fb-1d63-44cc-a9bf-1cd2e2ed4e59" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 202, 216)", - "uuid": "1fae7edd-0b41-4ae6-a436-c1e5ecda3e3a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "4320a8e7-3509-45c6-b133-02bf0e779a42" - } - }, - "private": true - }, - "turquoise-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(5, 103, 112)", - "uuid": "ae1d9dc7-e778-4c78-b12d-ab187cc3c254" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(15, 177, 192)", - "uuid": "be19fd97-84da-40ed-82a2-1afa75b6f405" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "1ce42e96-435f-4895-896d-268dcdf16b21" - } - }, - "private": true - }, - "turquoise-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(7, 120, 131)", - "uuid": "08f4307e-74f1-446d-9051-8a4c11546289" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 158, 171)", - "uuid": "0a313605-1db7-4801-afac-28aeb30aa005" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "9ffcdab9-e422-4ece-b292-6b8ce227bef8" - } - }, - "private": true - }, - "turquoise-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(9, 131, 142)", - "uuid": "69ae2217-ba32-41ca-a38f-8f19dcc5cf76" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(10, 141, 153)", - "uuid": "cb62cb21-ce76-4f47-a88d-14682eb6e06d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "a6548e62-22e6-4089-b098-0a8bb60676ec" - } - }, - "private": true - }, - "turquoise-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(11, 151, 164)", - "uuid": "2ce15c64-8c38-4935-bc65-7580df395231" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 126, 137)", - "uuid": "b1e2b910-c19d-4b83-9f49-f9e858ab58b9" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "2084f7e5-221c-4a4e-96e0-fa0ff2fa40f1" - } - }, - "private": true - }, - "turquoise-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(13, 168, 182)", - "uuid": "89d12308-9718-40d6-a089-73b9fcf1185b" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(5, 107, 116)", - "uuid": "f46bb42a-00fe-44ae-8421-16fbdbe1a9e3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "7c82b1ca-e445-45a0-b7b2-5ed3030e92e7" - } - }, - "private": true - }, - "turquoise-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(16, 186, 202)", - "uuid": "7f0dafc6-6863-4542-b58c-610bd97f79fa" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(3, 90, 98)", - "uuid": "7c957f48-f033-4814-a4e0-127e67169771" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "e3e88d56-d236-41f7-8eaa-3804576b6161" - } - }, - "private": true - }, - "turquoise-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(64, 208, 220)", - "uuid": "70ca07eb-a370-4059-9d5a-b55f6a9c9f31" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(1, 74, 81)", - "uuid": "d85163b6-fbaf-4c49-b61b-f0b7b9529ff7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "1ca86f12-0424-40b5-a606-912e2fcc5cc1" - } - }, - "private": true - }, - "turquoise-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 225, 231)", - "uuid": "c1f51874-6699-4250-bcd3-9d15add56a86" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 59, 65)", - "uuid": "c9ab3575-f393-45db-a92b-07eccd4696bb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "07b5d5b0-8952-4901-a0e5-227fa3e1aacf" - } - }, - "private": true - }, - "turquoise-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 240, 240)", - "uuid": "f2f63354-d6fb-4687-abf8-554c4ab95fbf" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 44, 49)", - "uuid": "6ee374d9-95c4-4e5d-8f4d-fa1912cf6514" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "81180029-eec8-4d26-9fe0-3966aa372151" - } - }, - "private": true - }, - "turquoise-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(228, 249, 249)", - "uuid": "d4b79c34-286d-40f0-87ce-bbfb6b217dba" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 32, 35)", - "uuid": "d3e919d4-3777-4dca-93f9-0e04ab00d0dd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "1162302d-4bcf-478a-a95e-660785220434" - } - }, - "private": true - }, - "turquoise-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "4ae14c01-10b1-4daf-a064-dab9f6fdea9d" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(0, 15, 17)", - "uuid": "6af4ec29-d7c5-4562-be2c-a838aa919aed" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "21be860b-80bb-40a1-9aaf-20a97b2ddc77" - } - }, - "private": true - }, - "brown-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(35, 24, 8)", - "uuid": "478633c7-4a14-4e39-a05c-bfa07aeb4a85" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 247, 242)", - "uuid": "aa01448b-bf3b-4da2-b483-127a3ed708f7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "3d64c998-df63-4695-a1d1-00d78ed2097b" - } - }, - "private": true - }, - "brown-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 31, 11)", - "uuid": "ec81816f-120e-46f9-a5b0-adb94814d1eb" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 238, 225)", - "uuid": "1b19a7b6-469e-4f5a-b30b-f3f465021d25" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "5d0e6309-481d-40f9-81b9-7d0bee9cf794" - } - }, - "private": true - }, - "brown-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(58, 40, 14)", - "uuid": "3c253e65-bd9a-4e52-ad68-83aca3b197e6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(239, 221, 195)", - "uuid": "9f0a77f8-aab8-4942-8119-332b09441939" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "e710f0e9-90a7-4ed9-8d2b-6a8c9ed778db" - } - }, - "private": true - }, - "brown-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(78, 55, 19)", - "uuid": "a9daa02d-c0aa-4c05-80ee-2bf55165dd36" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 200, 157)", - "uuid": "e33616c5-157c-42aa-a349-90d05f50beba" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "7a9223ac-0dee-4dd5-8b11-b04815683c6b" - } - }, - "private": true - }, - "brown-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(98, 71, 30)", - "uuid": "f455957b-e647-44b3-a917-7d6e19807d40" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(214, 177, 123)", - "uuid": "5346904d-2c85-4dd5-815c-ea2708a4d380" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "bca8a6a6-557e-4930-b765-0dcc9867c42a" - } - }, - "private": true - }, - "brown-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(115, 88, 47)", - "uuid": "41f83cff-cdd4-4760-a4bd-0bb1ceb46854" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 155, 104)", - "uuid": "970fd8ac-c68b-4789-84a6-1397b2514e2f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "ef14139b-0550-4a5a-b2f5-eb787bcf406d" - } - }, - "private": true - }, - "brown-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(132, 104, 61)", - "uuid": "dc738913-4af6-446e-8a1b-09c84993c8e5" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(171, 138, 90)", - "uuid": "621aa30e-95de-4b69-814f-821dfe12b78d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "45f999be-146e-4b0f-97de-ef1f7e82d675" - } - }, - "private": true - }, - "brown-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 114, 69)", - "uuid": "e21a0edf-a81a-46a0-a849-11111cb89516" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(154, 123, 77)", - "uuid": "b15bdc92-c03f-4ad4-a385-110d635e66af" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "2c0181c8-ef5c-46c8-bc3e-703d08f3692b" - } - }, - "private": true - }, - "brown-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(163, 132, 84)", - "uuid": "79d7de9d-7bab-4762-acd9-ecf28556906a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(139, 109, 66)", - "uuid": "b0445ddb-ec22-4dde-81a1-21ea14ed195a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "6756882c-f521-49fc-b7c9-3dc8f4d39d5a" - } - }, - "private": true - }, - "brown-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 147, 98)", - "uuid": "6fd7a375-e670-4bde-8061-b1b2ba5116be" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(119, 91, 50)", - "uuid": "0dd635ef-0b0a-4914-8900-999ab7ce436e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "a2a5c52d-7381-47b8-9b67-5d3c86e8ff21" - } - }, - "private": true - }, - "brown-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(199, 163, 112)", - "uuid": "26df5572-cbdb-4988-8847-672ee1669acd" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(103, 76, 35)", - "uuid": "d14770ac-d032-4408-b5de-637de47bf151" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "1c1c2c57-890d-4638-b219-5b5e1953ba57" - } - }, - "private": true - }, - "brown-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(222, 185, 130)", - "uuid": "c1965544-ed0e-438f-aed0-b1f31836950c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(88, 61, 21)", - "uuid": "1a2cfeec-1d02-4225-a2a1-ecad878a0372" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "df9afc4f-bb87-4dae-b2b6-f7d27a590593" - } - }, - "private": true - }, - "brown-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(232, 207, 169)", - "uuid": "41d1432f-1b3a-4e93-8b57-2e48d0e66096" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(70, 49, 17)", - "uuid": "88621915-f832-4401-b42f-4026cbf6720c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "1e9a6104-d427-4197-8e01-25673c917143" - } - }, - "private": true - }, - "brown-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(242, 227, 206)", - "uuid": "91db9b52-530b-4147-be4f-c4d73a82eac3" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 37, 13)", - "uuid": "fa6e22f6-adb1-4123-b685-dd6050b0a248" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "2ceb2cda-a535-44eb-ae23-b922edcb8bb8" - } - }, - "private": true - }, - "brown-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(250, 244, 236)", - "uuid": "d4d71d28-ce37-4f3f-8487-807cd1c42b9a" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(38, 26, 9)", - "uuid": "ddac3cfe-8338-4df5-94c5-baf4e04e6c46" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "19c96dc5-7a37-4381-a7e8-ac1c442afda6" - } - }, - "private": true - }, - "brown-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "bca1e3d9-9242-4b81-95ab-08735905047b" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(16, 12, 4)", - "uuid": "e2753343-f81b-4677-899c-6dfbcc9378fe" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "cb18b0b7-7ad5-419f-863c-fdbb05c624c3" - } - }, - "private": true - }, - "silver-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(26, 26, 26)", - "uuid": "0c4a28ee-a473-4437-924e-c46a9bc0771b" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(247, 247, 247)", - "uuid": "e190b39c-3e1f-4ad7-bc70-0b98c1770f61" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "7e0c8012-9ec4-40c3-a572-dd551627e54f" - } - }, - "private": true - }, - "silver-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(33, 33, 33)", - "uuid": "99b20fba-8fa9-414b-9119-dbaccc5af3c5" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(239, 239, 239)", - "uuid": "f0bae14e-1c9a-4a03-9dbf-dcd3213463c1" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "240ade94-eb1b-4ddd-b667-7c05af2b196a" - } - }, - "private": true - }, - "silver-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(44, 44, 44)", - "uuid": "27ca065d-5baf-470f-b1aa-09e9934055d0" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(223, 223, 223)", - "uuid": "41989dfb-ef46-493d-8b50-d9422b221ee8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "da36dc54-21c0-412f-baa1-ae3a2810b926" - } - }, - "private": true - }, - "silver-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 59, 59)", - "uuid": "0c4f7cca-a9fc-40d5-9503-04c505962f33" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(204, 204, 204)", - "uuid": "4bdcf062-a1b6-4615-ad8e-747082107f44" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "a52e646b-54c7-419b-850e-1da7abc74dd3" - } - }, - "private": true - }, - "silver-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(76, 76, 76)", - "uuid": "98e7bc6e-bfed-47c4-8f6e-ab1e035deef7" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 183, 183)", - "uuid": "1bd72e90-6ec1-4a55-beb2-04ad5afd03d5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "696e8452-cd1b-4ab8-b9d6-eb2b76bdf020" - } - }, - "private": true - }, - "silver-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 92, 92)", - "uuid": "9e46a3c3-25d1-41f5-b76d-d4d136668589" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(160, 160, 160)", - "uuid": "1354b7a3-d0b5-4f48-8631-6b4afd7efe4f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "b0f8e027-ba0e-4460-8d45-b0ada27327d9" - } - }, - "private": true - }, - "silver-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(108, 108, 108)", - "uuid": "d66afc23-a9aa-4a50-a094-3dfebe044a08" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 143, 143)", - "uuid": "8c7b40e3-239d-4b57-a846-eb5d9f96615d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "907d96cc-375b-49a7-abe0-afb229c98474" - } - }, - "private": true - }, - "silver-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(118, 118, 118)", - "uuid": "3f481be4-bdd3-45b8-bcfe-c7577cac40d4" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 128, 128)", - "uuid": "bbfb55a6-5bca-424d-8a27-e1e54fff7309" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "8ed554bc-be40-4ebb-9a83-c85c73c0cb3d" - } - }, - "private": true - }, - "silver-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(137, 137, 137)", - "uuid": "66efbf5e-008b-41f6-a623-ee3722e41c69" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(114, 114, 114)", - "uuid": "39cdbda8-3c8c-4977-a90e-3883647d93a6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "3f1bbfff-8a14-4984-a725-211aba36fa98" - } - }, - "private": true - }, - "silver-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(152, 152, 152)", - "uuid": "ee71e6fd-283f-4ba3-a6a3-b23491ce86d0" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(96, 96, 96)", - "uuid": "943f1415-fc31-4724-8434-9e9cdb51d2b4" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "28a8b564-c9fb-41ab-b989-47516f9c0135" - } - }, - "private": true - }, - "silver-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(169, 169, 169)", - "uuid": "e1239867-313d-44f8-8ac7-ebdb9f34724e" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(81, 81, 81)", - "uuid": "28748667-93d7-4752-8c75-419af48b4d1d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "69a3ff9a-dec9-4a96-b54f-f9ca12568e59" - } - }, - "private": true - }, - "silver-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(190, 190, 190)", - "uuid": "5ce07115-c390-4b72-b1ce-4e1f5346ac59" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(66, 66, 66)", - "uuid": "f1033f5b-aa7f-4351-9100-43ce546f6a8d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "18013461-754d-434e-8b05-269dd307d45a" - } - }, - "private": true - }, - "silver-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(211, 211, 211)", - "uuid": "426823de-8002-4acb-a591-8ace92d1e0cd" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 52, 52)", - "uuid": "77bcd85e-90f8-47b8-a9a3-ec59cd7ffe14" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "8119e422-4eb8-44fc-bf69-b1f76963afca" - } - }, - "private": true - }, - "silver-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 229, 229)", - "uuid": "b4cae4c1-1075-4776-a217-940423c4297c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 39, 39)", - "uuid": "369bdb1d-bd52-41b4-8512-159cb20c5d64" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "9313f4d5-1105-4cb0-81f4-a8a5109594a0" - } - }, - "private": true - }, - "silver-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(244, 244, 244)", - "uuid": "196c4205-2175-4317-82e1-c2fdeb990c4b" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(28, 28, 28)", - "uuid": "b9b53281-a4f9-4073-8552-d3d4cec25271" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "dba91bae-1dae-4687-be68-d831a5bd42ba" - } - }, - "private": true - }, - "silver-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "8509cb0b-461b-441c-b909-0384737ca553" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(12, 12, 12)", - "uuid": "fc85bffe-09d4-4fb6-bb7b-5f1053139b97" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "cd1b844a-29bf-4643-a246-4f124544e25d" - } - }, - "private": true - }, - "cinnamon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(48, 17, 4)", - "uuid": "4d68b861-ba0c-438b-b10b-c209d4943206" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(253, 247, 243)", - "uuid": "27d84774-6d32-4499-8ba9-9d05c8fca55d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 248, 252)", - "uuid": "3c3b2fb7-053d-47ca-86a6-4d1ee07b6f3f" - } - }, - "private": true - }, - "cinnamon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 21, 5)", - "uuid": "bd680dfb-0c2f-45e8-b814-627b496a986c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(249, 236, 229)", - "uuid": "a8d1aa1d-f9be-448e-8209-afc6097f38ed" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(235, 239, 248)", - "uuid": "07d13e6d-0df2-4eee-8550-ef033f954e9e" - } - }, - "private": true - }, - "cinnamon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(79, 28, 7)", - "uuid": "4d086a5c-1b70-4750-be79-db934e7bc010" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(244, 218, 203)", - "uuid": "56c7eeb3-990f-48e3-b024-56d36b0378f5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(216, 224, 242)", - "uuid": "74d44818-bbbd-44a3-b9f0-7131fb036498" - } - }, - "private": true - }, - "cinnamon-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(100, 41, 15)", - "uuid": "e5ab12a9-84b3-4bfe-94be-f734ae39f10d" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(237, 196, 172)", - "uuid": "d4760c87-d0e2-4c5c-84f3-81e0c4c8fbb3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 205, 234)", - "uuid": "2a7d78f3-ad8d-4301-96e8-f2a4ed378c00" - } - }, - "private": true - }, - "cinnamon-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(122, 57, 28)", - "uuid": "641a2424-c699-4920-8a27-68bc1bb178a1" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(229, 170, 136)", - "uuid": "39effb8c-2bba-4018-b6df-2465f2f7e0a0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(164, 183, 225)", - "uuid": "c607ecc8-35ed-4d47-a683-54d57b816fbd" - } - }, - "private": true - }, - "cinnamon-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(143, 74, 40)", - "uuid": "6ccccd38-af76-4045-8ffb-a70bed76b365" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(212, 145, 108)", - "uuid": "7d4de908-322f-4326-b623-a868b454b031" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(135, 160, 215)", - "uuid": "d46ae80e-04ba-418f-8368-1d8c0633c0d1" - } - }, - "private": true - }, - "cinnamon-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(163, 88, 52)", - "uuid": "74c0ef96-2f6e-434a-bd89-69c6d9745a45" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(198, 126, 88)", - "uuid": "0601d1ba-9a38-4fc9-ac89-ef332e906f3d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 142, 208)", - "uuid": "71085b67-c49c-4b1e-b708-6b38c16b9d37" - } - }, - "private": true - }, - "cinnamon-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(176, 98, 59)", - "uuid": "58777c5b-8e62-49fe-8e0b-0f8b5127225c" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(184, 109, 70)", - "uuid": "560d578a-4128-40d5-979f-80d3057294a0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(93, 127, 201)", - "uuid": "e78bd82d-f4c0-4617-92bb-08a69153bacd" - } - }, - "private": true - }, - "cinnamon-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(192, 119, 80)", - "uuid": "7b65cc42-f559-42de-8077-d808c9e096b6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(170, 94, 56)", - "uuid": "50199dcc-deae-42ba-99e7-cb98346789eb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(74, 111, 195)", - "uuid": "cdaaa5e1-7ca5-43a8-bdb4-3ef8fedbb30d" - } - }, - "private": true - }, - "cinnamon-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(206, 136, 99)", - "uuid": "40d50298-0ea6-4c7f-8349-2e149ca288aa" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(147, 77, 43)", - "uuid": "b6943b69-7cec-4707-a556-aa350d9d8b89" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(61, 94, 165)", - "uuid": "696315e6-4d82-49a0-8781-853beb0d1f5b" - } - }, - "private": true - }, - "cinnamon-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(220, 154, 118)", - "uuid": "219f9efa-0717-4d41-80ac-695297b92cf8" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(128, 62, 32)", - "uuid": "62edca31-5c84-4353-9707-f3648c8e1936" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 79, 140)", - "uuid": "41f0e438-0ca6-4240-84e7-dedfcff1aa21" - } - }, - "private": true - }, - "cinnamon-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(232, 179, 149)", - "uuid": "a48f0d44-c67a-4e95-b5b9-81379363aebe" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(110, 48, 21)", - "uuid": "e8b6ac17-268d-4ebc-99bc-480d15554356" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(42, 65, 114)", - "uuid": "87e41d92-4099-4248-963c-394d43e33657" - } - }, - "private": true - }, - "cinnamon-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(239, 203, 183)", - "uuid": "4aae0490-5f12-430c-824f-f7de008a4e15" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(92, 35, 11)", - "uuid": "4330fb2e-d402-43bc-b7a0-502c7f6d99ea" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(34, 51, 91)", - "uuid": "2c86bff2-dddd-4fea-b6da-99873fa74da3" - } - }, - "private": true - }, - "cinnamon-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(246, 225, 214)", - "uuid": "1e29a372-600e-4cda-a190-b865c5521aa6" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(72, 25, 6)", - "uuid": "6fe88344-7920-46a6-bbe4-be3cfa20298e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(25, 39, 69)", - "uuid": "2ec58374-b4c1-4e03-8f3f-57c747a7ed47" - } - }, - "private": true - }, - "cinnamon-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(252, 244, 239)", - "uuid": "7b880574-db1b-47ee-8c66-6504ada37f56" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(52, 18, 4)", - "uuid": "fe6e5407-3f9b-4dd0-9589-7029c19f35b5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(18, 27, 48)", - "uuid": "1adb9cd6-2ba1-4501-ab9d-f377ae07d399" - } - }, - "private": true - }, - "cinnamon-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(255, 255, 255)", - "uuid": "1d04ed6a-8efc-472b-b7c7-0fbc160ce7fd" - }, - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(24, 8, 2)", - "uuid": "e3727e22-c955-4116-b5a7-2877df6ef2fe" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(8, 12, 22)", - "uuid": "321a9931-be34-4ce9-8180-8e7fd87e30f4" - } - }, - "private": true - }, - "static-blue-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(59, 99, 251)", - "uuid": "e193b8bb-6a0b-4c23-9851-83634f3797f8", - "private": true - }, - "static-blue-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(39, 77, 234)", - "uuid": "8402b6ad-f3da-4ea2-8b55-174a9794950d", - "private": true - }, - "static-fuchsia-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(181, 57, 200)", - "uuid": "7629af9c-2f91-449e-a82f-c60a771b0e6f", - "private": true - }, - "static-fuchsia-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(156, 40, 175)", - "uuid": "0aee9ad6-2d79-4479-bdb6-aafa07a98673", - "private": true - }, - "static-indigo-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(113, 85, 250)", - "uuid": "970ddf30-3683-4f48-9ac7-8a9e42902fd3", - "private": true - }, - "static-indigo-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(99, 56, 238)", - "uuid": "fb3003ec-6793-47b0-947d-a89e642652fc", - "private": true - }, - "static-magenta-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(217, 35, 97)", - "uuid": "5b34bb1d-a23e-4799-ad59-8fa8f51d3726", - "private": true - }, - "static-magenta-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(186, 22, 80)", - "uuid": "058a8ff9-740d-4e11-bdb6-7473a77f872b", - "private": true - }, - "static-red-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(215, 50, 32)", - "uuid": "d31011ef-7270-4c83-802d-05701ae9a3c8", - "private": true - }, - "static-red-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color.json", - "value": "rgb(183, 40, 24)", - "uuid": "3a65213c-4d36-48ec-8bf9-1b163a81299d", - "private": true - } -} diff --git a/docs/s2-tokens-viewer/tokens/src/icons.json b/docs/s2-tokens-viewer/tokens/src/icons.json deleted file mode 100644 index 766c908c..00000000 --- a/docs/s2-tokens-viewer/tokens/src/icons.json +++ /dev/null @@ -1,1317 +0,0 @@ -{ - "icon-color-inverse": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-50}", - "uuid": "9e04025f-b58c-491a-8569-1965ae074f7b", - "deprecated": true - }, - "icon-color-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-default}", - "uuid": "d143f2f2-e0d8-4eb3-b06c-86233321fb61" - }, - "icon-color-blue-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "f53f030b-755f-46ca-b411-7d62f4eb901e" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "1bac9a3f-4bc8-4a4d-8dfd-53c542b1d1d8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "a306b28e-f698-427d-a576-439b2ab378fc" - } - } - }, - "icon-color-green-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "a0717159-cc62-4ba1-b1f1-a69dfb88c6ee" - }, - "icon-color-red-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "89656cae-d490-4b9f-93eb-75912b29ecf5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-700}", - "uuid": "a60f2744-ad15-4cf7-b9dc-89ca307ed444" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "16bbb033-224a-43e6-881c-bd29ffd70d1b" - } - } - }, - "icon-color-yellow-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "59cd6057-b3d8-4bdf-b752-7df17c2c4a95" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1200}", - "uuid": "5ebf8291-23f8-4806-865d-4ebab38ff03c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "fc16cbe3-7cf3-4744-a571-5bd2bdcef29e" - } - } - }, - "icon-color-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-hover}", - "uuid": "2a3d8ce3-6294-41b2-ad19-c6b9b6ed7e10" - }, - "icon-color-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-content-color-down}", - "uuid": "83223069-7a05-4b61-b1ec-2af8e712e0a2" - }, - "icon-color-blue-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "d5f07e5a-b59b-4613-9eab-eae3a74c67f2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "17dd2bcd-e66f-4c86-8335-47bd3828a2cf" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "95cd46ba-7b1f-4ae4-86c1-1957c007a6a2" - } - } - }, - "icon-color-blue-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1100}", - "uuid": "2d2a2756-332e-4d78-9385-e50fd8b5edcf" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "b775d1a5-2951-4d51-9a48-265f46e8edc3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1100}", - "uuid": "c32c7711-0889-4f62-afe6-4b744166a66e" - } - } - }, - "icon-color-brown-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "59038eb6-5b6f-4fa7-8a5d-9bf78db26fa9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-700}", - "uuid": "bd6c966d-0b33-4f68-9b84-9e7ae0082805" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "afdc8658-f6a4-4205-af17-553c04cca24d" - } - } - }, - "icon-color-brown-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "5821a2cf-320d-4947-8289-2537eeef3154" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-800}", - "uuid": "00757309-91b4-4a6a-9897-32db62d9e94b" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "bffb9e2b-565a-4774-8f57-ef03768b4176" - } - } - }, - "icon-color-brown-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-1000}", - "uuid": "16f958d5-8128-4774-b3ec-3ba5dd41f4fa" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-900}", - "uuid": "ac16c318-bf3a-49f7-a696-a7aaf8eb4335" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-1000}", - "uuid": "b2474c42-cecc-4f91-b3e9-a0855a79d5ed" - } - } - }, - "icon-color-celery-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-700}", - "uuid": "347e56ff-3c87-49ca-b5c3-b359f33a0203" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-900}", - "uuid": "c7a01756-b63e-4f18-b700-26b3f183e2c8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-700}", - "uuid": "c3f8622e-4ee4-4a68-be5d-c7b9f583c686" - } - } - }, - "icon-color-celery-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-800}", - "uuid": "00213ade-1251-4e7f-9020-08d3f46bb3a6" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-1000}", - "uuid": "44a0a5c5-7131-42c4-859d-fa9541dff287" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-800}", - "uuid": "a32205e0-b208-4539-9fe4-5eb2d7464d91" - } - } - }, - "icon-color-celery-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-900}", - "uuid": "4d42768e-6c50-4b41-bfa9-f626119d92b0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-1100}", - "uuid": "a16feeab-27da-4d04-af0b-2a45cc14982c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-900}", - "uuid": "f9fa057e-58f4-472f-8ab7-6bae7d1d27eb" - } - } - }, - "icon-color-chartreuse-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-600}", - "uuid": "ded3802a-2b38-405d-a437-193bf1e061a0" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-1000}", - "uuid": "a407df08-a00b-421a-b999-d37097debc26" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-600}", - "uuid": "6bfd7aea-dfd9-47ee-9f18-e4431886e1cf" - } - } - }, - "icon-color-chartreuse-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-700}", - "uuid": "b263dc42-bcc1-4073-a230-81707fe7f388" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-1100}", - "uuid": "a63751a9-4d3d-4dfb-9028-3aaecf11df47" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-700}", - "uuid": "6d3438e5-cc32-4c26-960d-434b24dbb1e0" - } - } - }, - "icon-color-chartreuse-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-800}", - "uuid": "dc16f7b1-8b33-42d8-a292-f6efbd3d9f43" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-1200}", - "uuid": "a8dcf645-ae32-4870-90bf-4d802837cf08" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-800}", - "uuid": "d00300aa-5990-483d-8218-229169e9cd74" - } - } - }, - "icon-color-cinnamon-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-800}", - "uuid": "fcf4219b-fa42-4693-ba34-fc5f46bfcde8" - }, - "icon-color-cinnamon-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-900}", - "uuid": "a91d68ae-30ac-496b-9558-39272e9926c4" - }, - "icon-color-cinnamon-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-1000}", - "uuid": "6cb36abc-7d86-4df0-a96d-36a4308a8ebd" - }, - "icon-color-cyan-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-800}", - "uuid": "2855caf0-9b6d-4d45-bdb8-30aab37a237c" - }, - "icon-color-cyan-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-900}", - "uuid": "2f68ac4a-be55-4fc7-b96e-987bdb5956ca" - }, - "icon-color-cyan-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-1000}", - "uuid": "c6ae865c-1938-4eec-b89c-7f793dc3f049" - }, - "icon-color-fuchsia-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "0aedb32f-f3d7-4fa9-82d2-aee9ca727cfe" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-700}", - "uuid": "ec2b1658-d174-49c9-a36a-7f80d97a1ee8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "75b0d002-84b7-4c75-8c74-3b1ff15ff10a" - } - } - }, - "icon-color-fuchsia-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-1000}", - "uuid": "fd2f3488-d5bb-4f36-8799-a0168ae8ca5c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-800}", - "uuid": "0a66c0d9-0a0a-4f0d-9bb3-cbdb2bc12842" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-1000}", - "uuid": "53acea92-bc9f-4c41-93b9-e18cde613305" - } - } - }, - "icon-color-fuchsia-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-1100}", - "uuid": "0610e1fa-387f-4018-bbb2-bda7b30c74a3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-900}", - "uuid": "6964ef24-8178-4513-8d9a-5240973622fb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-1100}", - "uuid": "625728db-30ec-41d7-9f6f-0ce9c0201c66" - } - } - }, - "icon-color-green-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "9a667090-665d-47b2-b000-5a9f4fe26fcf" - }, - "icon-color-green-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1000}", - "uuid": "c0acc956-e9de-469b-8919-aa0d8b762bb3" - }, - "icon-color-indigo-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "b6c15610-dc9a-4b7c-9391-247a0f4b56ff" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-700}", - "uuid": "2e4457c1-e637-4f22-909d-643dd535b5fd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "05f75802-5062-422a-8a39-f7e8f71ce17e" - } - } - }, - "icon-color-indigo-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-1000}", - "uuid": "d6a54fc4-c4d9-403a-ba71-f525d36586ec" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-800}", - "uuid": "fc9ef846-e264-498c-9b7a-be9a9164f3d3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-1000}", - "uuid": "735472d9-0220-4e7e-a06b-9f3504cad201" - } - } - }, - "icon-color-indigo-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-1100}", - "uuid": "ff60b02b-f205-48be-80c0-a362f7b72e27" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-900}", - "uuid": "f21187bf-8dbe-4eee-9ce9-c76d08517a6c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-1100}", - "uuid": "1f2e8832-16e1-4030-a5ef-16f5b5c663d0" - } - } - }, - "icon-color-magenta-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "3fb3630d-e7a3-4807-93c1-c5da4a8f642b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-700}", - "uuid": "7b3f5848-6a8c-47fe-aacd-ad2f1af53306" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "d0802b2a-faba-4530-8f50-dc22e6962d44" - } - } - }, - "icon-color-magenta-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-1000}", - "uuid": "b81fb79d-69dc-4bde-b3d6-661a7719a6e8" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-800}", - "uuid": "23dc0d7b-fb23-460a-b9f1-7a9a7496c107" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-1000}", - "uuid": "3e368eed-b2f7-4e9e-9935-421ef0f86f9f" - } - } - }, - "icon-color-magenta-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-1100}", - "uuid": "31aa02cb-2f5f-4803-bf5d-4e97816472be" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-900}", - "uuid": "042aa474-5cf0-4cdc-a75d-19eac80a0ade" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-1100}", - "uuid": "ddfb3e51-e724-48b4-aecc-dcfe000eec11" - } - } - }, - "icon-color-orange-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "d035f399-5154-4f0e-b5aa-434644e19f4b" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "1ea9d171-f3ba-40fd-bd0b-1e0ebaf68f01" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "41b694b3-5805-4ee7-aca0-88527dc6120b" - } - } - }, - "icon-color-orange-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-800}", - "uuid": "726e95d7-f687-4e9c-b050-2e54cc1b0b77" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1000}", - "uuid": "d35dd0cd-49b0-4430-9fe6-9dcf0e9e5874" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-800}", - "uuid": "1c3bc51c-edf8-4c2b-af93-44d7ffeb46b2" - } - } - }, - "icon-color-orange-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "cb36fbb9-e88f-4965-a67d-8a12f10fb445" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1100}", - "uuid": "4534a7d3-b2b0-4e94-8366-030ac144031c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "b00737a5-c111-42fe-9378-47a79139e11a" - } - } - }, - "icon-color-pink-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "abd32483-3555-4d1e-831b-9799db14d39c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-700}", - "uuid": "4a4d6a11-1343-40c7-b7d3-d25d6f1d4ed3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "1e0b6862-10cd-4860-9bf7-9cbce71e7f81" - } - } - }, - "icon-color-pink-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "c516dfa3-8921-47d6-99fe-976e3d93adef" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-800}", - "uuid": "88bf5d43-7655-43e6-8844-a94f4696bde0" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "8a64d036-a935-442a-b596-5d4d0fd001a9" - } - } - }, - "icon-color-pink-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-1000}", - "uuid": "f3b7c0ba-eb0f-46af-bf89-9e1f46afa937" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-900}", - "uuid": "b4ead77c-aec3-4dc5-85c4-ab0e62231232" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-1000}", - "uuid": "c31819e9-6bf1-4048-94bc-ee6f04b82474" - } - } - }, - "icon-color-purple-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "7543b9c6-aea2-4dc9-ad2d-204d6f1d2185" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-700}", - "uuid": "50b28c39-4b4e-43dc-b742-e85a892e843a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "1b6ce540-0839-4ba2-bf98-51fb499113a4" - } - } - }, - "icon-color-purple-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-1000}", - "uuid": "740f2726-16e3-4011-8d2c-aaf504be8f14" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-800}", - "uuid": "2e9e7c94-5454-41d9-95e3-8e1e91c41f14" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-1000}", - "uuid": "ec923982-6694-44bc-8f75-ebe1c76ba09a" - } - } - }, - "icon-color-purple-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-1100}", - "uuid": "fbec43d7-90e6-424d-8f77-5a39ef739d7a" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-900}", - "uuid": "0ff09a0f-33db-40ee-9b36-ed7db52aafbd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-1100}", - "uuid": "bf3e3302-4798-4b35-a37b-0d5fcd89b556" - } - } - }, - "icon-color-red-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1000}", - "uuid": "5015c992-9d52-4e30-a4cc-e605a0c99545" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "362d9053-52d9-478a-aec9-b56fd805826a" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1000}", - "uuid": "ece07052-dff3-483e-a6b8-1d12b0d94d8a" - } - } - }, - "icon-color-red-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1100}", - "uuid": "e92b61d2-7c99-44ba-bc4b-94bf9cff3623" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "d44cbe6f-b3e1-4048-b26c-c98e9be970f5" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1100}", - "uuid": "02527b17-485a-4a59-b62e-5aa8bfca7df7" - } - } - }, - "icon-color-seafoam-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-800}", - "uuid": "aca36c2e-6dda-4b5e-a6e1-8db1bbb9e448" - }, - "icon-color-seafoam-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-900}", - "uuid": "cdc09dab-b4cc-4034-843b-98afcc36caf0" - }, - "icon-color-seafoam-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-1000}", - "uuid": "3d4610d5-0870-4af3-8878-483218d43f92" - }, - "icon-color-silver-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-700}", - "uuid": "be16b346-ec55-4aa1-9767-0cb139dd361c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "839005ad-8e22-4e1b-a83b-1fe5be08acb2" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-700}", - "uuid": "928c1a80-e248-4e00-aed8-5ddf764a5d22" - } - } - }, - "icon-color-silver-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "74b17dd6-9b4b-43a9-9c7f-4c8edc72afc9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "a6b610b6-915d-4c40-85ee-9b9fee0b5bd3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-800}", - "uuid": "cd0a41af-19ed-48fc-b659-d34cb37d4cef" - } - } - }, - "icon-color-silver-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "b44c8584-eec0-4cc4-b3d3-62df9b1877d9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-1000}", - "uuid": "44ddf65f-494c-4329-b17e-c791c7cfe779" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-900}", - "uuid": "dc071b6f-788a-4a83-b1c0-17ae536c01e7" - } - } - }, - "icon-color-turquoise-primary-default": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-700}", - "uuid": "9a65bd1c-3ddf-4294-83f4-04967372c3f5" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "9566904a-3610-4668-9fe4-71ece5a58398" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-700}", - "uuid": "3c39dea2-cdc4-4042-a134-7197a60ba8dd" - } - } - }, - "icon-color-turquoise-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "260edfe7-6958-4d5b-8489-9ab3ab681577" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "a727a9f5-8f36-4e50-b8a4-3383f309785f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-800}", - "uuid": "2aca1631-0249-47dc-aa3b-44a51f5ea220" - } - } - }, - "icon-color-turquoise-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "c87c8466-22c1-40cb-9e5e-d661cd6cdcae" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-1000}", - "uuid": "1bbe2749-ba61-4e00-871f-cb3c6decd07c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-900}", - "uuid": "0c3db762-fa21-497c-9a32-007e41ab24d6" - } - } - }, - "icon-color-yellow-primary-hover": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-500}", - "uuid": "7d52f667-63c9-4ab9-b92c-10f7f6412632" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1300}", - "uuid": "4f50d025-f259-4130-bb6c-6fc30474e99d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-500}", - "uuid": "f4edf76c-b3f4-4455-b1d5-e222fa79b146" - } - } - }, - "icon-color-yellow-primary-down": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-600}", - "uuid": "94b9cfb2-1934-4ee5-88c8-0bf75c226dd3" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-1400}", - "uuid": "f92ad869-5610-46a4-8314-bee58a039d0d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-600}", - "uuid": "24f49675-e169-4996-9993-c4a8941e8fab" - } - } - }, - "icon-color-disabled-primary": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-400}", - "uuid": "12c9d145-7357-449e-a99a-1154dd5be026" - }, - "icon-color-blue-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "5f164d93-6efe-4abf-8f4c-9cb5f91bf26c" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-300}", - "uuid": "29c9205e-d39d-419a-b6e1-4e0544a3ca7c" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "2bfc538f-30ae-4e45-92ef-bb7ad72f1396" - } - } - }, - "icon-color-brown-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-200}", - "uuid": "40166e04-505e-47ed-b039-0a3827895c36" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-400}", - "uuid": "8da7787f-2d39-4801-a5ea-1b3e69d505a6" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{brown-200}", - "uuid": "2f1fba9a-25b3-4ac7-aaee-7d6da1292da8" - } - } - }, - "icon-color-celery-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-100}", - "uuid": "a5bfd666-a843-4b14-9b7e-1f392a34c4ba" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-400}", - "uuid": "88437eca-ac07-4a83-930a-10861a8ed839" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{celery-100}", - "uuid": "2b519299-a5c9-47d9-bf52-51ce26410073" - } - } - }, - "icon-color-chartreuse-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-200}", - "uuid": "0b1869d0-6aca-4e20-904f-954153bb4b73" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-400}", - "uuid": "cad79edb-8add-4b83-ad3e-fcbed050e037" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{chartreuse-200}", - "uuid": "ec1c5d08-dd5e-40f5-adee-06ffecb36ed6" - } - } - }, - "icon-color-cinnamon-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-200}", - "uuid": "a522f597-1ed4-445c-94c4-a594bc50f9ce" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-300}", - "uuid": "cb5eed01-b2f0-4410-8a71-2bf361d61fcc" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cinnamon-200}", - "uuid": "61eaba25-d605-412f-ae11-5f36fd0061c8" - } - } - }, - "icon-color-cyan-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-100}", - "uuid": "ac6d3cc6-dab7-400c-82d4-bd0876d241b2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-400}", - "uuid": "a5fd0ad9-999f-469d-b224-b60e06313cdb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cyan-100}", - "uuid": "b85aef89-a234-4386-9c46-22e2caa3b4f6" - } - } - }, - "icon-color-fuchsia-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{fuchsia-200}", - "uuid": "707601ab-a624-4466-9ce3-b52552b777a2" - }, - "icon-color-green-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-100}", - "uuid": "7941dc68-44bb-49d5-80ca-3c6952d2acb2" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-400}", - "uuid": "176c986b-8658-4b3e-b559-4080f4fd7834" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-100}", - "uuid": "3231780c-e233-4a60-b063-1c3a383669a3" - } - } - }, - "icon-color-indigo-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-200}", - "uuid": "1c49aee1-a8a2-41ae-b709-7e2d1fbc2705" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-100}", - "uuid": "85432c93-7c00-435b-8298-2ba817cb58bd" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{indigo-200}", - "uuid": "67cfb253-49f0-4a14-a83c-140324ef5bc0" - } - } - }, - "icon-color-magenta-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{magenta-200}", - "uuid": "2cf7dea9-034c-48a8-8946-d059320ced08" - }, - "icon-color-orange-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "3ceff0a2-fca9-4d73-82a8-f5098c511e17" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-300}", - "uuid": "73e28358-35bb-4643-a1b8-ae3fd3de206f" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "a6f69b6d-496f-40bb-96a5-f04efa4ce8bc" - } - } - }, - "icon-color-pink-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{pink-200}", - "uuid": "46d11573-718e-4e38-8493-f3a37a5e7d32" - }, - "icon-color-purple-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{purple-200}", - "uuid": "5a9cdf9a-09a5-42bc-a0bf-6f187c6832c5" - }, - "icon-color-red-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "c6872759-ff54-48ef-8513-d752ec12f8ca" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-300}", - "uuid": "1fbda732-e276-4dec-8ec7-faeff6cba3a7" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "12859f90-c49c-4508-bc0d-df4d9512c864" - } - } - }, - "icon-color-seafoam-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-200}", - "uuid": "975fa979-d134-4d4b-8a27-e50307925ec4" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-400}", - "uuid": "39ff1a28-8c57-490f-8cf7-eb63fd3b7ebb" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{seafoam-200}", - "uuid": "bc3ce9f1-cde9-4609-b4ab-c78a15ac064c" - } - } - }, - "icon-color-silver-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-200}", - "uuid": "98f6376e-01b0-4646-afe1-b52c33700db9" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-400}", - "uuid": "a2c48afa-59de-43af-8ec4-2c573948ae52" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{silver-200}", - "uuid": "b2e8e8ac-001a-4a4e-bcc9-9508ba954ece" - } - } - }, - "icon-color-turquoise-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-200}", - "uuid": "a6478f6c-3a60-42e3-98f7-5cabf91e09af" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-400}", - "uuid": "3d251526-b63d-412c-bb54-712d36c73e8e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{turquoise-200}", - "uuid": "a5b3d3f5-785b-4969-9389-12c1f7b2f26d" - } - } - }, - "icon-color-yellow-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-100}", - "uuid": "3cf7a8f4-9238-4f9f-9c85-97dc38de69d1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-400}", - "uuid": "0dd236ab-7af8-418e-88dd-0cb45cf5da13" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{yellow-100}", - "uuid": "5a5e15ab-e73b-4997-be67-39534d98e823" - } - } - }, - "icon-color-inverse-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-50}", - "uuid": "ba10ab97-0c09-4d07-ab7b-050258169d52" - }, - "icon-color-emphasized-background": { - "component": "icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "fa5b0690-6ecd-4a3e-8675-ab6445df8946" - } -} diff --git a/docs/s2-tokens-viewer/tokens/src/layout-component.json b/docs/s2-tokens-viewer/tokens/src/layout-component.json deleted file mode 100644 index c247e7b1..00000000 --- a/docs/s2-tokens-viewer/tokens/src/layout-component.json +++ /dev/null @@ -1,11718 +0,0 @@ -{ - "checkbox-control-size-small": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "460e8170-de69-4f8e-8420-6c87a1f6f5cd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "af31c1a5-ffce-4a54-8862-3e711ca53d25" - } - } - }, - "checkbox-control-size-medium": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "86288454-7192-4e4c-b55f-fc509fc58c01" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "00fee3f7-a743-45d6-a2b6-028d5d96964a" - } - } - }, - "checkbox-control-size-large": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "839a52bc-b9ee-473f-acde-0799b4f55ded" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "b4367578-989e-438d-9a3e-7cb077f2f7c9" - } - } - }, - "checkbox-control-size-extra-large": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "4ba47ba1-c9bd-447e-8948-009d5b424e0d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "13093f8b-e38e-449f-a982-7f960bb84dfa" - } - } - }, - "checkbox-top-to-control-small": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "20518175-5bc7-4659-8007-e74339c39433" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "f254146e-f469-44b1-b0c9-1ac72e88f9e3" - } - } - }, - "checkbox-top-to-control-medium": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "dcde5d2d-60f8-4d56-bfb1-bba44a087515" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e3751526-2db9-421c-85f9-d60071aac49b" - } - } - }, - "checkbox-top-to-control-large": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "93edae08-5320-4e7e-a006-a9af1d3665ad" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "d040d2f4-9bb4-4d27-adac-40fef079d958" - } - } - }, - "checkbox-top-to-control-extra-large": { - "component": "checkbox", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3c4217bb-91f2-4347-9f65-a0528992f600" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "b3be5ac8-2415-4490-8b4a-c08661ec84d1" - } - } - }, - "switch-control-width-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "f4d6fe1a-70bd-473a-9fa5-477865ea898e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "ca939c4d-9369-498c-81cb-61df1397f657" - } - } - }, - "switch-control-width-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "d329eda6-f13d-4a44-b962-ff06c371ed93" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "ec2f3b6b-80db-4c43-bdd2-caee98796775" - } - } - }, - "switch-control-width-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "cef839a5-2ba7-4e47-9a85-d94260a8ff10" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "38px", - "uuid": "5c7bdcc9-63f8-4c4b-b26f-97b39f53dbea" - } - } - }, - "switch-control-width-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "f3102afd-e5df-4912-9203-8226ce37fed5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", - "uuid": "4e9d9b63-989a-4b63-b74d-22b5188f8df7" - } - } - }, - "switch-control-height-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3bf75a24-5e95-4c18-9da2-b7088377fe21" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "a1dbcaf0-bbcf-444d-9d22-7f86db20303a" - } - } - }, - "switch-control-height-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "f97f0f1b-c0c2-410f-b116-86d30f4d52cf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "0d5f13f2-4d5b-4c30-b3a3-fa4fcc33b928" - } - } - }, - "switch-control-height-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "8301bfca-a086-4efd-a22f-1d348cbd6dcf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "91b828ce-8ff9-4d32-958e-a8a23ef9b345" - } - } - }, - "switch-control-height-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "2372d602-78ce-45a7-9dff-152152e55117" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "b7ae7b32-b347-4e09-9978-3b0b92a4dbab" - } - } - }, - "switch-top-to-control-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "8a907825-236c-4548-91c4-2123e095726c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "f379c453-da21-41f6-92d1-9b6bdb95fd86" - } - } - }, - "switch-top-to-control-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "0135b823-5097-43bb-9911-9f731146af3b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "68276028-41d8-49e1-b0d4-f70cd27ab149" - } - } - }, - "switch-top-to-control-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "f2c965e6-89fb-4b9d-843d-cfde31b7703d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "035e786b-17f2-488e-a049-84b257a3312f" - } - } - }, - "switch-top-to-control-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "fbc21571-970f-4bb2-8280-f6262446896b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "7e95ad9a-ca10-4f06-9c19-8dd2270cfdad" - } - } - }, - "radio-button-control-size-small": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "407304fc-7c74-4427-9032-b44ab03c07ce" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "90a2b18a-61c7-40d8-926c-d6b18a641010" - } - } - }, - "radio-button-control-size-medium": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "9de5b045-532c-48ef-872e-bd3c22f89a41" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "2eef4003-e666-48e7-b25b-8c50063ce400" - } - } - }, - "radio-button-control-size-large": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "cadf4b9e-b4d4-4ff5-808b-557864cf7dc8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "23d0a4aa-693d-4b79-b942-3898f9cf0b80" - } - } - }, - "radio-button-control-size-extra-large": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "f8f1d29b-4093-40ed-b73c-7a27e27a63a4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "cc041f48-aaa4-4c20-8990-599e0c56134e" - } - } - }, - "radio-button-top-to-control-small": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "b775d7e9-d182-4818-9ae0-b3765a0ecbf7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "02438c4c-161d-45eb-935d-b083ab830876" - } - } - }, - "radio-button-top-to-control-medium": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "dcc0155a-6bd1-4148-acaf-e255a7f4d22a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "2f805530-cefe-420a-89e6-a6a81c0faea0" - } - } - }, - "radio-button-top-to-control-large": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "309c9559-1763-4345-8090-aaa12f570889" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "41d0dde7-de34-4e99-96d0-4f727ed71673" - } - } - }, - "radio-button-top-to-control-extra-large": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "f4620f0a-43ba-4650-8640-9425ed1a1260" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "c478710f-1747-455b-998a-6fa837762905" - } - } - }, - "radio-button-selection-indicator": { - "component": "radio-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "a7fc6bdb-5b9c-42d4-8f78-d34021ac0708" - }, - "field-label-text-to-asterisk-small": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "4796831f-4d3e-472c-bad8-699d4eb443ea" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "4271498d-747c-423d-87cc-761b8a181f7c" - } - } - }, - "field-label-text-to-asterisk-medium": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "7be280dc-43dc-48c3-bf0c-b53f95e76516" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "2fbc4add-e6b4-4dfa-9a7d-0de628b2f63c" - } - } - }, - "field-label-text-to-asterisk-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "997c475e-6ae5-469f-9c8e-9fedafa2b556" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "87149afe-899b-4fb6-bd7c-d2becf8117fc" - } - } - }, - "field-label-text-to-asterisk-extra-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "4140e899-8a28-4627-a91a-e6526da1bdf5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "17ba788d-da38-455d-9322-16e4f05ea923" - } - } - }, - "field-label-top-to-asterisk-small": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "7122627b-1906-424d-9cbf-261546ff3774" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "ec0c072f-50fb-4934-99fc-a2576062e7b4" - } - } - }, - "field-label-top-to-asterisk-medium": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "eb2b857d-9482-42fb-82f9-bbe7899a22b9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "6f65ad1a-4a65-4b83-af44-5bd893f3b40e" - } - } - }, - "field-label-top-to-asterisk-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "60caa810-5335-4c9f-95a7-0e60d49f43fc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "e410a804-2655-4bbc-9b66-53a5facc92ac" - } - } - }, - "field-label-top-to-asterisk-extra-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "e53ea4a5-bde5-4695-9ab8-50c2ce704019" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "5227bf07-140a-49c6-88f9-cc454d8a90c1" - } - } - }, - "field-label-top-margin-small": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "ab718f97-15c3-4b8b-aee7-b50b09ec0a33" - }, - "field-label-top-margin-medium": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "b5243f56-7985-4686-b41f-9b9b9a18b047" - }, - "field-label-top-margin-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f7dd90d8-91e6-4090-a5a9-6b30087860a4" - }, - "field-label-top-margin-extra-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "5c14d528-fe17-4b0b-a123-edbdb93fd173" - }, - "field-label-to-component": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "4738ec46-a43c-48f9-aeca-87863275dc4d" - }, - "field-label-to-component-quiet-small": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "1218beeb-1d74-4e1a-b495-38d5f07afb55", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-10px", - "uuid": "2d3e67ce-de6d-4e41-bcf8-06b09c0bcce7", - "deprecated": true - } - } - }, - "field-label-to-component-quiet-medium": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "dc00948e-3c0f-4c6b-8e3e-a7fbf396e059", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-10px", - "uuid": "074489d2-66b0-4198-94fe-9818279bbf0f", - "deprecated": true - } - } - }, - "field-label-to-component-quiet-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-12px", - "uuid": "be80f1b1-4c08-479f-a39e-28b6a64714f2", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-15px", - "uuid": "c29cfb87-34e7-4397-bfd8-23378ecbb011", - "deprecated": true - } - } - }, - "field-label-to-component-quiet-extra-large": { - "component": "field-label", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-15px", - "uuid": "d6c750dc-3117-4c1a-96bf-b94d530e912d", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-19px", - "uuid": "e1298748-d7cc-4bff-93bc-745b777fcf9e", - "deprecated": true - } - } - }, - "help-text-top-to-workflow-icon-small": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-75}", - "uuid": "91cb19ef-63fc-4d98-a61e-a5f55951f656", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-75" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-75}", - "uuid": "00334ebf-5706-4a97-b02c-9f41642c4795", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-75" - } - } - }, - "help-text-top-to-workflow-icon-medium": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-100}", - "uuid": "d159b313-4def-493a-adcf-398e2d1fce9f", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-100" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-100}", - "uuid": "b690bd12-855e-444d-8b76-a7ae948e3f52", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-100" - } - } - }, - "help-text-top-to-workflow-icon-large": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-200}", - "uuid": "54cae12b-5f21-47b4-a964-6033bd025975", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-200" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-200}", - "uuid": "e2c40309-5b3d-485a-bafa-9015a5b751e7", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-200" - } - } - }, - "help-text-top-to-workflow-icon-extra-large": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-300}", - "uuid": "bec914a9-5905-40ac-bd61-a727016c1228", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-300" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-workflow-icon-300}", - "uuid": "251c39cc-f949-4055-aecb-42fc99f9d504", - "deprecated": true, - "deprecated_comment": "Replaced with component-top-to-workflow-icon-300" - } - } - }, - "help-text-to-component": { - "component": "help-text", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f99eb317-ebe5-43e7-8066-982fe7a9a8aa" - }, - "status-light-dot-size-small": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "04485265-2983-4377-9ec5-f2456863a1df" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "5945e9fe-311a-4d2c-8052-ca4eae4c7c63" - } - } - }, - "status-light-dot-size-medium": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ada7bd8c-04c9-4d77-a6e8-072ff86984ae" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "a7fc9ca1-ad6d-47cb-8798-4a18ba4acc79" - } - } - }, - "status-light-dot-size-large": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "45832ec2-5f33-4861-a857-1ca2352213db" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "6554dae9-18b6-4c90-b2f4-8aeaab0724ad" - } - } - }, - "status-light-dot-size-extra-large": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "5e27b361-988c-42ac-8c66-f7d1ba00632d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "38b8d9c8-d340-4123-88bc-f739cfde91e9" - } - } - }, - "status-light-top-to-dot-small": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "ddece3b1-7f85-4c08-b783-5bde8e31f480" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "a4f43adc-1db1-4e2f-a5d1-3ec06c62c9ff" - } - } - }, - "status-light-top-to-dot-medium": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "e2aa334e-ebb7-4e5f-a735-4f6a43b2d6cf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "321a462b-8811-4264-ac1f-4608df8f8c53" - } - } - }, - "status-light-top-to-dot-large": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "ead22722-10f9-4cfe-a387-65f5d86ca520" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "8d9d872f-7c55-4a94-a80d-c1f2c8834f5d" - } - } - }, - "status-light-top-to-dot-extra-large": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "899c7b7c-7405-4e29-8d42-edf41ca2943f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "b351cade-6d69-449e-908a-518793fef5b9" - } - } - }, - "action-button-edge-to-hold-icon-extra-small": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "b79597cc-5294-4555-ab78-f4200e480ac3" - }, - "action-button-edge-to-hold-icon-small": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "fa106863-0e09-44d4-9465-68cd3254ed2b" - }, - "action-button-edge-to-hold-icon-medium": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "5022d77a-9332-4bb8-bd9f-d353eed2caa3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "255a24ab-f70d-4698-8d2e-569c37c6c798" - } - } - }, - "action-button-edge-to-hold-icon-large": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "dc65074f-a923-4130-84e5-59fa5d5f4121" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "86a36757-a2d1-4263-97dc-62cf4543b3f9" - } - } - }, - "action-button-edge-to-hold-icon-extra-large": { - "component": "action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "1c72a1bf-cfcc-4553-91c6-d7bbcf02cc5a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "b4b4710b-2073-4285-8342-31ae6712671b" - } - } - }, - "button-minimum-width-multiplier": { - "component": "button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2.25, - "uuid": "68b6ac88-d229-460d-8d59-3f5c141db358" - }, - "tooltip-tip-width": { - "component": "tooltip", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0732bd0e-c5c0-4e58-8fee-2015c1753237" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "ad2c09a6-c42e-4eef-94a3-6c2180c6e2af" - } - } - }, - "tooltip-tip-height": { - "component": "tooltip", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "481757aa-c6b5-4281-9a63-feeb1c88aec6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "70c9f65f-1e23-4c47-94dd-0c3ddde15743" - } - } - }, - "tooltip-maximum-width": { - "component": "tooltip", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "160px", - "uuid": "e5ba234a-afdd-451e-84e7-51314446cdae" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "6d7623e1-65f5-4af5-8c08-b33b093b85ae" - } - } - }, - "divider-thickness-small": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "9dcc27ef-7044-4051-97f3-2fd64a5d0a36" - }, - "divider-thickness-medium": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "3cf3e962-92f3-4334-8b92-9a1da9396c25" - }, - "divider-thickness-large": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "913cce2a-c928-4803-9bd6-3fb1e0fcbee5" - }, - "progress-circle-size-small": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2b9f6096-84e7-4430-a3a9-a9daadcd1225" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "a7fafd60-dc38-425a-b6b6-952a06d30ab4" - } - } - }, - "progress-circle-size-medium": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "2b9efe78-8384-4994-a4ab-82046f109d20" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "c380cf9b-cb59-465c-9b56-41654d3239f1" - } - } - }, - "progress-circle-size-large": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "a91ff845-aeb8-4a1b-9e4a-d34c77bb8253" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "c7719369-7d3d-4446-ade2-08abb472a985" - } - } - }, - "progress-circle-thickness-small": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "becddd13-6ef9-4abc-9468-25885b2b4b84" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "a37ef752-662b-4152-b247-0ce9fcd624e4" - } - } - }, - "progress-circle-thickness-medium": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "a3adff4d-e69e-4aa0-95ec-2019328b7d08" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "aa930d94-7874-44d7-80f1-dc431d40c4a4" - } - } - }, - "progress-circle-thickness-large": { - "component": "progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "6331ae2c-ddf9-4de4-8df4-82b5581cf2ea" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "076b031f-5980-4112-bf0b-2cec47f54c6b" - } - } - }, - "toast-height": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "a6267318-c8b1-43d4-99b6-ca2a55e9dff4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "12c8ae92-16b9-48ec-801c-bf07785da4b3" - } - } - }, - "toast-maximum-width": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "336px", - "uuid": "9ac252c8-06dd-48a9-a3d3-ca8ccfb355dd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "420px", - "uuid": "a4de5997-1eb1-430f-9a9f-cf2637d02d34" - } - } - }, - "toast-top-to-workflow-icon": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "d10d2a55-2b4d-46b1-81e9-521d6c3578e1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "1f83245b-3d79-4326-b843-df7b6549cade" - } - } - }, - "toast-top-to-text": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "be4f24cf-9334-4fc4-aa72-e0347beecda7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "9f0688f5-128f-47c3-8585-94d704214881" - } - } - }, - "toast-bottom-to-text": { - "component": "toast", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "821e8f74-d1de-4507-9ff7-ece44e535e8c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "a790fd9e-4e5f-4f4c-a3ca-832540832580" - } - } - }, - "action-bar-height": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-400}", - "uuid": "e67822de-d0cd-4b49-8e90-6c43523bb4dd" - }, - "action-bar-top-to-item-counter": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-300}", - "uuid": "73f82d09-7927-461c-b7d7-ab0bc6b3e3f9" - }, - "swatch-size-extra-small": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "9fa676c9-ccfb-47db-9ae4-348884b9b120" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "0d926e1a-080a-41ba-8bb9-ef6d0847cb77" - } - } - }, - "swatch-size-small": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "33789b22-7d2c-4620-8f45-973e734ef5b6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "c8d8e379-1e3f-4f5e-bce3-df3fc05ff16e" - } - } - }, - "swatch-size-medium": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "2e29b29f-b8b7-430a-8720-31422c6ad243" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "77be7e79-a589-4f32-9e42-ea45ed7763aa" - } - } - }, - "swatch-size-large": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "91e7d7f2-a34d-4d03-831c-75574d1b7bee" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "162c1233-3420-44a2-a270-97d0a7c23df1" - } - } - }, - "swatch-rectangle-width-multiplier": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, - "uuid": "b3157e9d-82a0-429e-b987-8c240a669af7" - }, - "swatch-slash-thickness-extra-small": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "944c49d7-e189-4daa-aca1-b0b590d78875" - }, - "swatch-slash-thickness-small": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "f626d145-7840-4958-86be-d2306b5b2233" - }, - "swatch-slash-thickness-medium": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "4e735599-f420-4b51-aa75-607046431c76" - }, - "swatch-slash-thickness-large": { - "component": "swatch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "6b1b2709-de8c-450d-9299-49200208599e" - }, - "progress-bar-minimum-width": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "8dfd4f94-93cc-47dd-92d2-87d1696f4ab7" - }, - "progress-bar-maximum-width": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "768px", - "uuid": "7ba00389-a6ba-4d18-9d88-8704427ad784" - }, - "progress-bar-thickness-small": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "f8881a13-70fb-4797-a3ec-08c3c8432b5a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "ab98c47f-f2e4-4f74-8008-55c65907b6eb" - } - } - }, - "progress-bar-thickness-medium": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "0d9f1945-262b-48d0-b584-ff78ec28e012" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "d53e3ac6-6091-4c3f-9e1b-b12b716a5f95" - } - } - }, - "progress-bar-thickness-large": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f8dfa5e7-efb8-409f-8ab3-6bf3adf2199b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "4b680695-7e42-493c-889b-c76a60ab1f4f" - } - } - }, - "progress-bar-thickness-extra-large": { - "component": "progress-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "71229a29-a2cf-46bc-84d4-d324bffad26b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "c15e51b3-4a5e-421e-aa4e-e0a82840f1a2" - } - } - }, - "meter-minimum-width": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "fd4f6ef0-bab2-4405-9eea-8a9b8a7dd295" - }, - "meter-maximum-width": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "768px", - "uuid": "63bfb4da-4aaf-49c6-9328-16c636cf0bf9" - }, - "meter-width": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "ceeda4da-026b-496c-8abd-7081aceae262" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "dc5f4966-4ddd-4e9a-a748-370d8eaae568" - } - } - }, - "meter-default-width": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{meter-width}", - "deprecated": true, - "deprecated_comment": "Token renamed, use `meter-width`", - "uuid": "2633d29d-8a14-48e8-977c-bdb9a53b3bd5" - }, - "meter-thickness-small": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "0013e354-3f26-41a5-8486-2577045872f6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "eb9c3cff-5a1a-4832-a623-6ab258b81d37" - } - } - }, - "meter-thickness-large": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "06751674-2222-433d-9dc6-40f14b2add6c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c9052808-918e-4368-b113-28f928104eda" - } - } - }, - "in-line-alert-minimum-width": { - "component": "in-line-alert", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "8007ebd8-fd67-4dc2-8444-9e6a50c88675" - }, - "tag-top-to-avatar-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cf1239b1-495a-482c-8aeb-3b98c6b75583" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "a2c40238-1fda-4482-a419-b8092a385c9b" - } - } - }, - "tag-top-to-avatar-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "394343df-fb5d-44be-b6d1-9975ab8a4156" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8dbabe33-52e7-4dc1-b2e3-81c1c62d98cb" - } - } - }, - "tag-top-to-avatar-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "57de6911-6f5f-4a0d-9606-e7584a10d7f4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9881ad7c-e9df-40b1-a368-4f8185042c3f" - } - } - }, - "tag-top-to-cross-icon-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "c9e5e973-4942-414e-b128-5569f62453a2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "d93e04b9-1901-4ec4-947a-62c84205e61e" - } - } - }, - "tag-top-to-cross-icon-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "1bfd3452-93c8-424a-99e4-55e5ecbee90b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ac7b17a2-99ef-45b3-ab3b-4d3eeaf99fb9" - } - } - }, - "tag-top-to-cross-icon-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "e335436a-190c-4417-86f4-b7266c093377" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "af69e3d1-92b6-4e62-93f2-c1f1f10f0a63" - } - } - }, - "popover-tip-width": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "c4bc3596-1fbc-4b08-85af-6bd8142e499a" - }, - "popover-tip-height": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "5960406b-973d-4e1f-9bb4-2c7a22422c5b" - }, - "popover-top-to-content-area": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{popover-edge-to-content-area}", - "uuid": "f97488e8-b1c1-442e-b98c-0ae6cff0b774", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use popover-edge-to-content-area instead" - }, - "popover-edge-to-content-area": { - "component": "popover", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-100}", - "uuid": "2a3bd47e-fde5-41d3-a585-f970bdefaf07" - }, - "menu-item-label-to-description": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{menu-item-label-to-description-medium}", - "uuid": "628cf42f-eb40-49b0-b110-3340421d4502", - "deprecated": true - }, - "menu-item-edge-to-content-not-selected-small": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "033fb47f-30d8-4ff2-9825-a3318ca2118b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "de2ef572-54a2-46c2-ad1d-60468fbe6090" - } - } - }, - "menu-item-edge-to-content-not-selected-medium": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "ac4c8abe-abca-4c6f-82e7-ed7fae0c761d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "5faa4858-5590-40d4-bd12-b4c839908c4c" - } - } - }, - "menu-item-edge-to-content-not-selected-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "38px", - "uuid": "bc6a7e9d-b84c-4bf3-9a63-a08047deb41c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "47px", - "uuid": "90385dcc-ea45-466f-ba4d-a1b13f6a079c" - } - } - }, - "menu-item-edge-to-content-not-selected-extra-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "45px", - "uuid": "2480bdaf-ac18-4f67-9a0b-f92200fb31d7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "54px", - "uuid": "3385c12f-199b-4e9d-b2e2-ef6e2658d180" - } - } - }, - "menu-item-top-to-disclosure-icon-small": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8e4b2873-fb57-42d6-8b7b-91fd270c048e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "eb9cf950-cba2-4fb8-a115-8a4c0ddb00d0" - } - } - }, - "menu-item-top-to-disclosure-icon-medium": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "0ed8f599-b4c1-4ac5-b2b0-60db06a98a88" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "e0468683-b2d2-4839-9ad8-46963d7402fc" - } - } - }, - "menu-item-top-to-disclosure-icon-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "bceffb12-72a3-40eb-98a5-3d5fb4d3b627" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "bda3ee60-8f9a-41b2-a8a2-894aed3b3bed" - } - } - }, - "menu-item-top-to-disclosure-icon-extra-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "63919dd9-0dfa-4e6f-ab89-8a24fc91061b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "77e97b70-ef7e-4228-8d91-0ff9d9d2b063" - } - } - }, - "menu-item-top-to-selected-icon-small": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "fbe45d1b-f4b9-40d1-965f-38abe057dc69" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "943a0b43-6c91-40a3-a680-318a934bf6ef" - } - } - }, - "menu-item-top-to-selected-icon-medium": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "8fb8ad12-9bb9-417f-8d0d-7323455cfb7a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "61e906e3-6daa-4841-b4f0-54939157a50b" - } - } - }, - "menu-item-top-to-selected-icon-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "ccfed193-e366-4b13-806c-0cc18e2a87b4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "f84569c5-bb63-4eb1-8193-1130e88e7e5b" - } - } - }, - "menu-item-top-to-selected-icon-extra-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "7be78bf9-a761-45a4-b764-b88e6209440b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "3ff6cb7a-20cb-4b25-a367-7e4497d0f237" - } - } - }, - "menu-item-section-divider-height": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "dac5c077-b948-434b-91bd-0759c2414007" - }, - "slider-track-thickness": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b", - "deprecated": true - }, - "slider-control-height-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "cf748652-099a-4022-ae68-0e5dcb8eff9b", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "19adc707-4fc6-40f0-a972-340d6c935908", - "deprecated": true - } - } - }, - "slider-control-height-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "dd3b649d-12f8-427b-95a6-a4964d92d3b0", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "7306fc00-67fd-4ccd-aec3-7a14e092da5e", - "deprecated": true - } - } - }, - "slider-control-height-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "320abda8-9fe8-4f78-87d6-3f1be921e880", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "0926d8f3-bdd6-4dde-89d0-6d5d7ab9f094", - "deprecated": true - } - } - }, - "slider-control-height-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "fd74d5a5-b966-4d26-abca-58c7a21f8136", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "c5d47ebf-c83f-43c3-b2f2-f4d51c40960b", - "deprecated": true - } - } - }, - "slider-handle-size-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "1384d419-bfad-44d7-847c-a0f2c195fb93", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "7feb3d57-59fb-4095-966e-e8ca0e91442f", - "deprecated": true - } - } - }, - "slider-handle-size-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a8a02181-c797-461d-a666-a63f7535a096", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "278fc618-f6c1-4d30-bf85-075654079003", - "deprecated": true - } - } - }, - "slider-handle-size-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "3df3c866-faf0-43db-8c18-f442e7f94822", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "2a3fb9b0-d701-4e86-8180-9d81f68e91d5", - "deprecated": true - } - } - }, - "slider-handle-size-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "10ccce0d-5a2c-414e-8055-0be76709c180", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "413dc697-1f14-47c8-a7f2-e52254513e6e", - "deprecated": true - } - } - }, - "slider-handle-border-width-down-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "c9b7d8d9-c5ba-4d97-a03b-a214104ede23", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "683fb538-290c-423f-990b-d7134e485f51", - "deprecated": true - } - } - }, - "slider-handle-border-width-down-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "63c65cd6-a2c2-4430-a1e9-cf82ae0a3f25", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "25959ff8-6c2f-4612-8d69-b95bfe485ce4", - "deprecated": true - } - } - }, - "slider-handle-border-width-down-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "525e7d74-2bc0-48ac-85ca-b07335819a31", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "3bf8805b-b4f7-4d0d-af85-d227d6380539", - "deprecated": true - } - } - }, - "slider-handle-border-width-down-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "47d025e2-0b26-4ebc-9b46-3cd1e470b9bc", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "feac9f02-b52a-4694-a5d4-4b1930ab4f07", - "deprecated": true - } - } - }, - "slider-handle-gap": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "1a257268-32e9-4c5c-8477-32a724ff1d42", - "deprecated": true - }, - "slider-bottom-to-handle-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "bf2e4550-f97e-4bd2-91e8-b0ddb5a8abe2", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "3b96ab4f-6628-4ebd-aba8-2837fce04709", - "deprecated": true - } - } - }, - "slider-bottom-to-handle-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "238ebdc2-e51c-459d-8cc7-abfeafed6451", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "5030babb-0017-4784-84ad-d3aaacf6fa05", - "deprecated": true - } - } - }, - "slider-bottom-to-handle-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "be9aed61-c7a1-4dce-80a7-07c9ecef1fd9", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3915ff73-11dd-4389-8d81-2f540ab060f4", - "deprecated": true - } - } - }, - "slider-bottom-to-handle-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "155b6273-1661-4ef5-85c0-a1688ce1ee72", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "e04d9975-4a54-416b-b5fa-87f3ae930204", - "deprecated": true - } - } - }, - "slider-control-to-field-label-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "cbf9c42b-c14e-440d-97ad-3c937c464446" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "d20768dd-dbf4-48a9-8cc8-3370fa6ef810" - } - } - }, - "slider-control-to-field-label-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-12px", - "uuid": "b257bf97-d632-4488-a954-57b16bcf18b9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-16px", - "uuid": "20a8d579-038e-4432-b271-8e44b83a9aa1" - } - } - }, - "slider-control-to-field-label-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-16px", - "uuid": "a4be5828-2176-42e7-97de-1f80e7dc08bb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-20px", - "uuid": "f4fc7ec7-cc02-4ff4-bd9a-f05f9bd59c1d" - } - } - }, - "slider-control-to-field-label-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-20px", - "uuid": "309b149c-306a-49ee-b14c-a0eb4826e3b1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-28px", - "uuid": "9be47810-7a07-4885-a86d-647f5f36d7e5" - } - } - }, - "picker-minimum-width-multiplier": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, - "uuid": "67b68a30-ae00-4da2-9730-99196a2eaf96" - }, - "picker-visual-to-disclosure-icon-small": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "4bcebd07-28a8-401d-9072-3b2ac22e8b63" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "269725c9-3462-4132-8487-95dd61814448" - } - } - }, - "picker-visual-to-disclosure-icon-medium": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f83b0313-ba78-4c98-be6e-702b58956589" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c620ab2b-256d-409a-a80c-7d7c2295efc8" - } - } - }, - "picker-visual-to-disclosure-icon-large": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "2f22005b-305b-4629-bc03-10d81e36ce78" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "47f5a27f-4039-4668-bb21-aafb9dcb82fb" - } - } - }, - "picker-visual-to-disclosure-icon-extra-large": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "de09427a-eef3-4360-a912-0b0d5602d4a4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "0ac097c8-020e-4a7b-b692-59dfdf07e3f8" - } - } - }, - "picker-border-width": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-100}", - "uuid": "69c28762-f456-4641-b6ce-7cb295e3a27d" - }, - "picker-end-edge-to-disclousure-icon-quiet": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{picker-end-edge-to-disclosure-icon-quiet}", - "deprecated": true, - "deprecated_comment": "Use `picker-end-edge-to-disclosure-icon-quiet` instead", - "uuid": "c8bd227d-c72b-4f6a-9d93-0b595821dee0" - }, - "picker-end-edge-to-disclosure-icon-quiet": { - "component": "picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "03da68d8-cd87-4e29-9aaf-ab467594ec2b" - }, - "text-field-minimum-width-multiplier": { - "component": "text-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, - "uuid": "875bbeaf-b4b7-41b9-8e6f-d6a57ec03049" - }, - "text-area-minimum-width": { - "component": "text-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "112px", - "uuid": "69694a85-5f31-43b4-8044-c0f08c83d618" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "140px", - "uuid": "c89bcff3-23ce-405c-a776-3ece7a2ac342" - } - } - }, - "text-area-minimum-height": { - "component": "text-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "71bc5e67-900e-4e32-8109-a4c18da89348" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "cb7270a7-8075-435c-81a5-469ef43860c0" - } - } - }, - "combo-box-minimum-width-multiplier": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2.5, - "uuid": "eabcc77a-f263-43ed-9944-9daa78a56b66" - }, - "combo-box-quiet-minimum-width-multiplier": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2, - "uuid": "4798728b-9a97-4ce1-b703-0182b1513e8b", - "deprecated": true - }, - "combo-box-visual-to-field-button-small": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "combo-box-visual-to-field-button-medium": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "c5a4baf2-effe-4d9a-92f3-b4ead5440d36", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "combo-box-visual-to-field-button-large": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "356c4912-69c7-4a95-956b-c1aa78cb02cb", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "combo-box-visual-to-field-button-extra-large": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "4a4ee415-1f25-4d36-928c-5ece0ce4abcc", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "combo-box-visual-to-field-button-quiet": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{combo-box-visual-to-field-button}", - "uuid": "292cbbe1-1ba4-4369-9768-2051c07e6406", - "deprecated": true, - "deprecated_comment": "Replaced with combo-box-visual-to-field-button" - }, - "thumbnail-size-50": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0578d5e5-9c2d-46f2-9268-85bdf566b3a5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "7f33676b-63dd-4d16-b7e1-36520ade716d" - } - } - }, - "thumbnail-size-75": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "20706cc7-9d07-4938-8328-debd3ab8d822" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "852fc55b-beb7-428c-bc0c-452abc204de3" - } - } - }, - "thumbnail-size-100": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "46dd2eca-598a-45e3-8c7d-c6cf17e148bf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "545604c8-484f-4697-907c-31e2b2cb46d0" - } - } - }, - "thumbnail-size-200": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "ec457831-d272-4809-a84a-f1e9dcaec495" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "0e548378-9633-49d2-90d8-b40e1ba7c98e" - } - } - }, - "thumbnail-size-300": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "95c5905f-b209-4e84-881f-13ea85f12d87" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "8f4dd02c-d3eb-4654-aea4-b3921048cdbe" - } - } - }, - "thumbnail-size-400": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "7ee6d5ae-eb01-49e1-93ba-df3e7c25d876" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "b0351cf7-f0df-4044-ab26-5b6649ea2e1f" - } - } - }, - "thumbnail-size-500": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "87234a25-8f6d-457c-9d3f-363930fec12c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "1798b58e-fce4-411d-ba8d-75006fa4f53e" - } - } - }, - "thumbnail-size-600": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "d533a543-9622-4c43-92a6-82dd5eebcc64" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "543dcd25-42cc-4198-b4ba-ba5524b08691" - } - } - }, - "thumbnail-size-700": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "d6aaa2c4-d213-44de-9bae-742d26df8765" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "5eab16f9-5537-4a14-958d-d96200c5723f" - } - } - }, - "thumbnail-size-800": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "8cee2b4d-48c8-45aa-803b-5d1cd9027fcf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "94ca9817-988a-4e4f-9163-954d29204049" - } - } - }, - "thumbnail-size-900": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "5b9fb77d-8a2e-4e1c-ba86-475cd66b4202" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "97f11dd2-0173-464c-9eef-c260c9e8cf22" - } - } - }, - "thumbnail-size-1000": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "48959be8-02f9-45b9-8190-af60c93cbb6c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "cfbf3ec4-f51d-4a50-b81c-765fff84ce14" - } - } - }, - "alert-dialog-minimum-width": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "7d066c2d-ea59-483d-b8a3-6a9b9e35eedd" - }, - "alert-dialog-maximum-width": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "480px", - "uuid": "45258afa-543b-4fbc-a621-677d8081c2f1" - }, - "alert-dialog-title-size": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-dialog-title-font-size}", - "uuid": "9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197", - "deprecated": true, - "deprecated_comment": "Replace with alert-dialog-title-font-size" - }, - "alert-dialog-description-size": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-dialog-description-font-size}", - "uuid": "9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599", - "deprecated": true, - "deprecated_comment": "Replace with alert-dialog-description-font-size" - }, - "opacity-checkerboard-square-size": { - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use opacity-checkerboard-square-size-medium instead.", - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{opacity-checkerboard-square-size-medium}", - "uuid": "9ddf2e73-ad74-46d7-a79d-fe961b06dbbd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{opacity-checkerboard-square-size-medium}", - "uuid": "879360e9-a7b0-47e0-bc4a-931a12877014" - } - } - }, - "opacity-checkerboard-square-size-medium": { - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "ead3f34f-55b1-4012-a4af-0f7fbf226020" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "cc6fdec6-c03a-4691-805f-b60d199bb60d" - } - } - }, - "contextual-help-minimum-width": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "268px", - "uuid": "83be73fe-50bc-4be8-969c-0361a816225b" - }, - "contextual-help-title-size": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{contextual-help-title-font-size}", - "uuid": "5358fd6c-d9a0-4caa-a85e-af82ed82efaf", - "deprecated": true - }, - "contextual-help-body-size": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{contextual-help-body-font-size}", - "uuid": "e458fa68-ab9c-4441-a7d5-a02f42df1cae", - "deprecated": true - }, - "breadcrumbs-height": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "2d39863c-6987-413c-90d8-07fcc506a0d4", - "deprecated": true - }, - "breadcrumbs-height-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "8393f599-37e8-484a-a1c6-0934ce15a507", - "deprecated": true - }, - "breadcrumbs-height-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "237ff958-a86d-4632-aa7d-504a697509c3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "90px", - "uuid": "5e7426da-1a1e-4d37-8c96-4fdac06bfad5" - } - } - }, - "breadcrumbs-top-to-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-200}", - "uuid": "d084038e-bc31-43be-99ee-13cf727eaf9d", - "deprecated": true - }, - "breadcrumbs-top-to-text-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-100}", - "uuid": "b19547e2-bd8f-435d-b726-4f2ce6a83984", - "deprecated": true - }, - "breadcrumbs-top-to-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "138070fe-1f06-48b4-ac49-f8ff117c5f42" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "ea82fc23-82e7-4116-a8bb-186a253675ad" - } - } - }, - "breadcrumbs-bottom-to-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-200}", - "uuid": "f0e6a20d-8c2d-4aa3-9060-b6ca66aa7943", - "deprecated": true - }, - "breadcrumbs-bottom-to-text-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-100}", - "uuid": "70a356be-c304-4bb4-a9df-97806931f089", - "deprecated": true - }, - "breadcrumbs-bottom-to-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "5a78f5a4-ceee-4854-96d4-b61d76cc522b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "a51a1142-e38e-4055-bd45-ad2bd0045880" - } - } - }, - "breadcrumbs-start-edge-to-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-start-edge-to-text-large}", - "uuid": "a0542dab-98fb-45d8-b4a0-79cfd2cc4f1c", - "deprecated": true, - "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-start-edge-to-text-large." - }, - "breadcrumbs-end-edge-to-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "99ef1a0d-5fe1-4b62-9609-8929e7a3bf9c" - }, - "breadcrumbs-top-text-to-bottom-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "3a89734d-4fcc-43cf-9b77-b2f6d3732391" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "b93aad22-aff0-46d5-b54e-17891f02124a" - } - } - }, - "breadcrumbs-top-to-separator-icon": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-top-to-separator-large}", - "uuid": "15e56281-5fc1-4b59-b815-fc333231e364", - "deprecated": true, - "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-top-to-separator-large." - }, - "breadcrumbs-top-to-separator-icon-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-top-to-separator-medium}", - "uuid": "a63e8df1-124f-4f3e-9e1b-ba422b8d8257", - "deprecated": true, - "deprecated_comment": "Use a sized token instead, e.g., breadcrumbs-top-to-separator-medium." - }, - "breadcrumbs-top-to-separator-icon-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-top-to-separator-multiline}", - "uuid": "6b310160-ab2e-40fd-9216-21ddcb36b575", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-separator-icon-to-bottom-text-multiline}", - "uuid": "eb3b2566-6fc1-4a2c-a8cf-e40af3d34715", - "deprecated": true - } - } - }, - "breadcrumbs-separator-icon-to-bottom-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-separator-to-bottom-text-multiline}", - "uuid": "56dd2fd0-c7a3-4f2c-bda9-8e6ba6d99e6c", - "deprecated": true - }, - "breadcrumbs-truncated-menu-to-separator-icon": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-truncated-menu-to-separator}", - "uuid": "1fe2a3df-3179-4c4a-8d1f-de41297b6d74", - "deprecated": true - }, - "breadcrumbs-top-to-truncated-menu": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "751734bd-1c58-4222-bbd8-8b2349f2fbd2" - }, - "breadcrumbs-top-to-truncated-menu-compact": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{breadcrumbs-top-to-truncated-menu}", - "uuid": "e0aba287-799f-4621-97cb-563352002a20", - "deprecated": true - }, - "breadcrumbs-start-edge-to-truncated-menu": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "b1fba444-c281-4be4-bded-4852b551cfee" - }, - "breadcrumbs-truncated-menu-to-bottom-text": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "2285d870-68ec-469f-a034-2fdeb31e33f0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "154bce30-bfe2-445b-bbdd-69efce5565ae" - } - } - }, - "avatar-size-50": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "60fd0b38-3bad-4a0f-8a69-d4cf79b635ff" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "6f6fae3d-eafd-41d7-a863-b2f0b57240ab" - } - } - }, - "avatar-size-75": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "6aa2d529-0e10-4eaf-8786-f38e04e4d438" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "f23636e9-93e2-444d-a95b-1311a7e074f3" - } - } - }, - "avatar-size-100": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "f3293ec2-befd-49e8-a280-b5a1827aa40c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "a2833b95-ba74-4caf-89e6-8294465d2780" - } - } - }, - "avatar-size-200": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "a17f3911-00ad-4d52-a474-dc5d4e3341d1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "7bfa97a1-39a8-4a30-af13-31ce1393098a" - } - } - }, - "avatar-size-300": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "337f89c8-5b8a-4cd9-a32d-31f2d9804b2e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "b0bd14f7-9642-4e20-90c4-68f38a53e72c" - } - } - }, - "avatar-size-400": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "f7ee2f39-d2ea-44ce-a5e6-e9a2bb8af52e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "44237baf-1128-445d-8337-a943c6ac0019" - } - } - }, - "avatar-size-500": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "9088ecf5-e278-48fe-a7cc-bdf77d15772f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "db33d97e-15e4-4248-a8cf-4b69d745a2e0" - } - } - }, - "avatar-size-600": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "15634a63-05f3-4fb8-989a-cb3ad46b8946" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "9ea7c014-2c8d-403f-ad7f-fa3c08a3a46d" - } - } - }, - "avatar-size-700": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "92260f9e-ad2a-4e46-ad65-d83d99f7e7b7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "0bec4f0f-efb2-44f9-a131-28f8fe248c40" - } - } - }, - "avatar-size-800": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "4c3c7ee0-637c-4c0f-b79b-ba8d4f8aaf9d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "99cf09f1-da56-4961-a805-723b68f718c2" - } - } - }, - "avatar-size-900": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "531b56b5-3abd-4bcc-a4fa-9cceb08b0b8d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "e774036a-23b9-4d74-b878-5d8edf20355f" - } - } - }, - "avatar-size-1000": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "7f677464-22fe-47c5-b4da-e6c60740aafe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "c723eb21-c020-40d5-a225-5857c8b4f0c9" - } - } - }, - "avatar-size-1100": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "63e8bd84-a7e2-4aed-9ac8-44ae2fe70424" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "371af425-26e6-4891-a195-b4dbee5e17b9" - } - } - }, - "avatar-size-1200": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "d8af9c52-b267-4c77-8ca2-ffa5dc27a45e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "88px", - "uuid": "49075645-054f-4b42-8b8a-7fa4971b2ca9" - } - } - }, - "avatar-size-1300": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "88px", - "uuid": "77d45064-5013-417e-9663-a91e97e40d01" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "96px", - "uuid": "b8372421-023d-4d86-b792-eb1c9fd8230c" - } - } - }, - "avatar-size-1400": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "96px", - "uuid": "974ccab6-b9d9-4101-ba6c-69dd75b8602f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "104px", - "uuid": "c46a76c1-77af-4e15-96e1-9e7f16000de5" - } - } - }, - "avatar-size-1500": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "104px", - "uuid": "2ab3cbdf-5791-41ca-b6e3-66d5a4970f32" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "112px", - "uuid": "06359a10-02d1-4886-a841-940b5ffbb0f0" - } - } - }, - "alert-banner-minimum-height": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "450405f8-4f08-4151-85dd-730b669a7ed0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "6d313800-3020-45f8-969d-63e81057ff97" - } - } - }, - "alert-banner-width": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "832px", - "uuid": "713e9ae2-e226-45ab-bce9-869533253ee7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "680px", - "uuid": "b02e6302-d443-4b94-bda9-f4cc90b3d4ca" - } - } - }, - "alert-banner-to-top-workflow-icon": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-banner-top-to-workflow-icon}", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use alert-banner-top-to-workflow-icon instead", - "uuid": "42b40d65-eed4-432e-8ede-74d89905d131" - }, - "alert-banner-top-to-workflow-icon": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "fbe047c4-0346-4b81-bdf6-6565cede7a28" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "402c755b-322c-4ea0-856c-ca209bdaa8ec" - } - } - }, - "alert-banner-to-top-text": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-banner-top-to-text}", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use alert-banner-top-to-text instead", - "uuid": "8fefedaf-6e95-4a14-a8ba-08381f57bfeb" - }, - "alert-banner-top-to-text": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "1d289972-d5ba-41e8-8935-e8c83afb15cf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "8db02117-b543-4b3e-b0ff-203e9a821708" - } - } - }, - "alert-banner-to-bottom-text": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{alert-banner-bottom-to-text}", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use alert-banner-bottom-to-text instead", - "uuid": "e2bd6435-6fbd-4030-9ff5-b034438b8d8a" - }, - "alert-banner-bottom-to-text": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "e19fdd96-44a4-407b-b2b1-01001684fc84" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "5f2b2bc1-ebb0-46dd-a563-58df6307996d" - } - } - }, - "rating-indicator-width": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "f0958cee-9688-43db-9542-1aef164f9dfe", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "dce9ff1e-06d1-49a5-817f-5319f4ab15e2", - "deprecated": true - } - } - }, - "rating-indicator-to-icon": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "b132d948-bec9-4a29-b281-e77801ce5a7c", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "8e13ea1d-8000-485e-8700-5522cc71b95c", - "deprecated": true - } - } - }, - "color-area-width": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "8fcf30ee-73e1-4f54-8975-5467dedade29" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "e5daae6b-7040-4e80-a251-db4c8c79e113" - } - } - }, - "color-area-minimum-width": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "19ff1ba5-a351-4427-bf2e-4e212dde3d3c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "126cd0b8-55cc-489c-9582-fddde76b431c" - } - } - }, - "color-area-height": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "993f90f6-22a6-49ec-a8e6-7a8b904d42a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "552a014a-c590-48f8-98dc-26849b62c3ab" - } - } - }, - "color-area-minimum-height": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "73c558f3-2a1c-4c1d-9b17-cfb49f510070" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "9b84d54e-2b10-4502-b072-ded2a8bf9cb3" - } - } - }, - "color-area-border-width": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-100}", - "uuid": "78fff16d-d6fe-4a74-98bc-97c56e352250" - }, - "color-area-border-rounding": { - "component": "color-area", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-size-small}", - "uuid": "ab656bf4-8814-42fa-9036-b1e67159e4e1" - }, - "color-wheel-width": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "d4cdb77e-54b8-4bcf-97b1-992287af2690" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "81d866f0-e2a6-4f27-bb22-6675cce4e937" - } - } - }, - "color-wheel-minimum-width": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "175px", - "uuid": "647244c3-b071-45c1-94f7-3be32cfebabe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "219px", - "uuid": "6733cd28-a949-40f7-bd36-034af9c0261f" - } - } - }, - "color-wheel-color-area-margin": { - "component": "color-wheel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "4b6bca16-ea29-4d6c-81cf-9005b9a3b5e5" - }, - "color-slider-length": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "11442823-3e61-425a-a24b-a4a0747a06c4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "c42de1ce-088a-4918-a7dc-36507c8acedf" - } - } - }, - "color-slider-minimum-length": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "54aad7a1-df6a-414a-82b4-7976c912a8e5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100px", - "uuid": "120308f7-4220-420e-b836-20176a8184b7" - } - } - }, - "color-slider-border-width": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "2b907cad-7534-411b-b3bf-ab89a3712ad8" - }, - "color-slider-border-rounding": { - "component": "color-slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-size-small}", - "uuid": "991541a2-df44-4f32-90a5-de698adf5db3" - }, - "floating-action-button-drop-shadow-blur": { - "component": "floating-action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "82e8cf04-7eda-4f36-8d2c-fda63241c3de" - }, - "floating-action-button-drop-shadow-y": { - "component": "floating-action-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "a4ddc1a6-1367-4153-bb7c-c217d16d10f4" - }, - "illustrated-message-maximum-width": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-vertical-maximum-width}", - "uuid": "0e464925-5524-4fcc-a2f1-54ef42a2990a", - "deprecated": true - }, - "illustrated-message-title-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-large-title-font-size}", - "uuid": "365ec548-431b-4e1e-9f9d-7b04d337f001", - "deprecated": true, - "deprecated_comment": "Use illustrated-message-medium-title-font-size instead" - }, - "illustrated-message-cjk-title-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-large-cjk-title-font-size}", - "uuid": "e77279df-bc62-441a-8a30-5faa41d0df10", - "deprecated": true, - "deprecated_comment": "Use illustrated-message-medium-cjk-title-font-size instead" - }, - "illustrated-message-body-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-large-body-font-size}", - "uuid": "4140710f-ae31-4ae3-b8b6-2d3eb6a1ae78", - "deprecated": true, - "deprecated_comment": "Use illustrated-message-medium-body-font-size instead" - }, - "search-field-minimum-width-multiplier": { - "component": "search-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 4, - "uuid": "c4b2177d-4468-4180-be27-69d26a51ba0b" - }, - "color-loupe-height": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "0f7e8b9e-99e5-4f5a-ae80-99f65f4c4e51" - }, - "color-loupe-width": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "889e2495-b882-4aa3-8a5b-1a71d44edde4" - }, - "color-loupe-bottom-to-color-handle": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "92beba60-f61d-426a-a864-203dca7244a0" - }, - "color-loupe-outer-border-width": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-200}", - "uuid": "51cd5039-1319-451a-b13f-bb3a218238a5" - }, - "color-loupe-inner-border-width": { - "component": "color-loupe", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "b3900f89-0a7a-4c47-a6d9-ca8aa19b9bfb" - }, - "card-minimum-width": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{card-minimum-width-default}", - "uuid": "55db9f3d-621d-4d23-b3d0-c0f2b0f3f9b0", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use card-minimum-width-default instead." - }, - "card-minimum-width-default": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100px", - "uuid": "3a11949c-f1ac-490b-8416-f4883402d105" - }, - "card-preview-minimum-height": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "130px", - "uuid": "58eb5be8-644f-448e-99b9-94d1fbb93240" - }, - "card-selection-background-size": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "496fd060-70a9-48d0-948f-593b81847199" - }, - "drop-zone-width": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "428px", - "uuid": "2097b13e-94b3-4a06-a0af-c7d8420d1273" - }, - "drop-zone-content-maximum-width": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-maximum-width}", - "uuid": "b8d0db71-9a25-46fc-b77a-037fcf86be8e", - "deprecated": true - }, - "drop-zone-border-dash-length": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a596af57-256f-4445-b91f-36e47bfb2d95" - }, - "drop-zone-border-dash-gap": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "47c15433-53d3-425b-8b87-ea234701f781" - }, - "drop-zone-title-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-zone-title-font-size}", - "uuid": "edc68bfe-7ad3-4a12-81fa-ded8fb6fc2e3", - "deprecated": true, - "deprecated_comment": "Use drop-zone-title-font-size instead" - }, - "drop-zone-cjk-title-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-zone-cjk-title-font-size}", - "uuid": "013387e8-8925-4bb4-a8ee-94420141fde9", - "deprecated": true, - "deprecated_comment": "Use drop-zone-cjk-title-font-size instead" - }, - "drop-zone-body-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-zone-body-font-size}", - "uuid": "bb3fee51-24cc-4643-9f22-fa1592ab2457", - "deprecated": true, - "deprecated_comment": "Use drop-zone-body-font-size instead" - }, - "coach-mark-width": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "296px", - "uuid": "49d1e2be-3aa2-4515-ba54-7f6cf3ab007c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "216px", - "uuid": "b3f14387-44fd-43d3-a152-c8e691ef87df" - } - } - }, - "coach-mark-minimum-width": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "296px", - "uuid": "9f413341-5ed5-4cd0-8348-1c7141dcab8d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "216px", - "uuid": "9004d69e-5726-42f5-a4d0-de09db2de784" - } - } - }, - "coach-mark-maximum-width": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "380px", - "uuid": "07cdeb95-d368-4ed1-ba29-6b9ddeae1396" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "248px", - "uuid": "7f8346b2-f8bf-441d-8412-2a2a28cf4b90" - } - } - }, - "coach-mark-edge-to-content": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-400}", - "uuid": "d5a3e2c7-f717-4436-91a3-3ab34aebd48e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-300}", - "uuid": "11fb0ab2-d6a0-4da8-9c83-c1f6b918406a" - } - } - }, - "coach-mark-pagination-text-to-bottom-edge": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "33px", - "uuid": "d2ff2d4f-058e-412b-9e16-1725d6d29e25" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "cd48e6b7-a4d8-4a22-8d65-531d770a9898" - } - } - }, - "coach-mark-media-height": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "222px", - "uuid": "f6381a33-ac4e-4ff9-86a3-183c857772ad" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "162px", - "uuid": "45b31e46-b878-40a2-a28a-91c480f45253" - } - } - }, - "coach-mark-media-minimum-height": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "166px", - "uuid": "e62c5a76-685c-4b48-98bb-746d6dd4b10e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "121px", - "uuid": "53703e12-f837-4573-bd44-e4727ed2aeaa" - } - } - }, - "coach-mark-title-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{coach-mark-title-font-size}", - "uuid": "331604db-3f28-472e-810d-9010ed2c8e33", - "deprecated": true, - "deprecated_comment": "Replace with coach-mark-title-font-size" - }, - "coach-mark-body-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{coach-mark-body-font-size}", - "uuid": "eba9f466-deda-48d5-a120-14419d5a670f", - "deprecated": true, - "deprecated_comment": "Replace with coach-mark-body-font-size" - }, - "coach-mark-pagination-body-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{coach-mark-pagination-body-font-size}", - "uuid": "df8bc8ae-b6fa-4414-93b7-c89d8097fe11", - "deprecated": true, - "deprecated_comment": "Replace with coach-mark-pagination-body-font-size" - }, - "accordion-top-to-text-compact-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "d6cc404c-af92-43be-88e3-407fdcb6e068" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cfc8d280-5ea0-47f2-bdcb-ae5e93627498" - } - } - }, - "accordion-top-to-text-regular-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-top-to-text-small}", - "uuid": "4f6e49d2-9ab8-4548-aae4-eed45a4003b9", - "deprecated": true - }, - "accordion-small-top-to-text-spacious": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "229fa20e-6d13-40b0-b19f-5cf6386f81ac", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use accordion-top-to-text-spacious-small instead" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "bef73b91-db4f-4532-9f4d-f5a81ead625d", - "deprecated": true, - "deprecated_comment": "Introduced as an error. Use accordion-top-to-text-spacious-small instead" - } - } - }, - "accordion-top-to-text-compact-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "484c9603-07f1-4ba6-b1bf-7cfaec5d1594" - }, - "accordion-top-to-text-regular-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-top-to-text-medium}", - "uuid": "48db5aeb-6752-4267-89c7-48ed84692ec8", - "deprecated": true - }, - "accordion-top-to-text-spacious-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "19c91104-bdf4-4969-8d92-c9cd47d39d13" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "63602a66-5f96-4e6a-8bf0-2ac03321a577" - } - } - }, - "accordion-top-to-text-compact-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a73cc1b0-e31d-4d42-bb89-2e283fe9c59b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "c09ca9bf-1b8b-4ff3-93b7-e9296472dc76" - } - } - }, - "accordion-top-to-text-regular-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-top-to-text-large}", - "uuid": "2021d787-ddaa-470a-a25d-8a57f67b7359", - "deprecated": true - }, - "accordion-top-to-text-spacious-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8e042372-2504-46f2-8486-4d6174293ea2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "e90553f0-d71e-44c2-b70a-89110fab7c6a" - } - } - }, - "accordion-top-to-text-compact-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "6e08e002-56bf-421e-b9f8-9d37b1e80e6e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "5ebd5aab-49b3-49d1-be25-8aff15217eda" - } - } - }, - "accordion-top-to-text-regular-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-top-to-text-extra-large}", - "uuid": "9289aae4-ddaa-4a43-8f00-973dea8350f2", - "deprecated": true - }, - "accordion-top-to-text-spacious-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "5d8877e0-076c-4c9f-b2e9-cdde6942ea61" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "bd300d17-3599-4382-8a7d-1b78700d49e9" - } - } - }, - "accordion-bottom-to-text-compact-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "524cb169-a9c1-4d3c-864e-dba03df6eac9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "af95123b-2ab5-49bb-a070-1ca48b498f58" - } - } - }, - "accordion-bottom-to-text-regular-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-bottom-to-text-small}", - "uuid": "d64620dc-dd4a-447a-8491-d9e144ec8828", - "deprecated": true - }, - "accordion-bottom-to-text-spacious-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "bdc61836-fdcf-4ca0-a277-dd9cb314563a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "56a65744-b195-4faf-ab5c-69a8424593f9" - } - } - }, - "accordion-bottom-to-text-compact-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "c73f4637-7a33-4598-9498-8eb4a9e9e863" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "97b9278a-11d0-4470-99c3-e2d47ca5a714" - } - } - }, - "accordion-bottom-to-text-regular-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-bottom-to-text-medium}", - "uuid": "2d6fa243-5f7e-41a8-840b-27a6432f54bc", - "deprecated": true - }, - "accordion-bottom-to-text-spacious-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "8a3eadad-8b88-4885-b4ca-07360b45d3ba" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "05d8a39d-a0d5-496c-810a-f1244c31b169" - } - } - }, - "accordion-bottom-to-text-compact-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "40f76138-1a69-45ed-8df5-db8bc9792383" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "b4f92e98-694f-46cc-91be-8e0e2d5a17a4" - } - } - }, - "accordion-bottom-to-text-regular-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-bottom-to-text-large}", - "uuid": "f484838e-1f0c-4125-9298-beb4ddc0fd53", - "deprecated": true - }, - "accordion-bottom-to-text-spacious-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "96acbf76-082b-487c-8c47-f0fa173f54d2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "2a6fa386-4eba-44d5-b129-c832264fafd9" - } - } - }, - "accordion-bottom-to-text-compact-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "7a576841-a2a5-4443-9d31-03a12c7a2efd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "70e6d9e7-2a8e-4f0d-96d6-aac7cde829bd" - } - } - }, - "accordion-bottom-to-text-regular-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accordion-bottom-to-text-extra-large}", - "uuid": "8c199212-a745-414c-8f6b-22d2445ade3c", - "deprecated": true - }, - "accordion-bottom-to-text-spacious-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "3ca8a65d-5561-4d8e-a4f2-0b653b42991b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "ba11dc6e-fbd8-46bc-94fd-b4d02f654d2d" - } - } - }, - "accordion-minimum-width": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "47ae1059-6b16-4823-866d-11be0c0e0e8a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "250px", - "uuid": "ae8169fe-1672-4e95-87a5-344ec4d7f163" - } - } - }, - "accordion-disclosure-indicator-to-text": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "27b481a4-0ea9-4e1c-a283-4a799d18d642", - "deprecated": true - }, - "accordion-edge-to-disclosure-indicator": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "614e6448-c0a4-4ad1-b125-f362e3001a86", - "deprecated": true - }, - "accordion-edge-to-text": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "a9641e89-2c2e-49c3-9662-f530ad23a688" - }, - "accordion-focus-indicator-gap": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "318c5cda-be1b-416b-b1b7-b962e5f45c0c" - }, - "accordion-content-area-top-to-content": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "709082c2-71b9-423a-9c93-3b53a9e18da3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "9c651dee-7d77-414d-930b-7c6b78cfed1b" - } - } - }, - "accordion-content-area-bottom-to-content": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "87008eae-491c-4f7d-a13b-83eae517c92f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "48383ab9-1e66-47f9-988b-6f59b7349241" - } - } - }, - "color-handle-size": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "7c7fd224-a9d5-4d97-b3de-fd9e4e076444" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "b81cc6a6-390f-43dc-a6c8-dd335c177da3" - } - } - }, - "color-handle-size-key-focus": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "de9cc5ca-81cf-4bde-bd21-be2402e460c5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "feddbfb7-7f1a-4eee-9cbf-b393aafb7385" - } - } - }, - "color-handle-border-width": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-200}", - "uuid": "8ec9adae-0093-42f4-bd1b-6f3b2279996b" - }, - "color-handle-inner-border-width": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "945e0167-6893-49dd-ab21-886f93f70b92" - }, - "color-handle-outer-border-width": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "fbf27473-7c97-4d94-968d-c3e68e0cd242" - }, - "color-handle-drop-shadow-x": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0", - "uuid": "49499527-3fdb-4a91-a832-0ae0631ba3bb" - }, - "color-handle-drop-shadow-y": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0", - "uuid": "05b11927-d0cd-46a6-ae30-6f268f143d4e" - }, - "color-handle-drop-shadow-blur": { - "component": "color-handle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0", - "uuid": "29e4a8c8-33ba-44b3-952d-26f3fd6ae4f0" - }, - "table-column-header-row-top-to-text-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "de67ada3-eeed-45a2-8d03-91a5b09156ec" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fdc8b7ae-2356-4d49-ba54-0ea471be2986" - } - } - }, - "table-column-header-row-top-to-text-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "0ec68b5a-4251-4727-a689-b10722ce1a43" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "ff3c5329-ccec-4b94-b200-29a377b34380" - } - } - }, - "table-column-header-row-top-to-text-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "40b7bc07-3252-492a-9ee1-37aceeca3674" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "a02666d8-4ae2-42d2-b48e-419d5070e7ca" - } - } - }, - "table-column-header-row-top-to-text-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "05d4bb65-357a-4561-ab33-ea6de390a304" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "265247a7-bbc3-42b8-910d-946e8d04aee2" - } - } - }, - "table-column-header-row-bottom-to-text-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "9388deb6-6a77-49bc-aeb5-9084352c2574" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9cf85eae-ec15-4bb0-ba48-00ec946306a5" - } - } - }, - "table-column-header-row-bottom-to-text-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "7357ba3f-c707-4475-b616-4752776c06d1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "631d14a5-1d2e-4e4a-90e8-146e8a397530" - } - } - }, - "table-column-header-row-bottom-to-text-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fc30c9a8-b098-4edf-b3f4-c666c019b3f4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "e465ee66-392f-469f-a46c-6c98df03b046" - } - } - }, - "table-column-header-row-bottom-to-text-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "0f76ceee-1d19-4c69-9393-09b02e1eede5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "c8bd103d-d952-4649-a7a0-09ae5242ea17" - } - } - }, - "table-row-height-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-75}", - "uuid": "a6dfc911-50fe-46dd-a7a3-cec3b115006a" - }, - "table-row-height-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "b4b86a59-041d-451c-a0be-cc82e997a1d2" - }, - "table-row-height-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "d576b4aa-e3df-4aa9-8260-fecfe6517bde" - }, - "table-row-height-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-300}", - "uuid": "dcc5dd06-bb3d-46d3-adf2-133e5be942b7" - }, - "table-row-height-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-small}", - "uuid": "fd53964b-cf4a-4cdf-b088-418364b1c518" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-small}", - "uuid": "cdbb999d-c2a9-4325-9689-bede2ad3559a" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-height-small instead." - }, - "table-row-height-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "10b892a0-3c97-4af6-8ecc-3359e8cd1302" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "77a26f7c-2f71-4021-a1f2-a2af7c69a111" - } - } - }, - "table-row-height-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-medium}", - "uuid": "1dc88a25-18bc-491a-ab02-2c1ec36f4c1e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-medium}", - "uuid": "72e6564c-2acf-4f77-80d9-b21d2d55a580" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-height-medium instead." - }, - "table-row-height-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "9d6dc5e8-d3f0-4f59-b062-756669ff7217" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "2cf7918c-f84a-4903-a6ba-b110807842ba" - } - } - }, - "table-row-height-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-large}", - "uuid": "3b22a4c7-525c-4482-9e58-19cbe46d318b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-large}", - "uuid": "b92bc058-27ea-4e86-a1a2-e5dbae3c2ee8" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-height-large instead." - }, - "table-row-height-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "d3d9b523-90dc-4532-9cf7-37b568bd6800" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "ff04cae7-7f96-4db2-bf64-948c22d104ff" - } - } - }, - "table-row-height-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-extra-large}", - "uuid": "face2717-9c2c-4e18-9632-4e4a595b1fc7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-height-extra-large}", - "uuid": "b7753c9a-8854-4927-89dd-80d47bff5fa5" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-height-extra-large instead." - }, - "table-row-height-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "d52d3141-27a5-40eb-800f-1a09acd42534" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "c2e3068b-c0be-4615-bbf7-c65e58ef126b" - } - } - }, - "table-row-height-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "cb6f8879-6d73-40ca-9ea4-7eb05b26385a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "ab252e1f-a13a-4630-a6ff-0cfa6e6f0c03" - } - } - }, - "table-row-height-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "697f4b63-14b9-4d58-9d16-b9dfd72ff391" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "572d1c5f-62a1-4bfc-a3e0-520a999545fe" - } - } - }, - "table-row-height-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "0cd072e1-1757-49b1-a985-09ab65feb672" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "e377fd73-62ca-481c-93f6-c62eb35ca720" - } - } - }, - "table-row-height-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "1504ecc5-0bd8-4bf2-ad3c-e073c824cd1a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "6efd745f-2a9a-4eea-a0a3-ebe0d3fbc149" - } - } - }, - "table-row-top-to-text-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-75}", - "uuid": "b7e7808a-16c6-481a-9257-9c1dc4e13b62" - }, - "table-row-top-to-text-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-100}", - "uuid": "02c5faff-dbb4-4633-ae57-413b3666dfca" - }, - "table-row-top-to-text-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-200}", - "uuid": "14437ed2-c60b-40ba-91e6-bed5353fc544" - }, - "table-row-top-to-text-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-top-to-text-300}", - "uuid": "2e8eff8c-60fa-4e0f-ae40-7b9f9b3679d6" - }, - "table-row-bottom-to-text-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-75}", - "uuid": "5eb79adf-f94c-4bf8-9ec9-279f49ce5331" - }, - "table-row-bottom-to-text-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-100}", - "uuid": "d9d8fee2-9e0f-4c2b-8059-f9badb3b6482" - }, - "table-row-bottom-to-text-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-200}", - "uuid": "15e21448-3174-4565-aed7-ab84aa30d7ac" - }, - "table-row-bottom-to-text-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-bottom-to-text-300}", - "uuid": "effa3e3c-eb5b-4c0a-aca9-81331e6a08ac" - }, - "table-row-top-to-text-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-small}", - "uuid": "5e5a6837-34c9-4f01-8769-b66c3f602d1f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-small}", - "uuid": "98014297-14dc-4547-944a-8951c7f6f253" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-small instead." - }, - "table-row-top-to-text-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "52fb10e1-a45e-4b21-9563-b72a6cf8c7e0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "dfa553a2-b771-4a31-9294-3800d2126952" - } - } - }, - "table-row-top-to-text-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-medium}", - "uuid": "8e1448f8-5806-4629-8131-4e8422b26870" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-medium}", - "uuid": "7df1dc32-b96d-41e3-a372-9bcaec7c2ccb" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-medium instead." - }, - "table-row-top-to-text-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ae401c94-c643-446f-a44e-38c9f3104fc6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "0cd86854-57ca-4023-b544-8a4a76418164" - } - } - }, - "table-row-top-to-text-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-large}", - "uuid": "2ed03fb3-fed4-41d4-8a14-f7446bb76486" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-large}", - "uuid": "0108018e-6146-45c9-b032-e3d44dfb8d84" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-large instead." - }, - "table-row-top-to-text-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "0820aecf-0647-4e51-ae40-44130bc86013" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "4d55e632-588b-4e82-90c0-4fa434998d15" - } - } - }, - "table-row-top-to-text-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-extra-large}", - "uuid": "03555438-78f5-429a-a0dd-c6777dc36372" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-top-to-text-extra-large}", - "uuid": "c381a3c4-e0a3-4e86-b279-f51ee6e9e532" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-top-to-text-extra-large instead." - }, - "table-row-top-to-text-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "da7274c6-6f45-4087-b42f-dde7d3ac1af7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "40de40fd-4bae-4a49-8aec-38dad2a1c5fb" - } - } - }, - "table-row-bottom-to-text-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-small}", - "uuid": "90ae4c5b-a49d-40ad-8dd8-b25720c13f79" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-small}", - "uuid": "d3147ee6-dc34-46e2-8379-02d9690ff80a" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-small instead." - }, - "table-row-bottom-to-text-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "56b58d2a-01dd-488b-b6e9-ff49555602b4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "d6100789-7076-403a-b878-7bb204093c52" - } - } - }, - "table-row-bottom-to-text-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-medium}", - "uuid": "c66ff3f2-3661-464c-b722-151f72d03f2a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-medium}", - "uuid": "e80339a8-22c4-4b53-9a4a-a4456f6cab3f" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-medium instead." - }, - "table-row-bottom-to-text-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "f14087ac-db72-43df-a8fa-9c9b03c6a1c9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "6ff9a81f-a2f8-4966-a48b-c8561aa4f833" - } - } - }, - "table-row-bottom-to-text-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-large}", - "uuid": "775139b2-3fb4-4019-8a3e-2377211ed0ec" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-large}", - "uuid": "151bf172-2889-4c98-8f15-5b6cdcb30d4b" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-large instead." - }, - "table-row-bottom-to-text-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "f14b75f3-cb07-48b3-8543-34d80747ff36" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "0de2f0a5-b32a-4f7b-b46c-1a6c25abc1ec" - } - } - }, - "table-row-bottom-to-text-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-extra-large}", - "uuid": "d13d2f2e-9425-403d-a95f-889d67f03425" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-bottom-to-text-extra-large}", - "uuid": "c9ac99be-86c3-4f6c-a2a5-3487041bc95e" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-bottom-to-text-extra-large instead." - }, - "table-row-bottom-to-text-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "8b969d35-01ab-419f-b391-484aad88fd41" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "f25c6bfd-0a0d-4fd1-ab7b-9cd1d13053e1" - } - } - }, - "table-row-top-to-text-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "c0f9a500-3259-4888-ab43-c180c694a24e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "625733b1-78b3-4dd0-9636-71d59c14e013" - } - } - }, - "table-row-top-to-text-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "9893c4bf-aa89-4b46-987f-09432943734a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "cfa36bf7-cce0-4049-970a-8f11c6d60673" - } - } - }, - "table-row-top-to-text-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "a3e22e10-1964-4d4a-8721-2eeddfed6f42" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "769d6bbf-64ba-4c08-8a57-580838de1d48" - } - } - }, - "table-row-top-to-text-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "7824ab63-198c-4ee3-99d7-9b151898eb40" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "90c39289-3112-49a3-8e65-d112c97f7479" - } - } - }, - "table-row-bottom-to-text-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "ad51f205-c2e7-4af5-9301-937594c61027" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "07dd5018-1999-4b95-9a59-fe1c2fcc380f" - } - } - }, - "table-row-bottom-to-text-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2cedf119-a2f6-484a-8bdd-83652a8d6d79" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "8273e28d-20b4-4575-9449-9178af111e38" - } - } - }, - "table-row-bottom-to-text-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "3adc8c4f-32ce-4cd1-8bb1-518b9b267ed2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "4bc11bec-9c86-4a6c-85d1-382c71c1352d" - } - } - }, - "table-row-bottom-to-text-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "3271ab20-8a93-4b5b-a889-7a07d9f7e6ab" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "06ada9fe-ceef-4fb4-88ee-37c2edee5418" - } - } - }, - "table-edge-to-content": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "5e46672f-eab0-4ec3-bd14-68ffa4404ec1" - }, - "table-border-divider-width": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "b6f2536c-deda-409f-8667-a5a99abdfa46" - }, - "table-checkbox-to-text": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "400553db-907c-43a5-8545-92ba212e12b8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "cb7c89c0-9f31-43c4-8427-2e048f549ff7" - } - } - }, - "table-header-row-checkbox-to-top-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "370e9149-aaf5-43cd-a783-90cfa8d37419" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "296d445c-243d-454c-9f5a-146c13d0cded" - } - } - }, - "table-header-row-checkbox-to-top-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "578765e6-b2ec-4bfe-ae28-f24cbee15898" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "2e168a2b-46aa-453f-9ca1-746485216c84" - } - } - }, - "table-header-row-checkbox-to-top-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "5011ae3c-2e72-4891-926e-8de8847e0a47" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "f6648787-3cf1-4af8-aa4f-15669ea1626d" - } - } - }, - "table-header-row-checkbox-to-top-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "8adf3d5f-1024-4eb8-8515-f3b6fd7cc22c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "42a78148-e111-4124-a7a6-d9baa2ca963f" - } - } - }, - "table-row-checkbox-to-top-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "f5c64a03-3750-4c92-afe2-43575bdb1df9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "2444d220-a3d0-4565-a762-02cbc52f828a" - } - } - }, - "table-row-checkbox-to-top-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-small}", - "uuid": "4435c143-a75a-47c1-a629-3574b70247a3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-small}", - "uuid": "a63aa24e-c956-4af5-bf4f-4c5d44bd1e16" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-small instead." - }, - "table-row-checkbox-to-top-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "909ebf8a-eebd-41b6-8fac-8fe31d2bac00" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "365d9c3f-d287-4feb-b020-89434dd29378" - } - } - }, - "table-row-checkbox-to-top-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "4637c01d-66cd-451e-8950-9e72700c80d3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "6ccbecd6-a1c4-4fcf-beb5-2b124ac3e75b" - } - } - }, - "table-row-checkbox-to-top-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "0b12ff10-52e2-4084-9f1b-ee7bc0b50576" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "84f00d87-c0ea-42fd-8477-9fff028bf79c" - } - } - }, - "table-row-checkbox-to-top-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-medium}", - "uuid": "2c8f9b97-f4df-48c2-ab1a-82373d335b83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-medium}", - "uuid": "36505a4f-01b6-4b83-adf1-592818eb2c0d" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-medium instead." - }, - "table-row-checkbox-to-top-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "be965b15-08f8-43be-9953-52151d8c7670" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2ae09505-d43f-4e2c-b8a6-014ccfef5c10" - } - } - }, - "table-row-checkbox-to-top-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "c8a04cab-bfad-4b82-94dc-6c2b4160c7cb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "a57d2d1a-5e0c-4d4c-84eb-dd2339366aad" - } - } - }, - "table-row-checkbox-to-top-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "40acc8c4-81b4-4566-a7ce-7c3d0d8ab5c5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "5fde3b28-c553-4124-be3b-212d1407780c" - } - } - }, - "table-row-checkbox-to-top-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-large}", - "uuid": "559b9fc0-389e-4e2f-985c-8741f218850a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-large}", - "uuid": "2e16e4ef-fec6-41fb-9d96-bc6bb6c88f69" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-large instead." - }, - "table-row-checkbox-to-top-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a8c2b073-495b-402b-b1dc-2337b0e42f37" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "a0fa4e03-c1de-400d-8629-0ae9ffb9b9d8" - } - } - }, - "table-row-checkbox-to-top-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "d4b563c8-9234-4eed-a2a3-7e448a174286" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "cfbd6cb5-c8d3-4908-a77a-7a15cda932fb" - } - } - }, - "table-row-checkbox-to-top-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a1aa1c65-a1e8-40d6-805f-309d5e43d129" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "4069e932-339a-495d-bb36-c89f22af4f96" - } - } - }, - "table-row-checkbox-to-top-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-extra-large}", - "uuid": "9b775e1f-9348-431d-9ba8-bffb19bcbf85" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-row-checkbox-to-top-extra-large}", - "uuid": "2171aee7-d013-459e-a13f-33075090cbe3" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-row-checkbox-to-top-extra-large instead." - }, - "table-row-checkbox-to-top-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "acd6ad6b-bab0-40fb-afbe-5df7eea7efb3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "fb02243f-0490-4eb2-aac2-fa364c6eab59" - } - } - }, - "table-row-checkbox-to-top-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "568ba981-51b5-4443-a427-0f857ff02572" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "31px", - "uuid": "683be05e-f8d4-4910-8d07-20515f19fbbd" - } - } - }, - "table-section-header-row-height-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "89bd3638-bbbb-432d-84eb-e217f9bb0cbf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "2cd8dc05-2f95-45b5-b8a4-0273baf3ba0e" - } - } - }, - "table-section-header-row-height-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "4c9e9bd8-9320-4648-bf2c-bb2db74a63fb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "07beb872-72a0-400e-b434-dd076c9be0a7" - } - } - }, - "table-section-header-row-height-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "553f5ffd-a163-4b33-b96a-5acc08cfb820" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "cc41c4f1-bfc5-4aa5-87af-97f191cc7af3" - } - } - }, - "table-section-header-row-height-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "34b1c98f-7159-4ae0-b299-bf2fc53035c0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "06164331-9a76-4adf-b859-82074df19fbd" - } - } - }, - "table-thumbnail-to-top-minimum-small-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "d9cc50d4-6661-4a03-b850-ed0933f2dabb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "72ebb8a4-9bfb-4ff0-ba3a-232c885931e7" - } - } - }, - "table-thumbnail-to-top-minimum-medium-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "86a1c328-0845-47d8-a189-24a22c1ce053" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "b546eac7-00ad-4ea2-992d-0c4b8d087679" - } - } - }, - "table-thumbnail-to-top-minimum-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "9b0e3ebe-59f6-4970-aa47-06b115f5efff" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "891cf7bc-419a-4b78-8c7e-03685fbf36a4" - } - } - }, - "table-thumbnail-to-top-minimum-extra-large-compact": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "499530d7-7c3c-4bed-a4a1-d4edc2195afe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "29ee801a-95bd-495c-9905-f2fd00ae0e19" - } - } - }, - "table-thumbnail-to-top-minimum-small-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-small}", - "uuid": "db98283d-1f25-4323-9f3a-0555b9670ba6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-small}", - "uuid": "e25b14a7-cb9e-406b-bab6-b27575f00a52" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-small instead." - }, - "table-thumbnail-to-top-minimum-small": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "96d7eb12-7e92-4ee8-988b-8e7e8a7de159" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "43955cdb-afaf-4e59-bb26-3063661141d7" - } - } - }, - "table-thumbnail-to-top-minimum-medium-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-medium}", - "uuid": "12a6fd11-d3a5-4d72-9942-89d828d1d256" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-medium}", - "uuid": "75af7a67-e0ae-4f41-9c70-09babbc587d1" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-medium instead." - }, - "table-thumbnail-to-top-minimum-medium": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "42914d96-ee9f-4ed9-9c7a-9c8ccca68245" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "2268750d-4c5f-46f1-bad7-dec21818bfe6" - } - } - }, - "table-thumbnail-to-top-minimum-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-large}", - "uuid": "de6e6ae5-eae6-4f7a-89be-176674176242" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-large}", - "uuid": "fc7efe7c-ef97-424f-89c2-2211daf44b4a" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-large instead." - }, - "table-thumbnail-to-top-minimum-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "589d6f19-ec7f-4a4f-a622-40d18d7e71f5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "92ade1a0-ea78-4930-82e7-fedafce42aed" - } - } - }, - "table-thumbnail-to-top-minimum-extra-large-regular": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-extra-large}", - "uuid": "17c4c578-d3e1-44c0-bd21-ee4df5cb2027" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{table-thumbnail-to-top-minimum-extra-large}", - "uuid": "b60c33b8-acc1-4af1-b30f-b467054ee417" - } - }, - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use table-thumbnail-to-top-minimum-extra-large instead." - }, - "table-thumbnail-to-top-minimum-extra-large": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "0ae43893-e3ea-461f-a2fe-93239cb3a22a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "17051925-5eda-45a3-8d45-d329e88bf63a" - } - } - }, - "table-thumbnail-to-top-minimum-small-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "9b464ca8-f246-482d-b240-e12e097aaf8b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "b6684bce-531d-420a-befc-b4ad884059fc" - } - } - }, - "table-thumbnail-to-top-minimum-medium-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "1cd90c35-f688-4054-aec4-e1e3b200cfcf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0cb1e46b-039b-46d2-a024-b72ddd82d0b4" - } - } - }, - "table-thumbnail-to-top-minimum-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f1cbc035-b4d0-4593-b563-a107ee2eebb0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e6689bf9-6ecc-4900-b8ad-85b103232e3e" - } - } - }, - "table-thumbnail-to-top-minimum-extra-large-spacious": { - "component": "table", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "127b9225-cbab-42c1-8c86-4f425c7c8e27" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "28a5df8a-0fe4-4410-b804-9a6c26de4440" - } - } - }, - "tab-item-height-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "7b31cf38-5bac-4f79-a4f1-172a4ea66e10" - }, - "tab-item-height-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-300}", - "uuid": "5d2288f4-f383-47fa-baca-0168cb46750a" - }, - "tab-item-height-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-400}", - "uuid": "8abd0b0e-fd6d-4064-9d0e-1ab998fcb0ce" - }, - "tab-item-height-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-500}", - "uuid": "42ed814c-5044-4c70-b82f-b49f8226241e" - }, - "tab-item-compact-height-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-75}", - "uuid": "25f7d9a5-9464-4447-97d9-97839b371f96" - }, - "tab-item-compact-height-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "e8c7c826-548d-4037-b064-3cf699675d35" - }, - "tab-item-compact-height-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-200}", - "uuid": "6d781a0e-e03d-4750-ae4f-67a29d731702" - }, - "tab-item-compact-height-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-300}", - "uuid": "49130d66-edfb-48bd-8648-96c47f40a884" - }, - "tab-item-to-tab-item-horizontal-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "79695d07-21cb-4772-b3f7-b2eb56e7ad20" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "8b5e1596-f13a-4786-b0c7-f01615423922" - } - } - }, - "tab-item-to-tab-item-horizontal-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "31bea7d1-c8c2-4901-9f18-7a5c936d243f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "885a7cc3-8873-4cb7-99e7-b17f42fb48f1" - } - } - }, - "tab-item-to-tab-item-horizontal-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "1f9460a7-2ec0-4353-875c-ee5a6143d00b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "33px", - "uuid": "71bdfd06-4672-464f-b787-9a62137b1763" - } - } - }, - "tab-item-to-tab-item-horizontal-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "c92ec468-0fac-4e12-b1f8-f22d09cb6c1e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "482ed7f6-ba60-4110-85c8-daf5bf352406" - } - } - }, - "tab-item-to-tab-item-vertical-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "da8211ee-8944-447f-a6df-6a16580e1893" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "d51a6c05-67d0-425f-becf-86e783ab3305" - } - } - }, - "tab-item-to-tab-item-vertical-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "7cd196c1-18b1-4dae-abf7-7ef1b531e0af" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "6b6c960f-adcf-48b0-8310-ba12b47f4d9a" - } - } - }, - "tab-item-to-tab-item-vertical-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "9846992c-e27b-4760-8808-7c44cca2cc65" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "c193b2ee-a584-41dc-9ef8-3aebb38fb832" - } - } - }, - "tab-item-to-tab-item-vertical-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "d74ea722-c146-4ad2-ab20-41c332ae1190" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "ea902ec1-25d5-47c3-896a-a95d9ca5bd62" - } - } - }, - "tab-item-start-to-edge-quiet": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f869f703-a850-4c6c-b518-ec8a1b355046" - }, - "tab-item-start-to-edge-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "712e62ce-b869-4097-aee1-82e3b7505e14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "8d413f56-6634-49c8-8d6a-53d0f57f1bbc" - } - } - }, - "tab-item-start-to-edge-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "4d105a45-7403-47f2-ba50-419d822ff879" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "229477d5-e21a-4f4b-a24d-580f0c60eec5" - } - } - }, - "tab-item-start-to-edge-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "c3f8f94b-d456-4aeb-8340-bd5643efe8fc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "2c85fa9a-e854-46f6-bc6b-547692d08290" - } - } - }, - "tab-item-start-to-edge-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "a480fffb-0a23-4893-87ce-730eb925a7cc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "4e0b2015-06c8-41ab-9e2b-3a332a7625ff" - } - } - }, - "tab-item-top-to-text-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "a9a6d785-f06d-4505-89ea-552d47ebe49d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3e155b8c-6cea-4b59-817c-cf71a63e00c7" - } - } - }, - "tab-item-bottom-to-text-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "2d0f71e2-66fc-4f28-bd4b-be41df0948ed" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "e0791360-b505-492b-bf71-dfa393abecfa" - } - } - }, - "tab-item-top-to-text-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "e75e4e96-6d1b-4a86-9059-5c1f6f6ab269" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "a8c455e9-60e5-4838-bc9c-eaf7b39a4bf7" - } - } - }, - "tab-item-bottom-to-text-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "f507e1bd-f08e-42b1-aee6-ea38f9f8a387" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "691db84a-5336-4e45-bf73-ee617057e718" - } - } - }, - "tab-item-top-to-text-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8b9275f5-3e63-459c-97fc-bc03691aa772" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "7e3db5ca-cd32-464b-9a23-9d03e83faa9c" - } - } - }, - "tab-item-bottom-to-text-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "61dd06ac-501e-4725-9d54-cc7a3d9f6586" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "31d1b6b6-721f-4474-ba86-795367399e49" - } - } - }, - "tab-item-top-to-text-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "f1b6b932-748d-4b26-9c03-2bd9d0a40ac6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "174cc6c8-9c0a-44c0-b6c7-ea6d337c819b" - } - } - }, - "tab-item-bottom-to-text-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "5840c3b8-3488-417b-8b33-f3fc667ffd7a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "c63380d4-cc26-4299-b227-af2faedfdc74" - } - } - }, - "tab-item-top-to-text-compact-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "bbcf3eda-4add-4d0d-b5ae-c2e7078e85ed" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "d37488c4-d489-45bd-9086-8157c5204ae4" - } - } - }, - "tab-item-bottom-to-text-compact-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "d87a2ee3-6f7c-4f5e-8191-d35624fc10f1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "f453e51e-3d58-430e-8f17-8b95718dbf34" - } - } - }, - "tab-item-top-to-text-compact-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "2481e3a1-302b-46b8-98c2-e9461dd47d0c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "128757b0-d690-4886-95d5-e9df36182a0f" - } - } - }, - "tab-item-bottom-to-text-compact-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "b44bbd5a-ef03-4e83-a9f5-88c896969d4d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e69dee42-92da-4ca9-9eb8-97a7860adaba" - } - } - }, - "tab-item-top-to-text-compact-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "93af7bac-830c-4460-abe2-0b2d8f786786" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "fd20b444-38ac-4438-a9ef-32474222e45f" - } - } - }, - "tab-item-bottom-to-text-compact-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "8e701e0e-4d7c-4d38-ba6b-1fd2ef5978dc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "091144b7-c63b-4827-840d-741cec01432a" - } - } - }, - "tab-item-top-to-text-compact-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "2bdd22cd-93fe-4cf4-a025-e690ecafb50b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "9694ebdc-cc88-4584-89f5-10a2c8de686f" - } - } - }, - "tab-item-bottom-to-text-compact-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7e3a0369-fcc2-45d7-87ab-9053588713ef" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "3641ac9c-5610-4996-a55d-c2a94b2ff9ea" - } - } - }, - "tab-item-top-to-workflow-icon-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7bd7427d-06a8-4194-a9f4-300fd1a4f547" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "923fd09d-8d08-4465-961f-63ac12014206" - } - } - }, - "tab-item-top-to-workflow-icon-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "aec60dda-9e5a-40c8-8e45-5e1662eab6e3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "820baccf-af24-42a3-9729-99408bc9322f" - } - } - }, - "tab-item-top-to-workflow-icon-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "65e1f735-5f46-4bb3-9c7b-d5f5abab91a1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "4dd99579-949b-4bf9-b022-e8f0c95eae33" - } - } - }, - "tab-item-top-to-workflow-icon-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "2c869793-c10b-40ef-9545-45a8a6b4cbb5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "5afa2636-7d4c-4d83-b9fc-3c5a52ee4646" - } - } - }, - "tab-item-top-to-workflow-icon-compact-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "96c22cdc-aecb-4747-aea9-f140af5ee048" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "b79002d2-bcff-4e8d-a406-e512c7e7d0e3" - } - } - }, - "tab-item-top-to-workflow-icon-compact-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "7788c25c-0ce2-4170-8c5f-2fb1d98d953a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "4fb0520b-8c74-4fb7-b279-a3586a06a57e" - } - } - }, - "tab-item-top-to-workflow-icon-compact-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "fab951e5-1a78-4fb4-8c19-677f5f231189" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "fad964d8-0020-4583-97ab-7d6565d01bdc" - } - } - }, - "tab-item-top-to-workflow-icon-compact-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "dd4769f3-5c7e-491f-9d01-c80af0b561fb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "f310e5d7-7435-41a0-b44d-ececff4844f2" - } - } - }, - "tab-item-focus-indicator-gap-small": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "d23bdd67-d7d0-42df-9575-61502d3692ab" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "5fbc924e-e79e-46c6-8544-c92d7f33bc26" - } - } - }, - "tab-item-focus-indicator-gap-medium": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "cbbaa048-129d-439f-8aae-59153e28216b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "09ee234f-a596-47ba-89df-ab9ebc07ded8" - } - } - }, - "tab-item-focus-indicator-gap-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "6fd78b93-1356-4eb0-9f70-bed00c3eb2aa" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "6c4d8c39-9f75-4c75-94e2-274a69a8f556" - } - } - }, - "tab-item-focus-indicator-gap-extra-large": { - "component": "tab-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "1f12f9aa-19bd-4f77-93db-d737c0538677" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6c0aad05-5224-4ade-913a-3dc5ebceeb62" - } - } - }, - "side-navigation-width": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "d087f995-da55-4c96-89c4-69a9a83e2f05" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "3bc5710f-5fd7-4cce-a3c2-f1e45deee2b2" - } - } - }, - "side-navigation-minimum-width": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "160px", - "uuid": "998bb752-7826-4437-ac18-14e08644e226" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "ad835d79-64d9-4183-ace0-912c87fc2241" - } - } - }, - "side-navigation-maximum-width": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "68210b40-f87e-4059-88c1-e66d1c8cbd38" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "300px", - "uuid": "bcb163a0-0156-4e2e-abfe-b2ac0158f348" - } - } - }, - "side-navigation-second-level-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "2e5df819-ac9e-4b09-bdf6-8b1fe751c8fb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "e77cde34-8f77-4fd1-a1f7-aa6738130902" - } - } - }, - "side-navigation-third-level-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "adfe198d-a39b-47a1-bfa4-77dd0d139803" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "45px", - "uuid": "06140452-b779-4527-ae3a-5f0623a6b97c" - } - } - }, - "side-navigation-with-icon-second-level-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "d254c910-2939-48ce-8547-08cfb346a0db" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "62px", - "uuid": "7d4cd9bd-bfaf-4ad7-9c3b-19f7913f0825" - } - } - }, - "side-navigation-with-icon-third-level-edge-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "62px", - "uuid": "f1d90f18-e114-477f-88ca-548c5ddbc287" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "77px", - "uuid": "f82ab001-808a-4528-bf4a-be27645a28fc" - } - } - }, - "side-navigation-item-to-item": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "47e687e4-c458-4e0b-bd02-7698cc14983b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "be37c65c-88c5-48cd-9554-8240909db98d" - } - } - }, - "side-navigation-item-to-header": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "c5de72a2-931a-429d-ba85-5aaf2e30fbc4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "0f3821f1-6f0e-4325-bfa7-e572768fd468" - } - } - }, - "side-navigation-bottom-to-text": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "8751d85d-a325-4e4e-a7b2-0a3ca94b6b6e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e3f49e5e-f9ec-485c-846e-7a8fda08caea" - } - } - }, - "tray-top-to-content-area": { - "component": "tray", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "74787427-ea2f-4b94-99c0-88454e8be6cf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "794ad497-1725-4a03-a7c9-425eaee3178e" - } - } - }, - "in-field-button-width-stacked-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "24125066-c8d1-4c4a-85b3-493d112d3ca0" - }, - "in-field-button-width-stacked-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "bb8c7ce0-1766-47f9-b30e-36b3b57dc2ea" - }, - "in-field-button-width-stacked-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "4e103763-4310-4aff-980f-652ad023084f" - }, - "in-field-button-width-stacked-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "5f844b3f-e0d7-40f0-a754-a14bee6a0fb4" - }, - "in-field-button-fill-stacked-inner-border-rounding": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "f8ed9a70-58f1-4f1a-9e87-24bca6d7b4e1" - }, - "in-field-button-edge-to-fill": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "5bffe992-2982-49e8-aa3a-e4e93c884f43", - "deprecated": true - }, - "in-field-button-stacked-inner-edge-to-fill": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "56b54ece-0ff3-4957-9c1c-9e7fb992653c" - }, - "in-field-button-edge-to-disclosure-icon-stacked-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8b6a0ab1-4dba-4da2-9c67-3befca0f110e" - }, - "in-field-button-edge-to-disclosure-icon-stacked-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "ccb60cfc-86fe-4959-b4a8-1a45835132c8" - }, - "in-field-button-edge-to-disclosure-icon-stacked-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "6a6e5478-b549-4a39-a7f5-5d3c417464ce" - }, - "in-field-button-edge-to-disclosure-icon-stacked-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "d563157b-f0d7-407d-aaaf-ae1790c75503" - }, - "in-field-button-outer-edge-to-disclosure-icon-stacked-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "9890df35-2d45-4767-9cbe-ee745d09d990" - }, - "in-field-button-outer-edge-to-disclosure-icon-stacked-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "a87d68bb-4249-43cd-947d-bd061baba0ef" - }, - "in-field-button-outer-edge-to-disclosure-icon-stacked-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "acc9c48a-f461-48ff-9f69-0224c4feabc6" - }, - "in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "391e1e67-1677-4f60-a09a-3b49bacd01f5" - }, - "in-field-button-inner-edge-to-disclosure-icon-stacked-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-small}", - "uuid": "6c1330a4-1c89-45a7-b2b1-8cbcaf20b9ab" - }, - "in-field-button-inner-edge-to-disclosure-icon-stacked-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-medium}", - "uuid": "3dd5babb-5026-4f28-89ae-bfe687673f31" - }, - "in-field-button-inner-edge-to-disclosure-icon-stacked-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-large}", - "uuid": "710ebe58-f0d8-4d6b-8974-0be1f2f48dc4" - }, - "in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large}", - "uuid": "c47499c1-b89f-49a7-bbb5-17e83e4b306e" - }, - "arrow-icon-size-75": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "b39b3ce3-6a48-4025-96ef-659b0c9ae9e8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6ff35aff-8a9f-466c-bdd3-dda460ccaee5" - } - } - }, - "arrow-icon-size-100": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c22e7427-617d-4f99-bee7-e3fffba07fc2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "e9b3eb08-2004-4ad3-bb13-a00a6cb536aa" - } - } - }, - "arrow-icon-size-200": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "645d5384-e3a8-4d97-acf6-7cbce00e6537" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "c7df43e2-7354-4f53-b453-dc9bf9060e64" - } - } - }, - "arrow-icon-size-300": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "d0df9084-c6bf-42e5-b830-82906036e397" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "f6116604-efbe-4c6f-b047-29247d632174" - } - } - }, - "arrow-icon-size-400": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "4ced8527-31ad-4e48-9491-806ffc57442a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "35f055a9-8a33-42b2-a316-7e2ef0a4b99d" - } - } - }, - "arrow-icon-size-500": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "31f09728-964b-4598-99a0-d17bf7256e40" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "dcf16e1a-49ea-4888-85b7-012462a60f40" - } - } - }, - "arrow-icon-size-600": { - "component": "arrow-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "5ffece39-b8fc-4a40-a051-0d6c8e253f8f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "2f5f49e5-9aba-4ea0-a8d9-0f0e4c086b89" - } - } - }, - "asterisk-icon-size-75": { - "component": "asterisk-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "49ea57ee-7b12-4a8b-a9bb-a11cf2c9d72c" - }, - "asterisk-icon-size-100": { - "component": "asterisk-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "d04b37cc-2c35-49af-9e92-9993264e405a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "f6f11ca3-b78b-4207-868f-f834c19e8d3d" - } - } - }, - "asterisk-icon-size-200": { - "component": "asterisk-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "49892fb4-a9df-4882-a656-7f9ffb9558bc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "3f1b200b-d341-41e4-ae7b-c981ccb492f7" - } - } - }, - "asterisk-icon-size-300": { - "component": "asterisk-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "93506e7b-f388-4cf8-bd73-e7d96da935d5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "a1cdad1f-6537-4c35-a87b-45d8e161ee46" - } - } - }, - "checkmark-icon-size-50": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "6335cb3a-6ceb-40e7-b241-ff9b36f1277c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "ee52f114-1ab6-430b-bd54-62a82bf3600e" - } - } - }, - "checkmark-icon-size-75": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0545a68c-f273-4348-84cd-9cd365bdb474" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "99224b4e-751a-49ec-8db4-41c8cc4c7bf5" - } - } - }, - "checkmark-icon-size-100": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "9227a279-09f4-457a-b5b3-894f0d6a00df" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "23247915-3cc0-4fdf-b21a-85b97019a219" - } - } - }, - "checkmark-icon-size-200": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "342a360b-d58c-4d7a-9a9d-893600b90785" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "d4e3f5ff-91d6-499e-b79e-b1d85c0c597b" - } - } - }, - "checkmark-icon-size-300": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "b5eff9b7-6987-47a1-a673-c47b7e806370" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "d9b251b2-aa8a-46dc-9a2a-0eb46afea241" - } - } - }, - "checkmark-icon-size-400": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "1a043355-03e6-4322-a462-7d628c23fd06" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "c044459e-12a3-4cdd-9f22-db1d14f34164" - } - } - }, - "checkmark-icon-size-500": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0bf97a2b-5fe6-46ca-8175-8457e8e37d36" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "29f107aa-b8a8-4a09-bf55-9c903c1005ed" - } - } - }, - "checkmark-icon-size-600": { - "component": "checkmark-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "4bacaeea-2d60-46d2-8c98-288b45a79aaf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "b52f4e53-06c2-4746-8063-e2bd99361174" - } - } - }, - "chevron-icon-size-50": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "785a9152-a69b-4164-a8e2-cc201c1f8063" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "6d8ce7eb-a2a2-496c-9ce7-847f4da5fc0c" - } - } - }, - "chevron-icon-size-75": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "43ef1792-b182-419d-966c-a8a2d77dbe03" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "74dbb8c0-2e65-413d-8b52-7215993b5696" - } - } - }, - "chevron-icon-size-100": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "fdd4f0b4-3284-4734-b158-ecd5da36d586" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "c4d6bea8-61b0-45a4-81e0-1e5dd7429463" - } - } - }, - "chevron-icon-size-200": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "2df0f6e0-5821-4f70-9aa9-1cc61f860b53" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "08bbd8dd-bb02-43b9-8e25-7709aee5ff52" - } - } - }, - "chevron-icon-size-300": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "087dcfa2-5bfd-47a4-a67c-dca50e086e7a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "e6fdcac2-9916-45e2-a479-e87d17ece1f9" - } - } - }, - "chevron-icon-size-400": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "7fc3ab50-4856-442b-85f7-7f0e5ab3304a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "ee913eaa-bdaf-44c0-a139-17c5d94b1d4a" - } - } - }, - "chevron-icon-size-500": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2891d3c7-1178-4901-9be9-75efada4a9e7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "95400787-7abb-4cad-830b-8a4042831860" - } - } - }, - "chevron-icon-size-600": { - "component": "chevron-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "c1de2d7d-ef83-4a3f-9407-2f512127244f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "350b77ab-6440-49c1-9b1c-a31c5c4f2f5f" - } - } - }, - "cross-icon-size-75": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "8e597833-1025-4de4-b34a-2f34201487c3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "622d259d-b52b-409a-bf58-04705d8423f9" - } - } - }, - "cross-icon-size-100": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "c9fac273-0c5c-46cd-b774-ad566a540511" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "11f924ca-5542-4864-b153-77363a32d690" - } - } - }, - "cross-icon-size-200": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "5b416331-7910-4d64-9b5f-43fd1832d3a6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "11f65b04-c50d-45bb-86bd-34520aa7db61" - } - } - }, - "cross-icon-size-300": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "f0a65c80-55e8-4ad3-b68c-8429c2fefcf5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "37867ac1-4101-4553-98e1-c8a94fdd2d66" - } - } - }, - "cross-icon-size-400": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "b7e0939f-45ef-4250-8138-2bee9dcb2be4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2fed48b7-dd3d-4c3c-9d5c-3046934f5cfd" - } - } - }, - "cross-icon-size-500": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "1228762d-8c89-4e04-a097-5001d805877d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a865d5f8-4798-4721-ab76-3b51067d6439" - } - } - }, - "cross-icon-size-600": { - "component": "cross-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "825c1a0a-e6a3-41dc-81bb-0fb9b74c0ca2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "e12ac1ec-08f8-4d8b-8c4b-29b74cafe1a1" - } - } - }, - "dash-icon-size-50": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "59e5a3f7-c1d0-4b76-bb7e-2bcddddb83da" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ea331ff6-aa92-4cb4-936a-554a2404152d" - } - } - }, - "dash-icon-size-75": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bfd0ad6e-6656-46d6-aa9f-0940b2c2902a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "1b6d0e50-3ba2-43c9-8b8c-c220364f4434" - } - } - }, - "dash-icon-size-100": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "67464126-edf0-49db-a07c-8641d4a24cae" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "9dc14737-973d-4f6e-8336-2e119c1f1af7" - } - } - }, - "dash-icon-size-200": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "220d2f95-067f-4169-bab7-1b4e202bd1a1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "98ebf128-02f1-4d4b-a686-af8713a0f24b" - } - } - }, - "dash-icon-size-300": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "84f3da59-4c41-4e4e-925c-5fda4222361d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "ad59353e-3ed1-4e76-af87-020cebfa2664" - } - } - }, - "dash-icon-size-400": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "17540c3a-2f85-4771-a4f8-834c70872abb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "d2c45711-be18-4c85-8b23-f4d4f3d0b492" - } - } - }, - "dash-icon-size-500": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "08358bbf-3f8d-48fe-bb48-5dadead4170f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "8d2ad303-095d-4f0c-b0c5-c1ec75b96819" - } - } - }, - "dash-icon-size-600": { - "component": "dash-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "34316272-7bcd-4b44-af20-07c0e1cb8690" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "2e81ce48-452d-401f-a44d-10ca427f031e" - } - } - }, - "side-navigation-header-to-item": { - "component": "side-navigation", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "423b5520-bb29-4179-9145-67305ca75b75" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ad959938-ad69-4137-91e4-fcf2465b223a" - } - } - }, - "divider-vertical-minimum-height": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "299db7d6-66f6-4fcb-890d-223406c85ae4" - }, - "divider-horizontal-minimum-width": { - "component": "divider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "a0093378-0b2c-474b-9fe5-76940fd1398b" - }, - "tooltip-tip-corner-radius": { - "component": "tooltip", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "53fef925-59e3-4df5-9ac2-e2b4d34d9bca" - }, - "switch-handle-size-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "459a9b8c-b59b-4c9c-bc2d-c840d463040a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "8ccf8d0c-13a8-48da-a6dd-790ad728083f" - } - } - }, - "switch-handle-selected-size-small": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "507c0319-747b-448c-8962-5a73097ddfe2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "14b85a33-6501-4366-90d3-e0c5375c522b" - } - } - }, - "switch-handle-selected-size-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "29e7e1f1-d789-4d3c-9288-a139c7ae07ad" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "12f8e465-8241-4b1a-91f8-27e91e5a01bf" - } - } - }, - "switch-handle-selected-size-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "83d7ed85-236a-4266-a57f-d33a5f1785ff" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "eadbe025-3d4a-4874-89ad-b6f667a62837" - } - } - }, - "switch-handle-selected-size-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "272949bf-1503-4e7b-80d5-859c1ce57169" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "63c42c0c-3976-4d4e-a86f-0234a3a72243" - } - } - }, - "switch-handle-size-medium": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "6b885dfc-af50-4c44-8ee5-bf6b03624203" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6263739c-dd33-4670-819a-d3aa0b9056b4" - } - } - }, - "switch-handle-size-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "2216638d-6dc7-4bfa-8364-99fe8eab2b3b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "91764817-6e5d-4273-b856-6751e40eb548" - } - } - }, - "switch-handle-size-extra-large": { - "component": "switch", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cfa167e1-39e9-4d05-b757-bdd616830358" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "daee9fb3-c94c-4f91-90d5-99e40034c1fd" - } - } - }, - "tag-minimum-width-multiplier": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1, - "uuid": "837b2ac3-0adc-438c-b249-b96bac07049f", - "deprecated": true - }, - "tag-maximum-width-multiplier": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 7, - "uuid": "8771f506-a491-4222-be86-0e666ea2c711" - }, - "tag-label-to-clear-icon-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bfc9cd19-e115-4ff2-908d-6cd4725f68bc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "2011748e-f950-4c6e-9eee-1c0d77b7ba36" - } - } - }, - "tag-label-to-clear-icon-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "c964fe64-fcb6-4417-977d-b15880daf164" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ff7424ba-5f65-46ff-b408-4ffb2cfc5035" - } - } - }, - "tag-label-to-clear-icon-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "8533ad58-9e81-4154-8ad1-57213741e814" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "7c1375da-c6c7-42b3-b60e-0ef6724c6303" - } - } - }, - "tag-edge-to-clear-icon-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a27b0e7c-8840-4d08-8f88-39643589c554" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "6f913e5f-debc-4b7d-897d-c2704847c2e5" - } - } - }, - "tag-edge-to-clear-icon-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "e4e422af-181f-47b5-b165-f514a0a6f41c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a2f75bb4-0ce4-4993-9a43-09cd2b7376bf" - } - } - }, - "tag-edge-to-clear-icon-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "896b20fc-c13e-4785-a252-00857208d51c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "b046b12c-5c39-4018-8ccc-9a5cb08eb6e5" - } - } - }, - "title-cjk-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "2be8bfb1-7a0c-452d-9532-ea2eda408b82" - }, - "title-cjk-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "c03b6bc7-76b6-4533-883e-881438de975f" - }, - "title-cjk-font-family": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-font-family}", - "uuid": "6fa83674-af7c-4656-8b33-d3312534ee53" - }, - "title-cjk-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "f421339b-fc3b-4d4e-86b4-65a63584131b" - }, - "title-cjk-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "57a5eaba-935d-47e5-9cc4-cc1da6a330de" - }, - "title-cjk-line-height": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-100}", - "uuid": "999ba22a-87b6-45fe-9e89-9911f34ea330" - }, - "title-cjk-size-l": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "2fcf237b-6988-4c31-a806-f4176b94c2a8" - }, - "title-cjk-size-m": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "d1bccaa7-731f-4df2-a4c3-9dbec33145fd" - }, - "title-cjk-size-s": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "a134fab9-7606-453d-a64f-fd2daa989283" - }, - "title-cjk-size-xl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "99472fda-7d17-45d5-b2ba-0c79a45d628f" - }, - "title-cjk-size-xs": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "f5966933-93a3-4615-a19b-b94d6a0367da" - }, - "title-cjk-size-xxl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "abbc512e-fdce-4025-9d08-5a71692cf523" - }, - "title-cjk-size-xxxl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "223b1966-4dbb-4e89-b508-9191ffedc97c" - }, - "title-cjk-strong-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "55c1dcc1-f296-47eb-989b-ae5e22748869" - }, - "title-cjk-strong-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "ba6356fb-cada-4786-9306-71b940e61ca8" - }, - "title-cjk-strong-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "85e5ba03-3f0a-4245-a26c-ac9c3df23d1b" - }, - "title-cjk-strong-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "93e5a426-7229-46ee-89f6-a84f7084592b" - }, - "title-line-height": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-100}", - "uuid": "e1397d35-0c23-410c-a213-65db1eb4887f" - }, - "title-margin-bottom-multiplier": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, - "uuid": "73a0bd28-7691-47b0-9e9b-62ec22940e63" - }, - "title-margin-top-multiplier": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, - "uuid": "14d9dc6c-28fc-41cf-a1ae-600a150f520a" - }, - "title-sans-serif-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "98fd5c98-b53d-49f0-bce1-705b53ae9ae4" - }, - "title-sans-serif-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "4fe9b508-ff74-4819-8188-e080d814d9ef" - }, - "title-sans-serif-font-family": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "9a65d2f0-87c0-404b-9965-6e4b00efeda8" - }, - "title-sans-serif-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "faa965d6-42c0-40f9-802e-ff0ea69d740d" - }, - "title-sans-serif-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "58a27a2e-58c6-42dc-b860-1a8458966da4" - }, - "title-sans-serif-strong-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "39c10c1e-56c1-4a94-b5b9-a91a2db92050" - }, - "title-sans-serif-strong-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "ab0482d5-ff9a-4c50-876b-ed5accf067a4" - }, - "title-sans-serif-strong-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "871928bc-14ac-465d-b245-c39bcf265a72" - }, - "title-sans-serif-strong-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "ace1f3cb-629c-4172-b64f-a8b1f5afbdcc" - }, - "title-serif-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "cf6281f7-00ef-437e-b89b-d6d774818f0b" - }, - "title-serif-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "3abd6cd1-42f5-4b4b-9732-bb826fe0a740" - }, - "title-serif-font-family": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{serif-font-family}", - "uuid": "b3098f42-d73e-4228-a4f9-9be4b0c46ce8" - }, - "title-serif-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "70955f1b-4124-432e-bd9d-c5b42c890195" - }, - "title-serif-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "23cf3a6f-911c-4e64-8952-7412bc7f4629" - }, - "title-serif-strong-emphasized-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "6359f577-d462-456b-a748-ceecb893b4a2" - }, - "title-serif-strong-emphasized-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "c2a2882b-f048-4580-96c8-76556fccc87c" - }, - "title-serif-strong-font-style": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "6d2f0e78-e527-41c7-8843-af89a9790da6" - }, - "title-serif-strong-font-weight": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "a0367ebf-8cc8-4aa0-80c4-ccf4a03644a3" - }, - "title-size-l": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "0fb9e5ec-e5b7-41e0-8ef4-db9e4e33e060" - }, - "title-size-m": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "6d63a369-4261-44a4-bf8d-a567dffa8ef6" - }, - "title-size-s": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "0babc342-b506-495d-aaf1-20fe9e571e1b" - }, - "title-size-xl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "b5aaaa50-721b-4b41-ad90-345cd995f69e" - }, - "title-size-xs": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "68dac9e8-9b07-4453-8cb2-24ed349d2134" - }, - "title-size-xxl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "d4c4db99-70f2-4c79-8595-4d23407de068" - }, - "title-size-xxxl": { - "component": "title", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-600}", - "uuid": "56152e6a-3058-4467-86a1-34fa2b6f75b2" - }, - "opacity-checkerboard-square-size-small": { - "component": "opacity-checkerboard", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "2537f52b-5cae-4a35-a1f3-b1d4fe89060d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "0916cc84-f46f-45c3-b76d-d7d85d576480" - } - } - }, - "alert-banner-top-to-alert-icon": { - "component": "alert-banner", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "37px", - "uuid": "fa14092c-ef3f-4b11-8bc8-968d22bed6e0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "29px", - "uuid": "7939208b-2f8c-4569-b7cb-1c1bcfc8705a" - } - } - }, - "accordion-top-to-text-spacious-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "696ab6c1-0c23-4868-8d6c-039d6d430d29" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "7bcbaaf1-f1d8-4755-acb2-5f6a45c3b9fe" - } - } - }, - "field-default-width-small": { - "component": "field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "39c39c14-0500-4bf6-a542-967697aaff41" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "976298d3-326f-43da-aa71-bbd2dc1fad3d" - } - } - }, - "field-default-width-medium": { - "component": "field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "208px", - "uuid": "f35ec29c-b8ee-46c9-9c8c-c40171a15920" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "256px", - "uuid": "db379ff6-9ef2-44ee-9fce-32f1a53d68da" - } - } - }, - "field-default-width-large": { - "component": "field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "224px", - "uuid": "c6d08f8b-4e8c-478a-8b08-5b69d2da1a5e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "272px", - "uuid": "88dfd273-555a-49bc-9271-a63ad45964e2" - } - } - }, - "field-default-width-extra-large": { - "component": "field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "23090def-780a-48cb-b644-8edd55189d46" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "068a256a-8dfc-4616-bdc1-8895441ba90b" - } - } - }, - "tag-minimum-width-small": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "d3327dae-cc93-4099-ad75-b5a4193af8e4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "3b9e5d81-e49a-4080-ac53-094e0f7eb151" - } - } - }, - "tag-minimum-width-medium": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "9b373ba1-7381-4360-8730-bd91afacbfa7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "40485b19-e1ac-4981-a17c-bb6e264c730d" - } - } - }, - "tag-minimum-width-large": { - "component": "tag", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "33px", - "uuid": "234b3886-77eb-4ad5-9d19-40d801a54617" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "b2788159-dd2d-4f94-9282-d8cdbba41807" - } - } - }, - "combo-box-visual-to-field-button": { - "component": "combo-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "6c3c7201-2f5b-455a-bcbf-5e3d783887bf" - }, - "in-field-button-edge-to-fill-small": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "0171b422-021a-4f25-bbe3-7d6ca6459166" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "a2143caf-07e6-4d45-977c-3d79d69c335e" - } - } - }, - "in-field-button-edge-to-fill-medium": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "86f41898-b794-4f7e-ae41-9eb84c2c7a5b" - }, - "in-field-button-edge-to-fill-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "44e97486-53ce-4bb0-a778-0f9262dfe27e" - }, - "in-field-button-edge-to-fill-extra-large": { - "component": "in-field-button", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "4b212f73-7a28-4d95-b06b-6d3f0d7e5cf9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "61cf3878-48bd-4785-ad71-ec35c4f99656" - } - } - }, - "in-field-progress-circle-edge-to-fill": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "b49756fe-40d5-439a-ba07-4e5eb07e7cc5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "1263a125-9e9d-4eb4-8b71-024899dcf623" - } - } - }, - "in-field-progress-circle-size-75": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "dbb4f6bf-ddfb-4184-babe-63815cad7202" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "c43c89a6-2ae5-4d29-99ab-2c64e153d4e7" - } - } - }, - "in-field-progress-circle-size-100": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "ef5f40e8-d6e9-45a7-b8cf-1689e44e713c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "c522b33c-93b8-491f-b4df-c241f5b5ade8" - } - } - }, - "in-field-progress-circle-size-200": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "86567889-978e-4dfe-8412-42c8f33c3f44" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "85377238-7488-42e0-99ce-f4fd73316d24" - } - } - }, - "in-field-progress-circle-size-300": { - "component": "in-field-progress-circle", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "32d0a47d-c4bb-4955-aef0-28e07f429b92" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "9e740bd1-b98a-416a-be82-20e222cab3b1" - } - } - }, - "alert-dialog-description-font-size": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-m}", - "uuid": "eda300de-5f0a-42e9-9880-9244a45d4e7d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "e969f730-9eea-4a35-8981-2804d660c23e" - } - } - }, - "alert-dialog-title-font-size": { - "component": "alert-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xxl}", - "uuid": "749fa425-de12-464d-a1e2-80eb135d3ea6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "c84328d2-578b-4a36-9065-6c6a9e1d311f" - } - } - }, - "coach-mark-body-font-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-m}", - "uuid": "4b88a0d5-2d07-4e63-afa6-cdd611f0a8c1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "73959c3d-afc2-4f6e-bd34-0399bf3b5b73" - } - } - }, - "coach-mark-pagination-body-font-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "06ae2458-8490-4741-8a02-97f60cc01592" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "4f8c99a5-0942-41b0-ac41-923ea9ca2bf2" - } - } - }, - "coach-mark-title-font-size": { - "component": "coach-mark", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-m}", - "uuid": "5b132698-4ee2-40e4-83c0-9ad80f36f5fd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-s}", - "uuid": "45855bc5-3b86-49a9-b443-7be9aa763c4e" - } - } - }, - "standard-dialog-title-font-size": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xxl}", - "uuid": "d4e81ac4-8855-4ac4-b28f-ad054f74e517" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "02c75ba4-2c9f-45f3-8e74-c9a1065142ac" - } - } - }, - "standard-dialog-body-font-size": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-m}", - "uuid": "84aa108a-3c23-494f-b9c0-da64acdbeb79" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "f33e2125-0424-4329-bf60-ec42a15c36bc" - } - } - }, - "standard-dialog-maximum-width-small": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "400px", - "uuid": "c00d9b06-f198-4cd5-9b69-ed3796314dab" - }, - "standard-dialog-minimum-width": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "27f2bc13-53e4-4416-8592-a2a44909d22d" - }, - "standard-dialog-maximum-width-medium": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "480px", - "uuid": "1c886eb9-f651-42ce-baff-9b3996077f92" - }, - "standard-dialog-maximum-width-large": { - "component": "standard-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "640px", - "uuid": "5ec703d4-19d9-4be5-976f-e4c1966c0d3d" - }, - "status-light-text-to-visual-75": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-visual-75}", - "uuid": "ea98b9b0-20b5-4f19-aa4f-375559b1362a" - }, - "status-light-text-to-visual-100": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-visual-100}", - "uuid": "752a84f5-cbb7-4d18-85ca-fc913a061bb5" - }, - "status-light-text-to-visual-200": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-visual-200}", - "uuid": "d3e53f14-b91e-4d10-8508-17360ae5620e" - }, - "status-light-text-to-visual-300": { - "component": "status-light", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-visual-300}", - "uuid": "ee780be7-b32c-4da8-a6bc-fc0897799537" - }, - "link-out-icon-size-75": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "1e41d09e-684e-4f87-ae85-4bc95f958c0e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cb87186b-47aa-4baa-a47d-91b5e9f7965e" - } - } - }, - "link-out-icon-size-100": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cc8ad91e-22f2-4f59-ae8c-99d2c1433d6e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "083c11fe-1e10-46f5-9e71-3fcc2567fe2d" - } - } - }, - "link-out-icon-size-200": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "f78418a4-5b55-418b-9c90-7f388d5bb275" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0062482b-0339-4632-9b40-89b5f1a440cf" - } - } - }, - "link-out-icon-size-300": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "66e386cd-e3b5-424b-b89b-27fe9aaf5ad1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a063db0d-81cf-45e0-988e-2224307560ba" - } - } - }, - "link-out-icon-size-400": { - "component": "link-out-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "54227cbe-b962-46de-b40a-d1ea759425a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "1bcd281a-38b0-4e83-8667-536351dd14ec" - } - } - }, - "menu-item-label-to-description-small": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "66d57402-d7db-45df-8872-fd362014bcbe" - }, - "menu-item-label-to-description-medium": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "608fd592-fff8-435e-88e2-846bd34cc235" - }, - "menu-item-label-to-description-large": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "4ce8b4db-72f8-411b-baad-8b66c0496182" - }, - "menu-item-label-to-description-extra-large": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "5543ede1-4e55-44f5-920f-288ee96e06ca" - }, - "menu-section-header-to-description-small": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "ac039575-7c1f-4733-a310-b39cebf83b82" - }, - "menu-section-header-to-description-medium": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "4211feff-12af-4288-b86d-4c66a5a55b8f" - }, - "menu-section-header-to-description-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "2899d6e1-acad-453b-ad65-1e6a6e380363" - }, - "menu-section-header-to-description-extra-large": { - "component": "menu", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "c9e46b75-f1d8-4b19-a258-b8b0a0e66484" - }, - "menu-item-top-to-thumbnail-small": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "456d5283-eb93-4b8d-b796-7f181ebcec04" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "af422766-3185-47d6-adba-31b1e97b92d9" - } - } - }, - "menu-item-top-to-thumbnail-medium": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "f71c4487-3c1e-4204-b631-b0658a6b5e12" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "62815f67-4e23-43f9-93d2-f29d1688cddf" - } - } - }, - "menu-item-top-to-thumbnail-large": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0d468b92-74df-4044-8af3-c867eebbf370" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "64b2f613-35b2-46a8-be7d-c39c314840b9" - } - } - }, - "menu-item-top-to-thumbnail-extra-large": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "06a6c13b-2d58-4102-b169-073eed5599e6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "dfeef197-57b9-41a1-b759-3c782a64f2f3" - } - } - }, - "menu-item-background-opacity": { - "component": "menu-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0", - "uuid": "6f464689-0b87-4f38-b9a4-e5015acdd0d7" - }, - "illustrated-message-small-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-m}", - "uuid": "f21da7b8-ba19-43e0-96e5-f9e60476ef6e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-s}", - "uuid": "ef8d0abb-9652-4db3-8f1d-506c03e5e115" - } - } - }, - "illustrated-message-small-cjk-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-m}", - "uuid": "9a6cf390-ca10-4242-a7d4-da4c9acc4058" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-s}", - "uuid": "a144455d-6bb3-43d4-828c-6b6f67ae9c51" - } - } - }, - "illustrated-message-medium-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "8e2d1a48-937c-4493-9624-5ca8383f74bd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-l}", - "uuid": "65961091-abdb-4155-9887-4aebe857c4fd" - } - } - }, - "illustrated-message-medium-cjk-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-xl}", - "uuid": "ee763c7d-b98f-4f2e-9fc4-764cfa2ac53f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-l}", - "uuid": "1cb0c913-f4ec-478c-b92d-4c9d78875362" - } - } - }, - "illustrated-message-large-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xxl}", - "uuid": "abfe147d-04dd-45bd-8e86-eae6249e1745" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-xl}", - "uuid": "05104cea-7882-4f80-a994-3e072d29eec2" - } - } - }, - "illustrated-message-large-cjk-title-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-xxl}", - "uuid": "1929c819-5333-43ad-ba6c-fcf236270251" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-cjk-size-xl}", - "uuid": "e3c5a7ed-94f9-4938-9b92-b411e971af20" - } - } - }, - "illustrated-message-small-body-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "fad078e5-1791-4003-994d-3567162d8233" - }, - "illustrated-message-medium-body-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "ca0d9e22-35a8-4ae5-99ee-29cce3ffa0bd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "32b359dc-b489-4476-afbd-1c04e6b0ff0e" - } - } - }, - "illustrated-message-large-body-font-size": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "0208e74a-4a86-42e4-a5d0-f931715c293b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "f4956b2c-dfda-4449-850b-36cf3a82ea09" - } - } - }, - "drop-zone-title-font-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-medium-title-font-size}", - "uuid": "07564dd0-3628-42e1-8a29-253448a8c75f" - }, - "drop-zone-cjk-title-font-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-medium-cjk-title-font-size}", - "uuid": "56fc89be-658e-4c5c-9b8e-7ac6f7d7db75" - }, - "drop-zone-body-font-size": { - "component": "drop-zone", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{illustrated-message-medium-body-font-size}", - "uuid": "644593be-82da-4ae4-ae57-fabebd4513ca" - }, - "breadcrumbs-separator-to-bottom-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "ba160ed7-e66b-4dd1-bef8-e91fe9b05d2c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a1c90c6d-851d-495f-99cc-bbeb0c6fdd4f" - } - } - }, - "breadcrumbs-start-edge-to-text-large": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "04141c6f-50ff-4301-a7b5-315bbd9cac18" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "1d7bd78d-4469-4385-89e7-fcd574cc6368" - } - } - }, - "breadcrumbs-start-edge-to-text-medium": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "941f9040-ddb7-419c-ac05-dfa24effa055" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e87a054b-dceb-4462-a8fc-733700cc0f79" - } - } - }, - "breadcrumbs-start-edge-to-text-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "3dd655e7-f0d4-4fa4-a885-4a7aff9510fd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "60a75c05-a9cd-4ecf-89e5-0bca9e137e9f" - } - } - }, - "breadcrumbs-top-to-separator-large": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "2e8091e4-f60b-438c-bcbb-111eb243900d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "2e12202a-8099-4a4d-b06d-703deaf20862" - } - } - }, - "breadcrumbs-top-to-separator-medium": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "fdbf3b4b-7d6e-4464-8514-17c1b4790db6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "fcbd2bcb-7f53-4219-9d6b-89c01fd50da7" - } - } - }, - "breadcrumbs-top-to-separator-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "96d7dff4-4b3d-433a-8f83-8f55a1514812" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "4b7eab87-e6a8-40f6-a071-5aff25493f2f" - } - } - }, - "breadcrumbs-truncated-menu-to-separator": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "963bd7ed-cfc9-4a93-a8a6-a2340ec6479f" - }, - "breadcrumbs-text-to-separator-large": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "3e19f21e-0c87-4eca-bc21-d4c13bc984ef" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "25d8256e-b05f-43e8-bbc3-5b60c24be29c" - } - } - }, - "breadcrumbs-text-to-separator-medium": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "74d2cda7-385e-4145-8a3e-26065db5e302" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bf2e3518-154e-4975-b9fb-acbf60b7e154" - } - } - }, - "breadcrumbs-text-to-separator-multiline": { - "component": "breadcrumbs", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "0d4dd9ba-5b01-432d-a7b2-d95947cfc43d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "fbf763fe-9e35-4cdc-a5ed-9f90e03d23bd" - } - } - }, - "contextual-help-body-font-size": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-s}", - "uuid": "393e9a11-77f6-42a7-973b-34c673ad8afb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{body-size-xs}", - "uuid": "1d817b1e-7916-4443-b04d-aa232b089f67" - } - } - }, - "contextual-help-title-font-size": { - "component": "contextual-help", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-m}", - "uuid": "16ee4dfd-afbe-482b-943e-03e2614037dd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-s}", - "uuid": "965f0854-0f3c-4d6e-9e21-54542ecf1a17" - } - } - }, - "coach-indicator-collapsed-ring-rounding-increment": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "252dc667-b847-4295-8669-3e2f4d408f51" - }, - "coach-indicator-expanded-ring-rounding-increment": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "770aa608-80a3-4715-894b-c1d85a1b0c5e" - }, - "coach-indicator-collapsed-ring-thickness": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "fff486aa-26a4-4b41-91a7-762f8b29d47a" - }, - "coach-indicator-expanded-ring-thickness": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "09c84cdf-0c82-4201-8203-9eb05d8b9486" - }, - "coach-indicator-collapsed-gap": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "adb8eace-decc-4bef-93e9-ff2cb27e9ce6" - }, - "coach-indicator-expanded-gap": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "b25c696f-c6c3-45af-bdc9-fe3a046067f3" - }, - "coach-indicator-opacity": { - "component": "coach-indicator", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.2", - "uuid": "6fa9bbc8-4c96-45a4-b133-bb2556a003de" - }, - "accordion-content-area-edge-to-content-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "b7b23a23-abca-4e96-8c6f-d2b5b4c79d99" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "782d9dfd-413f-4031-8431-be9b638c69b6" - } - } - }, - "accordion-content-area-edge-to-content-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "66fbf171-ff30-4376-9026-686ae3e2fc70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "80419f6a-d93a-4cc0-883a-833e4717e28f" - } - } - }, - "accordion-content-area-edge-to-content-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "755f796f-bcb6-466c-b4f2-b10b0f819bba" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "f4d133f7-d444-4ddc-907f-9d75ff621a03" - } - } - }, - "accordion-content-area-edge-to-content-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "c26ba15a-cb44-44b2-8423-baf52b1b42db" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "c9aaff95-a17a-408b-bb55-1c9026314c8b" - } - } - }, - "accordion-disclosure-indicator-to-text-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "e6cb7eb7-afa3-441f-9f22-5ca8eec66749" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "f009b7a8-95ca-4b39-92c3-f7656cf2e429" - } - } - }, - "accordion-disclosure-indicator-to-text-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "e28ca787-7457-4f40-9188-039347047c83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "f62edd6d-b833-4aea-8e03-ddd1dfccc464" - } - } - }, - "accordion-disclosure-indicator-to-text-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "802cef85-0ad5-417b-953f-66a812e6637e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "fae0b204-0198-465a-aa98-c7b4224e4c48" - } - } - }, - "accordion-disclosure-indicator-to-text-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "90fe1ad4-76a8-4b02-a036-af6d4397334e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "aafcb612-0828-48c7-af1c-39870aafd44a" - } - } - }, - "accordion-item-to-divider": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "9a2c9dee-7acf-4083-9c66-685454444f8c" - }, - "meter-thickness-medium": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "6e404f16-900e-4dd2-8705-3c9077f52240" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f9a81245-4bcb-4fca-8a4b-04ac78d9d1ca" - } - } - }, - "meter-thickness-extra-large": { - "component": "meter", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e5ac2b35-da1d-4936-baa8-498705c9529c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "272738b2-a274-4e2e-8582-9c2cc7962a85" - } - } - }, - "thumbnail-opacity-checkerboard-square-size": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "0322f848-009a-45c4-ad4a-17d8f7e41995" - }, - "thumbnail-corner-radius": { - "component": "thumbnail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-75}", - "uuid": "13681294-e3c6-4898-a17e-943932a53c08" - }, - "action-bar-top-to-content-area": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-200}", - "uuid": "cfa41a43-8fb2-4c3b-a2df-f8658c87b31b" - }, - "action-bar-bottom-to-content-area": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-200}", - "uuid": "3116a00c-0ad3-4ae6-9fbb-f9b5624a2708" - }, - "action-bar-edge-to-content-area": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-100}", - "uuid": "a9fc8786-060e-4663-9381-211621240b2f" - }, - "action-bar-close-button-to-counter": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{text-to-control-50}", - "uuid": "bc54e89f-6740-4004-891e-c515f8f79693" - }, - "action-bar-counter-font-size": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "66540ddb-ec74-487f-8e09-a37b436694b5" - }, - "swatch-group-spacing-spacious": { - "component": "swatch-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "b80ef303-eae7-498f-b172-73a098be0f0b" - }, - "swatch-group-border-opacity": { - "component": "swatch-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.2", - "uuid": "19968846-dad0-42eb-b6a8-af65f3a910ff" - }, - "avatar-border-width": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-100}", - "uuid": "2d4cd3ad-cc2c-4ad5-9475-c73882c5201e" - }, - "avatar-group-size-50": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-50}", - "uuid": "d55ab204-ee6c-47e3-a21b-25543c8fc36b" - }, - "avatar-group-size-75": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-75}", - "uuid": "420c8327-fa41-4919-9e01-4d58178d739b" - }, - "avatar-group-size-100": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-100}", - "uuid": "1c869018-8c56-4c10-acea-7fc6e838aa09" - }, - "avatar-group-size-200": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-200}", - "uuid": "590ef940-55ea-4690-a403-e4b47a185a64" - }, - "avatar-group-size-300": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-300}", - "uuid": "5e60d980-21db-4bbd-b321-a20808571411" - }, - "avatar-group-size-400": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-400}", - "uuid": "80e446ee-0091-4c6e-9158-e15fbc6207a4" - }, - "avatar-group-size-500": { - "component": "avatar-group", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{avatar-size-500}", - "uuid": "4bf63b03-931b-47ce-bb1a-4bd4e2cd82c1" - }, - "avatar-to-avatar-50": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "4328bc86-01d4-4467-b99a-33099effe781" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-5px", - "uuid": "b395e912-9061-44bd-ab77-840cde0f3e80" - } - } - }, - "avatar-to-avatar-75": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-5px", - "uuid": "4970f7de-506d-4e2c-9412-8ebd268c5da3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-6px", - "uuid": "889a7ebb-86b7-4615-87ee-e75aa4b48d60" - } - } - }, - "avatar-to-avatar-100": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-6px", - "uuid": "273888c7-abc9-4af8-802a-e8ecf864f2fa" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-7px", - "uuid": "bacd5b38-1eed-49d6-9513-f363315f2a23" - } - } - }, - "avatar-to-avatar-200": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-7px", - "uuid": "629d5ce9-487d-4ee9-be0d-5ff24c66d174" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "7815e63c-1d4f-4ee0-a656-a6053595ad59" - } - } - }, - "avatar-to-avatar-300": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "e345324b-640f-4f45-88c6-4765ca97ea22" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-9px", - "uuid": "04481b80-1c05-416a-95cf-c0c85147ce2e" - } - } - }, - "avatar-to-avatar-400": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-9px", - "uuid": "63c5deff-94da-4981-ba9a-fd46b4372830" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-10px", - "uuid": "5c733ac6-d7b9-44f0-8827-1d8232ca5332" - } - } - }, - "avatar-to-avatar-500": { - "component": "avatar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-10px", - "uuid": "8b6b74b4-e7c3-4f7c-a2b6-f410fcc17a83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-11px", - "uuid": "c980c4f4-f2c5-4963-873e-de275f3353d1" - } - } - }, - "code-cjk-size-xl": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-xl}", - "uuid": "a2e258a0-21f6-44d7-9bfe-0052620e5ac2" - }, - "code-cjk-size-l": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-l}", - "uuid": "15e8593b-1b86-40e0-ae88-fcc587e24373" - }, - "code-cjk-size-m": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-m}", - "uuid": "69436fba-18a7-4a28-b6c5-683a8838917c" - }, - "code-cjk-size-s": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-s}", - "uuid": "80c3d9ab-39d1-4329-a88f-bb84c3afd17f" - }, - "code-cjk-size-xs": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-size-xs}", - "uuid": "6b577e2a-09c0-42bb-8b94-42034df63036" - }, - "standard-panel-width": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "260px", - "uuid": "41cd9d92-4d69-4aaa-9c95-e980aa5eb992" - }, - "standard-panel-minimum-width": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "37ab7428-8175-409f-8e74-55e51a962139" - }, - "standard-panel-maximum-width": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "400px", - "uuid": "11400ef3-c995-41bc-8a9d-eb389d95f360" - }, - "standard-panel-top-to-close-button-compact": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "66f385cd-b60b-42dd-bfdc-aba2db6e35a2" - }, - "standard-panel-top-to-close-button-regular": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "968a056e-4397-4a71-91f1-a0f1ebb6f751" - }, - "standard-panel-top-to-close-button-spacious": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "96572147-20a9-4089-9904-0a0efa42a5af" - }, - "standard-panel-edge-to-close-button-compact": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "6364d657-804c-4753-832d-09bfdf5ad36a" - }, - "standard-panel-edge-to-close-button-regular": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "f2c9847f-2c3f-4e2e-94ed-59b6cc58f34a" - }, - "standard-panel-edge-to-close-button-spacious": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "b9c04337-a6f5-42db-9bf9-a761c0d9f876" - }, - "standard-panel-title-font-size": { - "component": "standard-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{title-size-s}", - "uuid": "ce8278ea-da1b-4a42-bf7d-4018c9e9d18e" - }, - "illustrated-message-horizontal-maximum-width": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "535px", - "uuid": "4413ee4d-86b1-4d88-b2ee-64c0939698b9" - }, - "illustrated-message-vertical-maximum-width": { - "component": "illustrated-message", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "380px", - "uuid": "95c055b0-f688-4405-8426-1b2302e32ebd" - }, - "bar-panel-width": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "c0e0d08b-e22f-44d3-b547-6bd173d00e1b" - }, - "bar-panel-minimum-width": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "db0862a7-3a92-4c24-a06a-d20acfd94e1b" - }, - "bar-panel-maximum-width": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "00c313bf-61be-4f5a-9d26-3e9f1ea0e950" - }, - "bar-panel-spacing-extra-spacious": { - "component": "bar-panel", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "5fbb857b-5703-4e8e-bba4-86720ca261bd" - }, - "rating-top-to-content-area-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-75}", - "uuid": "8cf415d3-57f2-41c6-a175-40c75b58a79e" - }, - "rating-bottom-to-content-area-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-75}", - "uuid": "360ab235-93bf-482c-9ff1-387d69f018e1" - }, - "rating-edge-to-content-area-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-75}", - "uuid": "a2ad2062-a115-4abb-859b-f9d307b44744" - }, - "rating-top-to-content-area-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "6b99f788-336d-4159-819e-29050f8b571a" - }, - "rating-bottom-to-content-area-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "897117a7-4e29-4fc2-85b4-1b2aa882ff7b" - }, - "rating-edge-to-content-area-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "888c8501-b709-4b72-9d19-504e3b0befb4" - }, - "rating-width-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "104px", - "uuid": "b54da2cd-9d1e-498f-a52c-7be5e825c2a2" - }, - "rating-height-small": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-75}", - "uuid": "7e0c3f30-31f5-4fa2-b353-a739c904d796" - }, - "rating-width-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "128px", - "uuid": "91a0e740-8f77-4d4a-b34c-d673afc1093b" - }, - "rating-height-medium": { - "component": "rating", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "d7f24ef9-eb71-45e8-96a1-7e48ddc56964" - }, - "select-box-horizontal-minimum-height": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "3d6fc9f4-1f22-4e1d-a602-e00079dd2057" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100px", - "uuid": "c731f83e-152b-44ad-818f-460dc1d29228" - } - } - }, - "select-box-horizontal-width": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "368px", - "uuid": "04fcbf2f-ffe1-4f26-99d1-59a3deb053ed" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "460px", - "uuid": "d406a096-aea6-4e39-818a-52d82b3c5031" - } - } - }, - "select-box-vertical-height": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "170px", - "uuid": "fe57d82a-5365-441a-9bd5-8f2c71c2ba83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "212px", - "uuid": "2a6a9aef-2c75-43e4-856d-c797900c713f" - } - } - }, - "select-box-edge-to-checkbox": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "70a20970-ebd9-48a7-8324-44d352f79978" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "f028974a-20d1-4e03-af77-921b1dfc2469" - } - } - }, - "select-box-horizontal-end-to-content": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "a99ea589-33e4-4196-8c49-77a0d0d522ed" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "9c78208b-bb4f-4cda-82f0-a38f68d33172" - } - } - }, - "select-box-horizontal-illustration-to-label": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "b98f3e7a-d30a-49f7-80fd-d793554eaf6d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6c8580ac-c2c4-4d62-8a9d-b0498dd0b69b" - } - } - }, - "select-box-horizontal-label-to-description": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "94b742aa-bec9-43bc-81ad-a913191481d1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "255479ac-24f5-4128-bba0-258ec68026af" - } - } - }, - "select-box-horizontal-start-to-content": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "9ab0ef93-1293-48e9-911c-2ea32f15b44b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "009afde4-ea54-4025-aaa0-7df7e5e50229" - } - } - }, - "select-box-horizontal-top-to-content": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "736900ff-ea3c-4c5b-85b6-080524cb78fc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "75f16efb-6905-4091-bd87-bd08494a92bf" - } - } - }, - "select-box-top-to-checkbox": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "237b6422-31fd-4729-98f1-451b7bd27a4d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "011f2ccf-b2fb-4da8-94c4-29fc0a5b9a71" - } - } - }, - "select-box-vertical-edge-to-content": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "ef9b9dd4-5e45-4c1a-8874-f097fd892352" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "e807df92-1c13-4394-ace9-cb998ada9395" - } - } - }, - "select-box-vertical-illustration-to-label": { - "component": "select-box", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "f6a52618-bf5d-4a9d-ac95-e5a6d002851d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "8a805540-3b26-4b50-8a0d-0c7beb13885e" - } - } - }, - "slider-control-to-field-label-editable-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "882a70c2-afd4-483a-adf5-5437dd34fcba" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-8px", - "uuid": "5816b3c6-937c-47b8-9bdd-ebc69224831b" - } - } - }, - "slider-control-to-field-label-editable-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-12px", - "uuid": "4cdfa762-9580-4fff-a396-1538666ef8d7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-16px", - "uuid": "a5326ae9-27b6-450c-b88f-d4b89a06502a" - } - } - }, - "slider-control-to-field-label-editable-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-16px", - "uuid": "c849ce3c-0e3a-4882-a061-021eed8d55d8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-20px", - "uuid": "657325f5-74e4-4d39-8ba4-f480c141da79" - } - } - }, - "slider-control-to-field-label-editable-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-20px", - "uuid": "e82d0719-2d65-438f-a9a6-f61c80a80376" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-24px", - "uuid": "23f0c597-a889-4653-8870-df86101fe544" - } - } - }, - "slider-control-to-field-label-side-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "2d3a0c09-3f66-42da-8276-a7dabc6c4cd3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "31e670e4-2400-4705-a0e8-cef9cbca9869" - } - } - }, - "slider-control-to-field-label-side-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8d294c76-353f-42f0-8aa9-8c489a90ac14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "5d470123-0f06-4319-b299-b8f5d80c7c94" - } - } - }, - "slider-control-to-field-label-side-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "dff9511c-7b97-4cfb-abff-953be7228e28" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "095779c9-64fc-4a51-8a0a-f8b452fb3650" - } - } - }, - "slider-control-to-field-label-side-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "4dc8268e-42c5-4c3c-a17a-fe0f7227facc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "19036695-7f27-4c08-babc-45226b7bf920" - } - } - }, - "slider-control-to-text-field-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "52edd5bd-f859-487b-bc89-db09fa523025" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "526c8840-b08c-401b-8242-32c1cb574b58" - } - } - }, - "slider-control-to-text-field-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "600b162b-5a37-4c01-9fa2-05df934433cc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "a99118fc-9837-4460-b4ae-9c7ffaa20ce0" - } - } - }, - "slider-control-to-text-field-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "281d3ab8-c760-4240-a349-2b9986eeecfe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "d20985d9-2d46-4744-84a7-21baad0eb8cb" - } - } - }, - "slider-control-to-text-field-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "6c592cd0-9d00-478c-a001-b7d4f3e851f9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "41601fb4-8571-4e7d-91b1-ea7b69ca8a1d" - } - } - }, - "segmented-control-selection-border-width": { - "component": "segmented-control", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{border-width-200}", - "uuid": "10f93760-7b09-4a4e-8cc2-33783e571926" - }, - "slider-handle-height-precision-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "c2e986a2-2b56-4a82-b4a2-87850ca90d8c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "a93712dc-247e-46f4-bb42-d2d1b8896d7e" - } - } - }, - "slider-handle-height-precision-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "0d211640-08bf-4a09-98d8-1398ba70b072" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "18e1a338-5256-41a4-88f7-76b7fb3911c6" - } - } - }, - "slider-handle-height-precision-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "2305cfb2-f26d-44e0-90ef-3258b8f46e0d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "5aa8e5c5-2156-49e6-9bb8-ad99b4a1b997" - } - } - }, - "slider-handle-height-precision-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "1aa8c3a6-29ff-44ec-9b11-51c041ef44f1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "01ca9561-7b0b-4030-ba1b-85d336537ebc" - } - } - }, - "slider-handle-small": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "688b473d-84bc-4964-b985-63cf5fdbf7d4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "fea1de33-ef0f-4c50-ab19-75542f995d35" - } - } - }, - "slider-handle-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "404ce1f8-593c-4738-b9a6-d1969a95b20e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "b17da639-665a-4a4c-8105-f30503b823a0" - } - } - }, - "slider-handle-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "920a0f76-d61d-4362-8b50-fb6a98e62229" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "3f14b28b-1289-4a72-89b0-b2fbcf54325e" - } - } - }, - "slider-handle-extra-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "0b83b5fd-117d-4257-bf77-fce39bfa8e3b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "caa26be5-d26c-4e5a-aae8-87e0380920da" - } - } - }, - "slider-handle-precision-width": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "94045357-9bb7-4d16-b035-342465834a92" - }, - "slider-track-height-medium": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "c2eb2949-9471-4dc5-b02b-384627dbdea2" - }, - "slider-track-height-large": { - "component": "slider", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "211a95ca-f83e-4711-83ed-a723258d8336" - }, - "segmented-control-item-height": { - "component": "segmented-control", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{component-height-100}", - "uuid": "4aaef8d2-aa58-46b8-837c-15d794cfcdb5" - }, - "in-field-stepper-to-end-small": { - "component": "in-field-stepper", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "ec801932-08dc-4697-8725-5bc9d3ee230d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "90669b85-c7e8-4b68-b96d-61a51a2451b3" - } - } - }, - "in-field-stepper-to-end-medium": { - "component": "in-field-stepper", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "fe42bdd0-de02-4814-b498-038b26a3c0e7" - }, - "in-field-stepper-to-end-large": { - "component": "in-field-stepper", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cb3e458d-7dcd-484d-9028-220d08c9f129" - }, - "in-field-stepper-to-end-extra-large": { - "component": "in-field-stepper", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "8e57f77c-2921-44b8-a602-85300639f916" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "fbc42d9d-2f00-42ae-92e9-727cac69404e" - } - } - }, - "number-field-with-stepper-minimum-width-small": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "104px", - "uuid": "fcd3bdc5-5685-4b14-9ed7-7fd7bb11b584" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "126px", - "uuid": "08801f40-08ab-47df-82b8-e9cb8a63e3aa" - } - } - }, - "number-field-with-stepper-minimum-width-medium": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "120px", - "uuid": "c7f0b058-d896-4acb-9aac-d073682f8546" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "150px", - "uuid": "4268fc6a-118d-4b3b-a581-b2ab8a503f21" - } - } - }, - "number-field-with-stepper-minimum-width-large": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "144px", - "uuid": "ce84b84a-2036-4041-a121-31f69963bf6c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "174px", - "uuid": "71530ba4-3eb9-4136-b1d2-a28ae5ddf034" - } - } - }, - "number-field-with-stepper-minimum-width-extra-large": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "168px", - "uuid": "c5796762-5837-4600-92e0-5f11364ce471" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "198px", - "uuid": "9da98fb6-a90a-4805-8969-88d4a8958157" - } - } - }, - "number-field-visual-to-in-field-stepper-small": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "1b494a23-b312-43e2-8148-0d86777c38d4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "1e55a991-6d8f-4fc1-9dc7-91f86be50e3f" - } - } - }, - "number-field-visual-to-in-field-stepper-medium": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "2d2b2029-37ff-4563-a404-1347492ca7db" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "83dd3160-a826-4fa2-b643-a6f11533ba45" - } - } - }, - "number-field-visual-to-in-field-stepper-large": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "e041ee57-b8be-4c7e-a13d-ec2e2be05504" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "136a2c42-1868-4343-903d-9e7fbf345d45" - } - } - }, - "number-field-visual-to-in-field-stepper-extra-large": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "54f47bf6-78cc-409a-a83e-15f36404d548" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "777f9750-cfea-4eb3-ae08-a18c2fbde315" - } - } - }, - "number-field-minimum-width-multiplier": { - "component": "number-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.25, - "uuid": "9e24d9b5-1c8b-4693-b10e-8922d519d7e0" - }, - "takeover-dialog-height": { - "component": "takeover-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100%", - "uuid": "be327284-79fe-40b7-b996-8ad176d40d8e" - }, - "takeover-dialog-width": { - "component": "takeover-dialog", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100%", - "uuid": "bb70e39d-c686-4cd2-a991-6b51fa16d9df" - }, - "tree-view-disclosure-indicator-height": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "f9fcb5e0-d8aa-4077-bb8d-dd487ba9d7de" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "82ac143f-6009-4eaa-a797-c4b17277d416" - } - } - }, - "tree-view-disclosure-indicator-width": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "34px", - "uuid": "824d592b-c305-4c56-81db-c6566e6ebb2f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "e24897f6-7bfb-45c0-ab07-30bc1efc0b59" - } - } - }, - "tree-view-minimum-height": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "de8ed8b3-aee4-4d18-8728-01e6807bec7d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "36d1219e-f34a-4ee9-bfa0-a93a42046d94" - } - } - }, - "tree-view-minimum-width": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "160px", - "uuid": "2ab54eb5-8f32-4a01-b4ff-d5dc7a70f827" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "06c90c91-1598-4150-a431-e733ba39bec5" - } - } - }, - "tree-view-bottom-to-label": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "7ab9177a-d035-4e78-b6b9-d80a6470bd7b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "9136f55b-d28b-4802-873c-db6205b8632b" - } - } - }, - "tree-view-drag-handle-to-checkbox": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e8c03b6e-d493-43b6-ae46-a6a92de5c9b8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "5a77899c-1547-40da-bce3-d892cfbc0450" - } - } - }, - "tree-view-edge-to-checkbox": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "2e3817ed-206b-45e5-b55c-6116e9731cd8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "fba49c63-444e-42fc-b27c-7ce43b8419a7" - } - } - }, - "tree-view-edge-to-drag-handle": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "e8127c62-d8fa-405f-a5d5-d4f79bdffa5f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "f51d97ac-06c4-45a4-87ff-349b3ffbc36d" - } - } - }, - "tree-view-end-edge-to-action-area": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "91c6c1db-1f68-43b3-80ba-aa3c7ebecaec" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "66d490aa-b658-474d-99cf-f18d15cb4098" - } - } - }, - "tree-view-header-to-item": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-1px", - "uuid": "8f92e6b8-907f-42b2-81d6-83d1786495bf" - }, - "tree-view-item-to-header": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "ebf7358c-b691-45d7-a1c4-c346e75e800e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "a06c6929-1acc-4084-a8ee-3d4ad5a0064e" - } - } - }, - "tree-view-item-to-item": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{tree-view-item-to-item-default}", - "uuid": "9a04f19a-9e2a-43b9-9b1f-3385aef214ac", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use tree-view-item-to-item-default instead." - }, - "tree-view-item-to-item-default": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-1px", - "uuid": "7d44a2b5-0aa6-4770-81da-8dbd87013906" - }, - "tree-view-item-to-item-detached": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "c7c837c3-47ad-4ef1-a2eb-e4629628eb44" - }, - "tree-view-label-to-action-area": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "e5e3b415-97a9-436d-b46d-9bf48d7a2104" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "096032da-c0b4-4086-82e9-ab80c2b3d90b" - } - } - }, - "tree-view-level-increment": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "cf7044fe-e79d-44e4-8ae0-c9c23ac5b9ac" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "038d525f-357a-4441-934e-093d7342eba8" - } - } - }, - "tree-view-minimum-top-to-context-area": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "1569ef2c-0e00-4314-87d0-e8f703b9fee8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "50ce9fc5-eab5-4ab5-8dfa-a22d5b4361e9" - } - } - }, - "tree-view-top-to-action-button": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "20a69a94-ddc0-4581-bac9-1d0d2b3e0a48" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "7bea161d-9ee0-41b0-a31b-162926b28637" - } - } - }, - "tree-view-top-to-checkbox": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "6f33e161-86d3-40a4-b631-e7c8b9e9d337" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "b148e202-b43d-4089-b0d8-885fc99cb983" - } - } - }, - "tree-view-top-to-disclosure-indicator": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "138541e2-022a-4b03-b4d2-c6932ec56ac2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "aae1c8b3-2aa1-4463-ad84-a52f80a6a09b" - } - } - }, - "tree-view-top-to-drag-handle": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "7fc57ed1-9ca8-4b08-b19f-4aa8c49ca6f3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "bb805e5e-d65b-4daf-9116-288fa59ddbfd" - } - } - }, - "tree-view-top-to-label": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "a6a556b7-ff51-41e3-84d0-92fa8ef01ed6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "d2e3ca68-015b-47a4-96ea-0c380e931c09" - } - } - }, - "tree-view-selected-row-background-opacity-emphasized": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "d31772fd-95f3-413d-ab20-826033d71938" - }, - "tree-view-selected-row-background-opacity-emphasized-hover": { - "component": "tree-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "a83e023c-dc92-4b3e-8375-351bbf8ec9bb" - }, - "action-bar-minimum-width": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "176px", - "uuid": "9fb582b4-38e6-43d0-9b94-69964fb24c9f" - }, - "action-bar-label-to-action-group-area": { - "component": "action-bar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-300}", - "uuid": "72e276ce-d6ee-4bcf-9955-91c833b8b2cd" - }, - "card-edge-to-content-compact-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "562738ca-ed16-4855-8855-3914b9109408" - }, - "card-edge-to-content-default-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "9ecb4a76-013a-4952-9646-a5660005b31e" - }, - "card-edge-to-content-spacious-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "91289dd0-0a27-49ef-96c9-3508edecfa44" - }, - "card-edge-to-content-compact-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "521df9e4-9c61-4a73-9157-d235a4d04090" - }, - "card-edge-to-content-default-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "569f8d0a-75f3-4743-aa51-9ec6479cdf21" - }, - "card-edge-to-content-spacious-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8ec39e04-de4f-48cf-9c8b-7bb7f76730a0" - }, - "card-edge-to-content-compact-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "f3566ff3-2430-4fdd-a48c-e8c0d3c34adc" - }, - "card-edge-to-content-default-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "04ef066b-4733-4d20-9538-7eefd71e7a1e" - }, - "card-edge-to-content-spacious-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "98ef0816-ad83-43ec-b976-1169a7ce8540" - }, - "card-edge-to-content-compact-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "0b551228-5a6a-403d-bb92-9800835cb3be" - }, - "card-edge-to-content-default-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "8856270e-65b5-4f81-87c0-5332ffd7459f" - }, - "card-edge-to-content-spacious-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "73da978a-bede-439e-97cd-afeb32e87780" - }, - "card-edge-to-content-compact-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "a9f253aa-631e-447a-8335-15b4491a8e9d" - }, - "card-edge-to-content-default-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "7acf60d0-7870-403e-94b9-18e84eff861b" - }, - "card-edge-to-content-spacious-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "c4ee268c-aca6-488f-90db-d3e51a0c5c89" - }, - "card-header-to-description": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-75}", - "uuid": "e874d2cd-6ad6-4d1c-8103-789945f10294" - }, - "card-description-to-footer": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-300}", - "uuid": "248d1f30-c0d3-49bb-a5b7-0860cc75ee85" - }, - "card-selection-background-size-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "b9268c45-50c7-4209-9f73-99293e15b7fd" - }, - "card-selection-background-size-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "d169a0a3-9bda-41b4-9e58-897652c95627" - }, - "card-selection-background-size-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "f8e58ca1-5087-4c4a-95dc-2f145f63fbc5" - }, - "card-selection-background-size-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "89dca1bf-84e5-436e-9e86-35f37f739812" - }, - "card-minimum-width-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "100px", - "uuid": "dad01ae6-b161-4d09-8296-33c6ee7d8ca1" - }, - "card-minimum-width-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "150px", - "uuid": "6d94093e-daba-4312-b083-61f44d027737" - }, - "card-minimum-width-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "813d9d3b-8e02-44d9-a898-3045947edc08" - }, - "card-minimum-width-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "270px", - "uuid": "549fbfad-78b7-430d-8fac-7d23084f2bea" - }, - "card-minimum-width-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "340px", - "uuid": "7a98c2aa-404f-4fba-a20d-f5b73919b13e" - }, - "card-default-width-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "120px", - "uuid": "b99da217-1715-446c-9120-53e435cb0d0a" - }, - "card-default-width-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "180px", - "uuid": "bec36248-9c3d-4ecd-857e-c5c20bdc0e1a" - }, - "card-default-width-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "5645fd64-11a8-4a0e-95f6-2f0cd89f5852" - }, - "card-default-width-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "dc3ab4d0-f006-4ade-91da-ef263a676244" - }, - "card-default-width-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "400px", - "uuid": "7a94daad-ec68-4ef1-9c84-9bf6c9b6b696" - }, - "card-maximum-width-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "140px", - "uuid": "9b2b13ac-1728-49f5-8e15-6eeed2e7f855" - }, - "card-maximum-width-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "210px", - "uuid": "42b0d345-b069-48b6-be41-6ed9047097d4" - }, - "card-maximum-width-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "280px", - "uuid": "ccfe1006-0ddd-4203-b0e0-4c92a090c376" - }, - "card-maximum-width-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "370px", - "uuid": "2e85d49c-4002-4beb-9173-f4b2ab78d043" - }, - "card-maximum-width-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "460px", - "uuid": "6f924664-b056-4fdb-a6ab-c5609e3e9316" - }, - "card-minimum-height-extra-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "90px", - "uuid": "f4492a8a-8cb4-481f-a2e4-73da516023be" - }, - "card-minimum-height-small": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "135px", - "uuid": "862e84ab-4efa-4c8e-a0e0-5ed158dadbcb" - }, - "card-minimum-height-medium": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "180px", - "uuid": "a29c460d-3496-49e9-8996-f4b42b9fbce7" - }, - "card-minimum-height-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "2047247e-07d1-4b9b-b184-c173e6421daf" - }, - "card-minimum-height-extra-large": { - "component": "card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "300px", - "uuid": "ef218a9a-900a-4454-840c-2380020bcbf3" - }, - "collection-card-minimum-height-extra-small": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "88px", - "uuid": "fabfd445-4c39-4d39-9f7f-1ec531d4eb40" - }, - "collection-card-minimum-height-small": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "124px", - "uuid": "9264b1ff-23ae-4fd5-8863-742c305689e2" - }, - "collection-card-minimum-height-medium": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "157px", - "uuid": "8422dc66-e17d-4c54-a18b-a997a8e5d7c3" - }, - "collection-card-minimum-height-large": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "202px", - "uuid": "e5027e50-3a1f-425d-b06b-8e4cf4663c22" - }, - "collection-card-minimum-height-extra-large": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "249px", - "uuid": "6b242eb5-aa73-417c-b786-9047ae7a65ac" - }, - "collection-card-minimum-height-hero-extra-small": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "168px", - "uuid": "dc2f0f1a-609a-448a-833d-ded2580ef737" - }, - "collection-card-minimum-height-hero-small": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "243px", - "uuid": "adfc74bd-7520-4bfa-b278-28178007cfbc" - }, - "collection-card-minimum-height-hero-medium": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "317px", - "uuid": "63ecc7ce-8a38-4d18-94ed-d9e6394279ba" - }, - "collection-card-minimum-height-hero-large": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "414px", - "uuid": "d5586b0d-1ff1-4e7e-88ce-75d41aff90d9" - }, - "collection-card-minimum-height-hero-extra-large": { - "component": "collection-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "514px", - "uuid": "24d72e3c-ed0d-47d7-85f5-4792fcf87b7f" - }, - "user-card-minimum-height-small": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "192px", - "uuid": "f646530e-480c-4dbb-85fe-771eb5685966" - }, - "user-card-minimum-height-medium": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "202px", - "uuid": "53c81b30-6d98-4eaa-857f-15707d54a548" - }, - "user-card-minimum-height-large": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "219px", - "uuid": "7cf979ef-c47b-41f3-8230-49d67ad47740" - }, - "user-card-minimum-height-extra-large": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "236px", - "uuid": "9a9f173d-6262-490f-976f-bd9abb9ec355" - }, - "user-card-minimum-height-title-below-small": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "212px", - "uuid": "3373c4d2-d81b-4649-bc24-5251879778c1" - }, - "user-card-minimum-height-title-below-medium": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "224px", - "uuid": "5f4edfbc-eb2e-4dd5-add1-bf45530b0e61" - }, - "user-card-minimum-height-title-below-large": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "244px", - "uuid": "4cc4f673-912b-4e53-a75e-c8bd4603ab19" - }, - "user-card-minimum-height-title-below-extra-large": { - "component": "user-card", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "263px", - "uuid": "a603a785-8cd8-4caf-a2b4-cfe3371cc10e" - }, - "segmented-control-item-maximum-width": { - "component": "segmented-control", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "265px", - "uuid": "efa7a73d-611e-44a1-8ea5-0bad83ef77de" - }, - "steplist-step-default-width-small": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", - "uuid": "5fe717d5-b262-46d8-8386-5a94070337c2" - }, - "steplist-step-default-width-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "54px", - "uuid": "8606a7f5-fa38-4081-b0a6-4633e7442bd1" - }, - "steplist-step-default-width-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "f4bae4c5-208e-45d7-94ac-6c9355087224" - }, - "steplist-step-default-width-extra-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "78px", - "uuid": "0b435546-8368-4fb1-a8a1-c50b14b26ae2" - }, - "steplist-step-default-height-small": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", - "uuid": "205e9849-ecb4-4df6-8f59-a6d9b1458a72" - }, - "steplist-step-default-height-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "54px", - "uuid": "732ea53c-5929-4d31-beef-4ffd60f79c0e" - }, - "steplist-step-default-height-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "912f3b78-d09e-4700-a637-5fefc71960c2" - }, - "steplist-step-default-height-extra-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "78px", - "uuid": "201dc21b-a416-443c-afca-6801cabf31a5" - }, - "steplist-visual-size-small": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a65898ec-6a5a-4e4a-8a75-358e78a8345d" - }, - "steplist-visual-size-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "a94843d0-9ef6-423f-b963-7b9ad658ce40" - }, - "steplist-visual-size-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "7f7539e6-5d8f-4f24-99a7-9338a3a3c630" - }, - "steplist-visual-size-extra-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "1b147315-b106-4d2a-80cb-9be0eed84b7e" - }, - "steplist-track-thickness-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "d4db995b-1eff-44cc-8abc-93324a3af119" - }, - "steplist-step-to-track-size-small": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "80d29ff2-a2ca-4987-9fa2-6799ba6aa416" - }, - "steplist-step-to-track-size-medium": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "3a6f8cf2-d250-4af6-8641-f0ffd4c789b3" - }, - "steplist-step-to-track-size-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e8d064e4-3bdb-4fef-97e8-db596d5d2fab" - }, - "steplist-step-to-track-size-extra-large": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "bbff5dad-42bf-44f0-a34d-b6733360d28b" - }, - "steplist-bottom-to-text": { - "component": "steplist", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "a52c893c-8c03-43a5-88ed-3cd230365b84" - }, - "card-horizontal-edge-to-content-compact": { - "component": "card-horizontal", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "fd732759-52ab-45b7-9949-9d9352091efe" - }, - "card-horizontal-edge-to-content-default": { - "component": "card-horizontal", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "45af5962-8d41-476d-a92d-befa408b47b7" - }, - "card-horizontal-edge-to-content-spacious": { - "component": "card-horizontal", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "104c7b60-387b-4550-b0eb-573915d28f42" - }, - "accordion-edge-to-content-area-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "b594a566-9649-497d-bf8f-289ec3f59689" - }, - "accordion-edge-to-content-area-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "77894e1e-8b67-468d-a3d0-d9a7c87d1a52" - }, - "accordion-edge-to-content-area-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "56633713-ae34-4a8a-8cfd-39508e4c4b0a" - }, - "accordion-edge-to-content-area-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "75bc2d16-cf6b-48ef-a2e5-0516835af468" - }, - "single-calendar-popover-minimum-width": { - "component": "single-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "7f880ee3-c074-4370-a132-c22dbe0d5880" - }, - "single-calendar-popover-minimum-height": { - "component": "single-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "1f0b1cd3-1f15-4a60-a01f-a04f4fb913dd" - }, - "double-calendar-popover-minimum-width": { - "component": "double-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "616px", - "uuid": "5c1de210-df6c-4a3a-8cc7-b9766a676f2f" - }, - "double-calendar-popover-minimum-height": { - "component": "double-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "70cf1c19-7b41-4556-8db2-07fc7ad19666" - }, - "triple-calendar-popover-minimum-width": { - "component": "triple-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "912px", - "uuid": "1ccfcd2c-6de7-4a25-b6b7-0b40acc702c6" - }, - "triple-calendar-popover-minimum-height": { - "component": "triple-calendar", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "320px", - "uuid": "19c4d5a5-6ccb-407e-afa7-79f19286837b" - }, - "date-field-minimum-width": { - "component": "date-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "152px", - "uuid": "ebc4d09b-03c8-475a-af01-9bfcd590d92b" - }, - "date-field-text-to-visual": { - "component": "date-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "4725710f-67b2-4000-b4e8-e67a68cd75f5" - }, - "date-picker-visual-to-field-button": { - "component": "date-picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "da7f0c10-fa1b-4700-8acf-01feebdeed7f" - }, - "date-picker-text-to-visual": { - "component": "date-picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "c6c92147-8ee5-408b-9590-adede6abc935" - }, - "date-picker-minimum-width": { - "component": "date-picker", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "152px", - "uuid": "69c201ab-f9d3-4a02-8fc9-ff96ff38eed4" - }, - "time-field-minimum-width": { - "component": "time-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 2.5, - "description": "2.5x height of field", - "uuid": "21bb1275-44e7-49be-926a-66966e969a6f" - }, - "time-field-text-to-visual": { - "component": "time-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "9953fcd9-ac62-49bd-beb2-926dc9fbb8c8" - }, - "segmented-text-field-gap": { - "component": "segmented-text-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "9e790995-7d43-4ce2-8ac0-a1c79c607575" - }, - "segmented-text-field-rounding": { - "component": "segmented-text-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "dc329712-c5ba-45cf-8ae0-8e42aad2fda9" - }, - "add-icon-size-50": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "d754631a-979d-4dec-b42c-f539421d1c86" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "d74d9dc5-9c20-4c87-bacc-d8898c805aa0" - } - } - }, - "add-icon-size-75": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "1456b16e-09bc-4b63-b3c7-4ecf9a0c3754" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "cfa5af27-add5-475d-90e4-2bd4fc14fcf1" - } - } - }, - "add-icon-size-100": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e2f088b2-1ec4-4fc4-aacd-3ded4f0a239e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "4141f697-72cf-4948-acc7-7aa96035fbe8" - } - } - }, - "add-icon-size-200": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6bc4db4c-ab1a-4c68-bc37-2053b289d982" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "708bfa69-42fb-41cf-b734-ef3736cafc02" - } - } - }, - "add-icon-size-300": { - "component": "add-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "6f6b3134-6fcc-457d-ae87-43814ccada0f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "6ac66626-4a7b-4880-ba39-6756b30e0872" - } - } - }, - "drag-handle-icon-size-75": { - "component": "drag-handle-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c4ae0720-ee2c-41b8-a8ad-a30528a8a967" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "e2615055-159e-4b87-b7ce-1537f25fcdd4" - } - } - }, - "drag-handle-icon-size-100": { - "component": "drag-handle-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "85273338-00a6-407d-b5f9-803a732b84fa" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "f60c626f-f217-46eb-b2ed-5c56c3f87aa4" - } - } - }, - "drag-handle-icon-size-200": { - "component": "drag-handle-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "4342319b-d8c4-485b-9b2f-5bd4c702979c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "b8370ec4-5e70-4a53-a98e-a733c86ce065" - } - } - }, - "drag-handle-icon-size-300": { - "component": "drag-handle-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "91eb8665-5728-468c-a533-1aadf70aeef1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "93052ad2-8ada-40d8-a046-16e5a91ae826" - } - } - }, - "gripper-icon-size-100": { - "component": "gripper-icon", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "e6f95e88-636d-4d3a-8966-8c811dc697d6" - }, - "tag-field-default-width-small": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "65194439-66b2-4f47-9096-80e018f2708a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "264px", - "uuid": "face078a-da74-4dec-9519-ef8a1a8b15cc" - } - } - }, - "tag-field-default-width-medium": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "264px", - "uuid": "7afa2c15-4eae-42af-b323-5dfde15a68cc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "640aa691-c4a4-4cda-9912-2e6c6f9c1ac2" - } - } - }, - "tag-field-default-width-large": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "288px", - "uuid": "ebea4627-12b5-4f51-9bda-be4f9dca213b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "312px", - "uuid": "7f4da1db-493c-4965-b89e-3ca585bebd25" - } - } - }, - "tag-field-minimum-width": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "180px", - "uuid": "be7ccb7a-5eba-4104-91cf-f24121648b76" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "c1bf4479-eb9f-45de-b431-57fd892eac6f" - } - } - }, - "tag-field-minimum-height-small": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "b45ded81-85da-4c0d-abfe-3ff51c7e9c70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "54px", - "uuid": "f9f61ca1-b08f-4e8d-89ae-f7f2c5df289d" - } - } - }, - "tag-field-minimum-height-medium": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "12d9d6b6-1621-433a-bc94-4a47843153b9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "68px", - "uuid": "163ef7b4-537b-43b7-a543-ebea0153e16b" - } - } - }, - "tag-field-minimum-height-large": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "68px", - "uuid": "09f85b07-baa8-4f51-9067-cf41749e4214" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "82px", - "uuid": "b24c4940-bf4a-4c85-8cb8-b613ac9bc7c8" - } - } - }, - "tag-field-edge-to-content-small": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "b6eebf3a-4733-4177-a235-6eccfacf67cd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "5e448fc3-6c14-4169-84a0-1f70bbc478cb" - } - } - }, - "tag-field-edge-to-content-medium": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "798ecb75-638c-41dd-81a0-d7ecca9960da" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "0072dc62-b868-4c4b-afd9-9c52d876c614" - } - } - }, - "tag-field-edge-to-content-large": { - "component": "tag-field", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "03b1351c-1309-4e1a-a18b-bf3a350814c4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "1fda84ab-aa68-46fb-bd0f-d8174a08a41e" - } - } - }, - "list-view-minimum-height": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "fe1dcf27-addf-4aa9-9057-7b98a4dcacdc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "6ca2c317-7e17-41f7-8e2c-20a762fe284d" - } - } - }, - "list-view-minimum-width": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "82b718ef-6127-472b-b92f-f2f15833c49f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "3f68b526-a22a-4086-a40d-3a875a6324b3" - } - } - }, - "list-view-item-top-corner-radius": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-default}", - "uuid": "6e4611f7-f202-4003-94b4-587d48d07e32" - }, - "list-view-item-bottom-corner-radius": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-medium-default}", - "uuid": "57821e37-d39e-49d5-b978-4ece3747e531" - }, - "list-view-end-edge-to-content": { - "component": "list-view", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "6dc382ce-8e48-4bd9-8078-1272da767b13" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "16552174-994e-41c3-9439-32b9876c399d" - } - } - }, - "stack-item-selected-background-opacity-emphasized": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.1", - "uuid": "d1cd1fc2-5ad1-4a6e-bef8-55a385c1ce29" - }, - "stack-item-selected-background-opacity-emphasized-hover": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "bb522e19-6bb9-471c-95af-5ab7fa748557" - }, - "stack-item-selected-background-opacity-emphasized-down": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "67946e29-b480-4991-85eb-c57331a509f7" - }, - "stack-item-selected-background-opacity-emphasized-key-focus": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/opacity.json", - "value": "0.15", - "uuid": "35415d70-944b-4c5a-ae70-4810f991b70d" - }, - "stack-item-header-minimum-width": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "200px", - "uuid": "6880260b-1d48-4bfc-9745-3e7c506c40fb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "240px", - "uuid": "e18832ec-c1f5-4cfb-9ac6-111204fc255c" - } - } - }, - "stack-item-start-edge-to-content": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "abc302a3-c0b5-4f93-a141-39988ca3720b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "799fbc36-ea79-44d2-8e8b-dc3aade544a0" - } - } - }, - "stack-item-drag-handle-to-control": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "80800e9d-8b0d-4d1b-adfc-f85faee2bc2f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "ed1689ea-2661-419b-ad18-7877712b0dfa" - } - } - }, - "stack-item-text-to-control": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e65d0e08-9c29-43f6-b7a2-281865a82b70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "aaee547c-df72-420e-8d39-3028e79feac1" - } - } - }, - "stack-item-edge-to-control": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cb302d23-5dd8-4ca6-b104-3fc5f03f633b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ef8dc413-ef24-456c-aa91-6a80d107f6c6" - } - } - }, - "stack-item-edge-to-visual": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "5405f82f-6022-468c-a150-b74210ef52cb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "7e743edb-d49b-4750-88b3-e35b6e534a3b" - } - } - }, - "stack-item-action-to-navigation": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "3b41366d-2c29-4477-95fa-528c762b8a3b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "cd7df3af-975e-4d8a-addd-92a920173fd6" - } - } - }, - "stack-item-header-to-item": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "c030a978-cf5b-4ad0-a3c7-dde81f1bf136" - }, - "stack-item-item-to-item": { - "component": "stack-item", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-1px", - "uuid": "3862f137-37f5-44c3-a31b-68834d8e1c3c" - }, - "accordion-bottom-to-text-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "47f2bc45-5fa5-439a-a705-ef965c6ea010" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "5ce86cfe-434b-42ab-b334-c574bae01e6f" - } - } - }, - "accordion-bottom-to-text-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "7ec7fa3a-5ab0-41e8-816a-bdd63b7d9d82" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "7db5a087-c361-4080-be50-8e4864436108" - } - } - }, - "accordion-bottom-to-text-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "c0f14d75-a7a7-4325-b891-76d055e6371f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "abbcad5f-be29-4ca4-b48f-6b0eab7f9942" - } - } - }, - "accordion-bottom-to-text-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "ee8445cc-82a2-489f-9ff9-ec5d38a8dfd5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "b69abbba-a98c-40f2-8a9a-972710b73149" - } - } - }, - "accordion-top-to-text-extra-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "1a8c45b2-caa4-47b9-b72a-782894168342" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "d76aaca3-6e02-4f90-b254-debf8d10fc89" - } - } - }, - "accordion-top-to-text-large": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "b005554a-ac7f-45ff-86a1-d240d1270f40" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "ebc6e896-6964-4337-b146-468e43d31db3" - } - } - }, - "accordion-top-to-text-medium": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "728ad09d-0820-4c71-9974-57386f3d62d2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "2d7e81ba-1390-4607-8ee2-5d322d3e0bae" - } - } - }, - "accordion-top-to-text-small": { - "component": "accordion", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "efd68835-b6de-479c-9c71-bccbe8e20c21" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "0dea279c-62ca-4670-a693-03eaa7ccecb5" - } - } - } -} diff --git a/docs/s2-tokens-viewer/tokens/src/layout.json b/docs/s2-tokens-viewer/tokens/src/layout.json deleted file mode 100644 index 10816c92..00000000 --- a/docs/s2-tokens-viewer/tokens/src/layout.json +++ /dev/null @@ -1,2697 +0,0 @@ -{ - "corner-radius-0": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "bb9d8350-b1fb-4496-9c22-6ec9647ff117" - }, - "corner-radius-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "ecb9d03a-7340-4b43-8aa7-f89eef9f3a20" - }, - "corner-radius-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30" - }, - "corner-radius-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "52ad01be-f512-4fa3-ae67-8c6cef70810c" - }, - "corner-radius-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "154642d7-c23d-44fd-9d79-b719ef32922e" - }, - "corner-radius-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "690db7ae-cae8-49bb-8777-b4f1829b2f0b" - }, - "corner-radius-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "ada2ea1d-1728-411a-8aae-a198ce390a25" - }, - "corner-radius-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "abc0f309-3bd2-4800-af12-b27386e86617" - }, - "corner-radius-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "cb6b72ed-a9a1-4113-b147-1ef369fe6269" - }, - "corner-radius-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8fc023ca-8aec-40fe-9130-087aa035bac7" - }, - "corner-radius-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.5, - "uuid": "e4ad85b2-97bf-48cf-a5a9-3ff3d1fada5b" - }, - "drop-shadow-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-100}", - "uuid": "81415747-aa3f-4ef3-b0bc-7c33f07a4316", - "deprecated": true - }, - "drop-shadow-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-100}", - "uuid": "c530129f-248c-4e36-ba7f-05d6d6a53962", - "deprecated": true - }, - "drop-shadow-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-100}", - "uuid": "ac20a6da-31a7-4c8b-b361-0ad820cd8429", - "deprecated": true - }, - "android-elevation": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2dp", - "uuid": "f9456531-ab61-4c14-b7af-7016ce1c0d3e" - }, - "workflow-icon-size-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "1423caf1-75ca-4ca8-aa6a-22dcf3655b0e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "4c4cb541-7d42-4bb4-9c86-7197c4600896" - } - } - }, - "workflow-icon-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "85cdef34-0682-45eb-ac06-98c76883cdf7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "b720c214-babe-426d-9629-9ec60d5e8622" - } - } - }, - "workflow-icon-size-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "40abc60f-ab65-41ef-b724-a0f0bdd94d14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "9e882a20-b8e1-4e9b-89f9-26f21db3cd78" - } - } - }, - "workflow-icon-size-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "6392e605-932e-456d-be53-149b624a04e2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "9948e083-8c75-48f7-8e58-32c75ec76116" - } - } - }, - "workflow-icon-size-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "25908278-79d3-47f4-9b53-adbdd1c13e2a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "df0dc6c3-59fc-4ee0-87a9-c3d49a07cf9c" - } - } - }, - "spacing-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "1b06f6e2-d9be-4934-b3da-bed75986d104" - }, - "spacing-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "576a60a3-ca80-46c5-a066-ba7b6197decd" - }, - "spacing-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "507c0b4a-9dbc-4242-89fd-5efc4d1c35b9" - }, - "spacing-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "79fca32b-214b-4760-9d3a-28f4d1bdf86f" - }, - "spacing-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "ba632ede-84a7-4e56-91ef-8143b2499452" - }, - "spacing-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "ec565065-0820-460f-9a1b-b81911c48cb5" - }, - "spacing-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "490b4010-1561-4b12-8cbb-cdb4b650ba74" - }, - "spacing-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "b6d0b881-d25e-452c-9069-c18745d21f33" - }, - "spacing-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "26639049-ec07-430d-983f-4d036758564a" - }, - "spacing-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "eeb099cb-707f-4e5e-97b9-1fdba35b2314" - }, - "spacing-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "d04e5d81-0b6e-48e7-9e47-744753dfcff3" - }, - "spacing-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "96px", - "uuid": "9d688a67-5ff6-4b72-8398-964c0337dce1" - }, - "text-to-visual-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "ff1fadc2-9ec0-456f-a054-4512e51c85c8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8588bf80-96df-40fb-8b6f-61d06899f8dd" - } - } - }, - "text-to-visual-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "50763a0d-c6eb-47f0-8b56-4c86ee22a430" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "77dc4cd4-8e4e-4873-b6f3-d573eb7fc315" - } - } - }, - "text-to-visual-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "1d601d0a-d6d0-4711-9fb9-71898c2bcc9a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "09d55113-8d94-429f-b0c8-ffabe8ccba27" - } - } - }, - "text-to-visual-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "7ce11af3-b94b-4239-a310-f8d09635779a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "dc4ec555-72eb-4328-aba4-e8d594102f45" - } - } - }, - "text-to-visual-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "4366909e-3bfb-481c-abdc-4ae71f965bc3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "205f0c77-6588-4cc7-927f-3ba767200bac" - } - } - }, - "text-to-visual-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "3d393d59-b358-48a7-82c6-a7802408cd0d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "b496071f-4151-4bc2-86eb-f2e41947e0f6" - } - } - }, - "text-to-control-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "4b47e7a8-b330-4c6c-a497-9ee9eed0c50a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "56e2cc0c-7d56-454e-bb4f-4517f412eeac" - } - } - }, - "text-to-control-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "aa27af6e-baef-4d7c-bf8c-f9a972e51713" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "45f94495-0f53-42b2-94f6-7a6d91eb2ca1" - } - } - }, - "text-to-control-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "24a438ce-be6a-477e-aa0e-a3e97e286904" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "b4ce04fa-bc03-44c9-afef-a38810ac9c65" - } - } - }, - "text-to-control-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "307fb510-8759-41ee-89d2-fcfe4d554b85" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "8991287c-763f-4a39-ad5b-7ccdbc39b3f6" - } - } - }, - "text-to-control-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7cde8c74-2ac9-4468-a25e-06c1a6cd9cbe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "53a33d46-8d81-4f13-8c79-c4d9257a5b68" - } - } - }, - "visual-to-control-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "0a392deb-fee3-4968-bc52-1377f9e23307" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "16b8c9c7-a601-4ff9-bf9d-c5a118738506" - } - } - }, - "label-to-description-0": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "4a00c810-c099-4de1-85b8-aaa7ed9538bb" - }, - "component-height-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "81ebf2b1-01fd-45a3-a099-72048e7d7991" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "fede8012-f00b-412b-8981-16f60a6133ab" - } - } - }, - "component-height-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "f70d4c16-f588-4fa9-9318-b7184a739193" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "5f363452-6317-4e7c-965a-291b3dfa8a8f" - } - } - }, - "component-height-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "3d7afc6a-f66b-4033-9ed4-e60cde661a18" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "5c31197d-0412-469d-a2dd-684efbd4b7e6" - } - } - }, - "component-height-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "8bf70f40-b282-4c5d-98f0-329245bdb6f9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "7c69efb5-bde7-4ee0-ad1e-2f20e85ebc24" - } - } - }, - "component-height-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "48px", - "uuid": "f4aaa7bb-e724-42ad-8ddf-934cc972995a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "60px", - "uuid": "53c665a4-83ae-45f2-b90d-33ce52430b84" - } - } - }, - "component-height-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "e146c28f-3349-48fc-8281-6997ab9da222" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "70px", - "uuid": "4fcbb85f-afbe-41bc-a979-dc09fb98946a" - } - } - }, - "component-height-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "b5211351-b7df-430a-93bf-906ac66ebf2e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "8135e75c-9536-4743-ab6d-05ed5adb0448" - } - } - }, - "focus-indicator-thickness": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "b6148878-b78d-4fe7-bf78-e01e7cb314c2" - }, - "focus-indicator-gap": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "693651ef-71c7-4096-91a5-1c84cb861021" - }, - "side-focus-indicator": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "d33433fd-6430-4769-a0b8-6d8c32a64803" - }, - "border-width-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "b5525080-28e7-4eb7-aee9-fb2c71a16f68" - }, - "border-width-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "cc8a43f4-0ba6-46e3-90af-653fbc59a328" - }, - "border-width-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "18b0ff0d-494c-4d33-acab-a62528c5ca66" - }, - "component-pill-edge-to-visual-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "3eaca9fb-25c0-4a1d-8c44-320cc0e0305b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "64343da6-f1a6-4615-b2b8-41f9509679e5" - } - } - }, - "component-pill-edge-to-visual-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "fff86b73-4e28-4453-9ba3-7c40998ace07" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "14624bfc-b08f-4637-991b-94a703a7b808" - } - } - }, - "component-pill-edge-to-visual-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "b9324a3c-557e-4832-8418-1d7783e7b9be" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "053363f2-5b8e-4365-8353-3cffac169608" - } - } - }, - "component-pill-edge-to-visual-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "4ccb4a02-6aa9-459a-a459-1d0ebbe2dc11" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "7ae3b6ee-2f80-4596-9d4a-08a5bf9612a7" - } - } - }, - "component-pill-edge-to-visual-only-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "47f5ab02-22db-4d82-be1d-804669d7fbd4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "7332a4d3-3775-4247-a4c0-fb01f0604d63" - } - } - }, - "component-pill-edge-to-visual-only-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "dd9e6e28-a382-46a1-a6e0-f73c8cc0ed70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "cf58ae75-8f3f-4b9e-809b-ee78abbb2f2f" - } - } - }, - "component-pill-edge-to-visual-only-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "64cdd254-d3fe-40e6-97a8-76dd8156afa8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "989aee4c-5c90-454a-b68d-a7564669c2bd" - } - } - }, - "component-pill-edge-to-visual-only-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9654369a-5bf8-4436-a331-aeac1fd25a70" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "cb4f356c-2dcd-4043-8f5c-3da904716b48" - } - } - }, - "component-pill-edge-to-text-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "5c80900c-ff68-4b78-86fa-571bbf1eb9aa" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "8a23edfc-b993-48bb-917f-377051e02dff" - } - } - }, - "component-pill-edge-to-text-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "3c96bdad-6e05-4a1b-930b-92d35adf5d9d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "10e326b3-bcce-47df-a1ab-0e3ab9964dd2" - } - } - }, - "component-pill-edge-to-text-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "4cca2097-286e-46d5-bc8e-273ea50354e7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "c77f6b68-32b7-499c-81d9-50855cc68279" - } - } - }, - "component-pill-edge-to-text-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "29fa8da5-3f74-4141-bfb1-0f2847655345" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "dd7bc474-d5f1-46fe-8a6e-b1645c34c982" - } - } - }, - "component-edge-to-visual-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "a0b6c266-499d-4292-9be4-705ddd5e9fbc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "0b157417-e40f-481c-87e3-8563d55b3135" - } - } - }, - "component-edge-to-visual-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "8d128c7d-ab8e-4a4e-9243-a2e919cb6e6f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "acc3e1b9-532d-485e-84e4-06e744c744b3" - } - } - }, - "component-edge-to-visual-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "e220eb52-f821-4807-9ab7-b5f3905d769f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "e77f525e-5043-49c1-a663-9f6c30067043" - } - } - }, - "component-edge-to-visual-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "e0673a9f-7993-490c-b2db-e8e836837e83" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "85f7f49a-7b87-4e2f-b44e-70e3ccde6291" - } - } - }, - "component-edge-to-visual-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "a0ce87ca-29e0-40e3-b7dc-c53678effd9b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "4973c83c-792d-4bc1-9e3d-d047993292ba" - } - } - }, - "component-edge-to-visual-only-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "9c536051-7794-4282-bf07-c920cda83cbe" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "fd1c11a6-53d5-4253-a7d7-c4131c4b1a5e" - } - } - }, - "component-edge-to-visual-only-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "c38259e9-87f4-4e7d-a041-692ca676a638" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "5c4f1f7a-2218-4d03-ac83-9750c2c9336b" - } - } - }, - "component-edge-to-visual-only-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "8fec6012-7cba-4ac5-94d7-14f39fce7612" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "93e42bfc-c2f0-40cd-a561-9045c68cb5d1" - } - } - }, - "component-edge-to-visual-only-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "0bf1ad10-235a-4c81-aba7-5bf55acc877d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9dffd6f3-6230-425e-9208-296cf4d5c185" - } - } - }, - "component-edge-to-visual-only-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "815523cd-8c01-4125-bb22-3a548f1cc702" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "090b3da5-0aa3-4bf8-b3bd-dd8dabb40721" - } - } - }, - "component-edge-to-text-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "b8af0ff9-1e4b-4298-907d-3ffcde88ba03" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "d660beeb-278b-4157-b6fc-852c680ecae7" - } - } - }, - "component-edge-to-text-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "40778817-6e47-4b58-a495-c4f34cee78df" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "942f0f34-611a-4318-9b0e-3632e7f520b3" - } - } - }, - "component-edge-to-text-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "0c0d6d38-6734-4312-9be5-dd48dd571841" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "0b3ecfcf-8fb9-4faf-ab7f-ff4baf733df5" - } - } - }, - "component-edge-to-text-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "44a668d6-e013-4138-a262-383994b0637f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "c567f435-928c-4bf8-b9c0-ac2f22d58348" - } - } - }, - "component-edge-to-text-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "11088de1-8e3b-4021-968d-a8c59c7b00bd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "616de468-71fc-4315-87ea-47cdc508a599" - } - } - }, - "component-top-to-workflow-icon-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "0fafc819-d65b-4952-849a-b3c426e9a4a9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "24853983-c1b0-422d-84b6-05b9313066ed" - } - } - }, - "component-top-to-workflow-icon-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "2bc8b2ca-9792-4034-a604-43ce28ce8ede" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "9d1b0ef4-5433-43fe-aa33-0274ff29f6f3" - } - } - }, - "component-top-to-workflow-icon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "c3a280b0-bc84-4a7c-8048-c689f8deef86" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "a3d3f9e9-a784-445a-a052-22f84b832512" - } - } - }, - "component-top-to-workflow-icon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "ef82b92a-2cbd-4b70-920c-4b999b018e07" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "259c0cf5-d321-4a6b-a3ae-b8c58fc1c9d6" - } - } - }, - "component-top-to-workflow-icon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "72d6ae5c-e133-4e7f-bc96-3e4c28d586fd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "bac14298-68f0-4fb6-a152-c95ab19fd27f" - } - } - }, - "component-top-to-text-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "c71c0953-d9da-4e22-93a1-6982c7665ed6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "cb2a6539-4cee-420c-aeef-dbdd3220039d" - } - } - }, - "component-top-to-text-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "477d659b-6489-4e90-84db-75a93174559a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "54a0e5cf-3e4a-454b-9dba-a6a2c277fa5e" - } - } - }, - "component-top-to-text-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "15bf492b-3a65-4577-8a3b-df09026b96a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "bed358a2-0559-4501-a147-b375887f25af" - } - } - }, - "component-top-to-text-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "c7914376-3769-4172-8467-fb811b3c155f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "621c9cf1-02e2-478b-9f47-0804f0183531" - } - } - }, - "component-top-to-text-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "9bf3970e-eb76-4be5-82c4-0df2538df753" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "e0ae8c97-73ee-4b09-839f-5ebfb6eb0d7a" - } - } - }, - "component-bottom-to-text-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "ee165c7d-3e9a-4a8d-a71f-3083fd7fdc4b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "80f01183-a152-4c55-ac11-24edae62df64" - } - } - }, - "component-bottom-to-text-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "923c46e1-b6f7-4d8a-844d-b4c0661b5e60" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "0f1a6c63-bc4f-444c-9a18-67b6c35464b1" - } - } - }, - "component-bottom-to-text-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "24def269-4582-46f6-a00c-8b5a28410917" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "c8590269-dcaa-44f6-9c2d-d33274c3fe5e" - } - } - }, - "component-bottom-to-text-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "ae65b844-9758-4708-8781-2c8df35af1e9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "a39cef5c-631c-4942-b5d2-9121e05d47f8" - } - } - }, - "component-bottom-to-text-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "4459554a-d872-4a6a-a620-4a1937605d29" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "a6aac364-d617-4e21-a1db-5523daaa3c6c" - } - } - }, - "component-to-menu-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "4db24ebf-e169-4220-b895-787fe09f8658" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "cc2c2606-500a-45e2-b460-2b498dcddb26" - } - } - }, - "component-to-menu-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "0190ca9d-9f28-45b2-9dc7-c715089faebb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "e8602fbe-1bf9-4aec-9cb0-5b4e994558c9" - } - } - }, - "component-to-menu-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "d03d1199-f49d-4e57-8434-b94efe5da440" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "b33acdfa-525e-45c6-ab2b-c959760c4024" - } - } - }, - "component-to-menu-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "31f44472-9681-469c-8ba2-9efc27eb981d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "9fa90167-54ec-4343-a14c-4cd18963dcc5" - } - } - }, - "field-edge-to-text-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "3f7cee20-c187-4066-be4b-f5a1335736f5", - "deprecated": true - }, - "field-edge-to-visual-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "89f16f89-fd7d-41d7-8e5c-464007fd0277" - }, - "field-edge-to-border-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "7fb81dcf-3329-4353-917d-75de8f43c05d", - "deprecated": true - }, - "field-edge-to-alert-icon-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "7858fdf3-e35f-4bc5-997a-0d480ec1cb32", - "deprecated": true - }, - "field-edge-to-validation-icon-quiet": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "151915e5-f946-474f-9595-18d8a159a6ff", - "deprecated": true - }, - "field-edge-to-disclosure-icon-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "7b68e88f-8ddd-496e-9fae-7fbe44317965" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "87d3f491-f45f-4bee-9dbd-00086cca5858" - } - } - }, - "field-edge-to-disclosure-icon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "71b53c8b-fbbb-4f84-847a-45db5ad8006f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "26d578cb-9228-4643-b042-8b00ba4d9b61" - } - } - }, - "field-edge-to-disclosure-icon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "77792f9d-b462-48e6-a4de-abf804bed3cd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "fcc139c1-08ed-4641-932d-5050237abfaa" - } - } - }, - "field-edge-to-disclosure-icon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "e84ef1dc-392b-4ab9-a13b-76364484a28d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "0d3045e2-a493-406a-a247-8d20f35db2d9" - } - } - }, - "field-end-edge-to-disclosure-icon-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "b79e5061-87c4-495c-ab01-90dcc5ae14ab" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "927e7b5a-57b4-4d47-9ad8-e287199e68a3" - } - } - }, - "field-end-edge-to-disclosure-icon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "9fa71233-f98e-4d48-b2af-29552a62a479" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7b3ab0f8-8bde-461f-b658-6848d64de0e3" - } - } - }, - "field-end-edge-to-disclosure-icon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "622a39c4-4ed1-4637-8e8d-e8e6a72099b2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "417eb2ee-3fe9-47fc-a122-d466eb4e7b26" - } - } - }, - "field-end-edge-to-disclosure-icon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "43ec5915-b039-4210-9bc0-ce547f90ce32" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "7c2b5cc0-01c0-4e5f-a157-1d2432f8bbc1" - } - } - }, - "field-top-to-disclosure-icon-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "c5778e77-0ff1-431a-a72e-37f3066d3257" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "2f62718d-3df8-498b-9520-baf8be65f3bd" - } - } - }, - "field-top-to-disclosure-icon-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "62c3618c-f28f-4b56-9227-a061dc54d19d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "1357cf8e-6e41-4d3c-be39-9aa87d010b78" - } - } - }, - "field-top-to-disclosure-icon-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "bdf0fc6a-404c-492c-86bb-5d2ba06714e6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "2af47c9c-dba6-4340-b5fc-af00dcbaa05c" - } - } - }, - "field-top-to-disclosure-icon-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "d5db6c17-700e-4782-9c29-001269b50200" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "631146ab-f3f2-4ea0-aac1-2bea622d0c85" - } - } - }, - "field-top-to-alert-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "f265e6d5-8bbd-464e-b6c7-637224756e95" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "580b677d-5d7e-4306-87ee-640a4613254b" - } - } - }, - "field-top-to-alert-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "adac6224-8e2f-4cdb-8684-9365164a1499" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "1def1d88-0098-4e00-987f-17a8656047da" - } - } - }, - "field-top-to-alert-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "7e21ccc7-ba55-4e0f-b5a5-1bd95406546f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "6247903e-2c00-4242-b2d5-da2864b6aa87" - } - } - }, - "field-top-to-alert-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "78286e58-d73a-42a8-a13c-a910d7fbb82d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "246058b4-e152-4673-91ab-34384fceb798" - } - } - }, - "field-top-to-validation-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "2aad124e-19f5-404c-921e-e2060bc48f07" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "1a5b6e87-12a8-4fda-a8f7-2928b0b68a46" - } - } - }, - "field-top-to-validation-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "2cdb6de8-d494-467d-bf9d-7fa96829bf82" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "7bb6c4c7-4157-4da9-bf06-1d2527022d6a" - } - } - }, - "field-top-to-validation-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "97435915-44ba-4ace-993f-a0fac52e41f2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "f4f9d889-130a-4e71-9a9c-1ee82c2a4a4b" - } - } - }, - "field-top-to-validation-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "aa10c6ff-8cf6-4e68-8181-ca5e64f5c26f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "a6da1cb9-6085-4c58-b3dc-3b1377f64fa4" - } - } - }, - "field-top-to-progress-circle-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "9aac1df2-1693-43f1-ae43-b23c21a42f71" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "5da7e575-d0c3-44e7-bbfa-6fa58972343b" - } - } - }, - "field-top-to-progress-circle-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "7a3120a8-3c98-4227-afb4-5d6a8aa78e14" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "7b4b7283-1223-4d2e-9f24-5ed6dada4711" - } - } - }, - "field-top-to-progress-circle-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "24784275-a117-4767-98ee-5d8a08c89296" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "7a17cc60-fa76-4234-a99e-c4f711e63f5f" - } - } - }, - "field-top-to-progress-circle-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "efcd740a-033e-493a-a902-e2f657897bd4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "263428f7-3b5a-449a-87d1-874cebf50fa8" - } - } - }, - "field-edge-to-alert-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "20658099-94df-4c6c-a2f2-558c92174121" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "68c4dc34-49cb-4174-bd06-5f5dfbd0b64e" - } - } - }, - "field-edge-to-alert-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "dd684a30-2e49-4096-8b1c-40fbd6c8cac2" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "b98d3a2d-94fb-4491-9650-1c9a62365a19" - } - } - }, - "field-edge-to-alert-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "e0b53a9a-e95a-45b8-b9b2-a16b70096c05" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "a7c0e1fc-bc57-450e-bdc2-1c2cf2823d98" - } - } - }, - "field-edge-to-alert-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "7ea18d45-d6e1-4ef0-859d-4d39a3e0527a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "2a77de7a-20cb-40a2-b3a9-252fcaa7a7d2" - } - } - }, - "field-edge-to-validation-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "9ab112d7-af82-4b28-9bc2-a1216af87aea" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "a1c55785-3ae3-4c23-81e2-f088e76e4e04" - } - } - }, - "field-edge-to-validation-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "a93c8845-c89b-4e8d-b06e-c34e7c7b0e99" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "c51f02a2-35d4-460f-9f14-a97d9e8e6616" - } - } - }, - "field-edge-to-validation-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "faf7879f-d9c1-4bf1-8af7-95f48240bcf0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "9525d928-4cdb-4cf5-8616-2024ed6fb7c0" - } - } - }, - "field-edge-to-validation-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "9379019f-5498-45d1-8590-deb8a234a3d4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "539800f6-7bbc-4b67-8b61-99d1ee2f69a4" - } - } - }, - "field-text-to-alert-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "2d900e70-913e-4d45-9ef4-2ef8d80798fc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "01ad9b7d-926e-4db4-a86a-a804fdfc7d68" - } - } - }, - "field-text-to-alert-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "cce2dfd4-b10f-4386-8f16-2bc2d47e49f5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "03d088d2-4ec9-45bc-896d-8423bf72317e" - } - } - }, - "field-text-to-alert-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "0f40702e-876a-4fb4-aeb7-ea56c26c081b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "73025a05-6203-460b-830b-458f8109abce" - } - } - }, - "field-text-to-alert-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "248144ce-6640-40ce-96a3-162c406c7edf" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "ec794a47-71af-42ea-87f2-048fab8dbf9d" - } - } - }, - "field-text-to-validation-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "574ddef0-b45b-49a1-b057-fb2eacfbd36f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "c2181581-6aa1-4e1f-80bc-1ca2e85ea01b" - } - } - }, - "field-text-to-validation-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "da53a8e5-95c3-48dd-a9c0-5ed2de25240d" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "87e221ab-fb8c-4d59-9d4b-9815a672cc23" - } - } - }, - "field-text-to-validation-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "f9729ef3-9807-4401-80dd-b1c209c00065" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "b28a0156-4930-484c-a518-ee00e0292db5" - } - } - }, - "field-text-to-validation-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "8a573d4a-0543-4e77-8f54-5ad1706d87e7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "8926578a-c326-4a75-aafb-d90112aaedb5" - } - } - }, - "field-width": { - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-medium instead.", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-width-small}", - "uuid": "096ddcb7-5afd-416f-9a11-4275556c4b52" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-width-small}", - "uuid": "08c2390a-353b-4e6b-b025-dbaeaa5fdff2" - } - } - }, - "field-width-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-default-width-small}", - "uuid": "d316d676-b4cf-4d16-b89c-63ef1d969861", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-small instead." - }, - "character-count-to-field-quiet-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-3px", - "uuid": "f2f62625-dfd4-46b0-9113-033820745569", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "819cdbf4-9e26-4fdf-895d-8f60c06efa2a", - "deprecated": true - } - } - }, - "character-count-to-field-quiet-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-3px", - "uuid": "2ebe9ae0-3b74-47dc-af79-e1dd5f93b9bd", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "1cecea81-8c7f-4658-b3a2-0e1282f7eac9", - "deprecated": true - } - } - }, - "character-count-to-field-quiet-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-3px", - "uuid": "3f385135-015a-44dd-bde3-60389b14c2ff", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "cef58f98-9fb0-4fbb-b6aa-dc5786d7658a", - "deprecated": true - } - } - }, - "character-count-to-field-quiet-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-4px", - "uuid": "8b5b5dce-a9c4-4c03-a194-8a5bc716b18a", - "deprecated": true - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-5px", - "uuid": "2cfe025b-8bf8-47a3-8ff1-733cf62dd182", - "deprecated": true - } - } - }, - "side-label-character-count-to-field": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "146add82-4f20-46c3-bacf-4d24d60d0e10" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ec387876-31d5-42a5-99aa-02c5d35e6223" - } - } - }, - "side-label-character-count-top-margin-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "a86ae363-b6b4-4da0-9630-97336922b3a1" - }, - "side-label-character-count-top-margin-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "4d93210f-f01a-4d1c-8c10-2cb4b9d14626" - }, - "side-label-character-count-top-margin-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "e2d9e241-469a-4b03-bd6a-a105a8ed5e00" - }, - "side-label-character-count-top-margin-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "9b1f15bf-ea4f-4f82-8c4f-3770b7f47353" - }, - "disclosure-indicator-top-to-disclosure-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "e8e0164f-2588-4c8e-9b85-543ce5a8fadb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "d7c1f2a1-b679-42ae-8512-27883d9789f9" - } - } - }, - "disclosure-indicator-top-to-disclosure-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "1e644622-9b4a-4cce-9cf7-2474d58f4956" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "049e0fe7-03d4-4d9b-bdcd-9c8a06852010" - } - } - }, - "disclosure-indicator-top-to-disclosure-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "ae9bbf8d-a896-4667-9034-2fd2dfeb1981" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "24dd2c12-17f0-4d38-9af3-a3b112c40c74" - } - } - }, - "disclosure-indicator-top-to-disclosure-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "ba7492f3-1a19-4d75-98cc-34a0d46ea802" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "9c38e8f6-cca7-4f7f-a7c3-9d4ee7af24b8" - } - } - }, - "text-underline-thickness": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "13f36ce1-84bb-41db-bec8-6d6e8f5c6ed3" - }, - "text-underline-gap": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "d9d51235-f3fe-4e2a-bdca-b6a104d9a9e5" - }, - "navigational-indicator-top-to-back-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "70de4f97-bc4a-44af-9995-1042e3c7c78f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "d11ab0de-19bd-4f56-8798-0192fd0cfe0e" - } - } - }, - "navigational-indicator-top-to-back-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "5561a148-fd77-44d3-b29d-3ed7389122a1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "74f8a686-0e06-4f7c-9e3d-694749beb420" - } - } - }, - "navigational-indicator-top-to-back-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "c0e06d21-7372-401f-9ec2-926e2b1faf26" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "e84bc865-c89f-403e-bb14-2a11f03fd364" - } - } - }, - "navigational-indicator-top-to-back-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "ac4d18d5-361c-4425-82c3-83979d58f682" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "e68f2798-6a55-499a-b591-0cfc130607ba" - } - } - }, - "color-control-track-width": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "424db2a9-5795-400b-a98a-58081d311bff" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "07e3ac46-3f96-4c00-aa6a-09840ee04bdd" - } - } - }, - "corner-triangle-icon-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "490fac13-d347-4c21-85fa-57814bff7537" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "434b019c-efde-437a-967b-b841ec95e621" - } - } - }, - "corner-triangle-icon-size-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "6fcfc18c-c5e0-4f50-beab-6c4a10bfdaa7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "1352ad8f-a8ec-459d-8ae3-71c27038a29d" - } - } - }, - "corner-triangle-icon-size-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "9c2db47b-f017-432a-a44f-238bc461c4c1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "2be65bca-0f16-4754-bc8a-4a491ba87b90" - } - } - }, - "corner-triangle-icon-size-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "c9c18669-11bf-4ba3-b36f-26115981327c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "d396d74a-425d-4f06-837f-349f81ebf486" - } - } - }, - "component-size-width-ratio-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.3333, - "uuid": "4ee7342c-f2ef-4554-af0f-011052ff6177" - }, - "component-size-minimum-perspective-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "103daec0-9711-4422-84d1-62ab77afa00d" - }, - "component-size-difference-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "-2px", - "uuid": "9ef4a0a5-b81c-4f54-8927-286ece29a824" - }, - "corner-radius-none": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-0}", - "uuid": "7a11b308-bed2-4b6f-bb4a-c9ae4ef8e03d" - }, - "corner-radius-small-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", - "uuid": "b4971f86-aeea-42c9-9ba7-a74cf4d1a545" - }, - "corner-radius-medium-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-500}", - "uuid": "a83a882e-430c-46fc-a8be-5ade0dd8a4c6" - }, - "corner-radius-large-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-700}", - "uuid": "29981aef-aea6-4cde-849f-4bc67e320ea7" - }, - "corner-radius-extra-large-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-800}", - "uuid": "d639a0b5-16b4-4d75-ab37-d87815c7b500" - }, - "corner-radius-full": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-1000}", - "uuid": "4853520b-bda3-45d1-bd20-8508cac08847" - }, - "corner-radius-small-size-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-75}", - "uuid": "3d39e5de-0800-4629-ae1a-99a34706a772" - }, - "corner-radius-small-size-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-100}", - "uuid": "a62a43dd-cb2a-4e18-bb94-7a9518668400" - }, - "corner-radius-small-size-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-200}", - "uuid": "f4f0bfc9-ce6d-473f-8dda-c9f21fb8a7b7" - }, - "corner-radius-small-size-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-300}", - "uuid": "d59337d1-4cec-43c0-821e-06a56745cbcc" - }, - "corner-radius-medium-size-extra-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-300}", - "uuid": "d0e02d98-e93f-4f81-8d81-8f95e06ad360" - }, - "corner-radius-medium-size-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-400}", - "uuid": "892bc9de-16b2-4c51-9c18-b239e52ffd14" - }, - "corner-radius-medium-size-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-500}", - "uuid": "67fb5355-6d7c-4e4e-a4cb-cdba10a85d84" - }, - "corner-radius-medium-size-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-600}", - "uuid": "ede17e00-83ef-40c5-a1d0-a46372d3fc90" - }, - "corner-radius-medium-size-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{corner-radius-700}", - "uuid": "81752b3e-488a-4273-abb5-4ba8b7f278d9" - }, - "field-width-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-default-width-medium}", - "uuid": "935927d3-b25e-468a-999a-938643901e50", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-medium instead." - }, - "field-width-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-default-width-large}", - "uuid": "cc43e053-1255-403f-aaf5-2182f5438592", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-large instead." - }, - "field-width-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{field-default-width-extra-large}", - "uuid": "a903b595-ffe8-43ae-af9b-7b6577191dc5", - "deprecated": true, - "deprecated_comment": "This token has been deprecated, use field-default-width-extra-large instead." - }, - "drop-shadow-x-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "751d636e-efb5-411e-a5b8-06b11439cc90" - }, - "drop-shadow-x-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "0c76c925-4d29-49a3-b882-e946bd7fe9f1" - }, - "drop-shadow-x-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0px", - "uuid": "cb6d74fe-cc32-47ff-bf8b-74597643a8a6" - }, - "drop-shadow-y-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "1px", - "uuid": "ed1f46fd-a586-46a5-8cc1-d843a57e2cc2" - }, - "drop-shadow-y-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "2px", - "uuid": "d2d0320a-6984-4b3f-8f5d-ccb88892a26c" - }, - "drop-shadow-y-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "5d09089b-c0c5-4122-a3be-3e989562acda" - }, - "drop-shadow-blur-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "6px", - "uuid": "025e39f4-dfe7-4a8a-beb5-bd0577f72eac" - }, - "drop-shadow-blur-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "8px", - "uuid": "2b08d425-ecf2-4891-83cd-005a2d5e76ce" - }, - "drop-shadow-blur-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "34812e0c-7ccf-49c2-884a-6fecd45f7c5a" - }, - "drop-shadow-emphasized-default-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-100}", - "uuid": "5b611aa8-9db2-495d-a119-3385eee62442" - }, - "drop-shadow-emphasized-default-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-100}", - "uuid": "02949dd5-0596-44bc-8b63-dcc7d2ba628b" - }, - "drop-shadow-emphasized-default-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-100}", - "uuid": "57920fe8-72ad-48d2-aa9b-feec4c989106" - }, - "drop-shadow-emphasized-hover-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-200}", - "uuid": "d86f7c89-92a6-4bad-83b0-43953472ce7f" - }, - "drop-shadow-emphasized-hover-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-200}", - "uuid": "da17e314-f3e9-4d49-9362-533eb65c0f7b" - }, - "drop-shadow-emphasized-hover-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-200}", - "uuid": "5f6674e8-ef00-490a-800d-3b946059bae2" - }, - "drop-shadow-elevated-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-200}", - "uuid": "59324423-4428-40d7-a227-5f75aeb38312" - }, - "drop-shadow-elevated-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-200}", - "uuid": "45f313a5-1749-4b95-b5e3-20944adbea84" - }, - "drop-shadow-elevated-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-200}", - "uuid": "f3487a86-3aea-4527-8b5c-287c0bddad6c" - }, - "drop-shadow-dragged-x": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-x-300}", - "uuid": "be5c80b4-5769-491b-9550-fcf94f0c762e" - }, - "drop-shadow-dragged-y": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-y-300}", - "uuid": "ff8d4fda-72fa-4256-b2c8-f22a9d3e644f" - }, - "drop-shadow-dragged-blur": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{drop-shadow-blur-300}", - "uuid": "f6015252-21fb-48f9-aadb-5ad050e3d590" - }, - "gradient-stop-1-genai": { - "value": 0, - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "uuid": "1b4e100e-3266-4212-84c7-ee6995aaff83" - }, - "gradient-stop-2-genai": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.3333, - "uuid": "224504c9-be85-4402-8c96-e9b3e3b7a45f" - }, - "gradient-stop-3-genai": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, - "uuid": "57f4b9b1-4994-48b5-ad14-5683b0ab034b" - }, - "gradient-stop-1-premium": { - "value": 0, - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "uuid": "4cb26877-72bd-48e5-8266-6b29b1c2303d" - }, - "gradient-stop-2-premium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 0.6666, - "uuid": "579ad392-4529-457d-ab3e-4cef782beec1" - }, - "gradient-stop-3-premium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/gradient-stop.json", - "value": 1, - "uuid": "ace894a3-3aa5-4307-a80c-3881c8a31642" - }, - "window-to-edge": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{spacing-600}", - "uuid": "a3e53161-c38a-4ee0-88c2-4a36fd530e51" - }, - "component-size-maximum-perspective-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "96px", - "uuid": "437f2e57-2aa6-41b5-bdcc-e4993dc42168" - }, - "field-top-to-disclosure-icon-compact-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "6138a3a4-4d5f-42ae-b1eb-6d2b44b51072" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "bc3eee47-eb83-4ed7-9414-f9fbf620395b" - } - } - }, - "field-top-to-disclosure-icon-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "0516bc3d-36a1-4dcb-9d1d-1fce7c431890" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "2bdf7b47-450a-4da9-bddb-f4cef626c889" - } - } - }, - "field-top-to-disclosure-icon-spacious-small": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "0f68ff7a-b68e-4688-9da1-bbce083d2b98" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "178832d2-9ead-4804-a025-5883eec850d6" - } - } - }, - "field-top-to-disclosure-icon-compact-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "11px", - "uuid": "b1e50285-c36d-4d95-a609-255a39845436" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "45385813-55dc-4a9f-81f8-c77a482b7268" - } - } - }, - "field-top-to-disclosure-icon-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "15px", - "uuid": "54198ff3-d745-40b1-bcc0-2bca4fe1955e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "854384ce-1548-4e55-b19e-042b7a82db0e" - } - } - }, - "field-top-to-disclosure-icon-spacious-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "19px", - "uuid": "35900436-1a71-4a06-8b21-53b98398f7bc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "23px", - "uuid": "b7cde8bc-0553-4045-8fc1-edaf8f429950" - } - } - }, - "field-top-to-disclosure-icon-compact-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "101de772-de06-40dc-b3fb-9f3ff4ff4b45" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "d00bddef-eb79-4c0a-8794-52fa5b3d9b5c" - } - } - }, - "field-top-to-disclosure-icon-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "b7093f51-e97a-4cdc-b068-f00ef8bb6658" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "ef7a07e3-a405-4788-a62b-771b0db019a8" - } - } - }, - "field-top-to-disclosure-icon-spacious-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "a3ee5984-d111-47f6-98b7-ad96b525e1ef" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "27px", - "uuid": "14cb8fe0-892a-438f-a794-9b013ef96d96" - } - } - }, - "field-top-to-disclosure-icon-compact-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "39f7e2c2-219b-4f4d-a45a-c0e2e458312e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "88fbbbe8-6dda-4d11-8d13-ed0fabaf0088" - } - } - }, - "field-top-to-disclosure-icon-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "21px", - "uuid": "8ac99ac4-b63c-4824-a49f-35f0820cde81" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "4a5f821c-2703-48ba-85d2-15c922514839" - } - } - }, - "field-top-to-disclosure-icon-spacious-extra-large": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "25px", - "uuid": "ca7c26d4-38eb-4382-b524-a27c73a34b7a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "31px", - "uuid": "45f97901-f614-42bc-b22b-c0b6cebb945b" - } - } - }, - "component-padding-vertical-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "3px", - "uuid": "409b876c-ae13-4d31-8487-9bfcd9b8be69" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "262dd415-ea5d-4f07-9493-030ac33a2dce" - } - } - }, - "component-padding-vertical-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "4px", - "uuid": "6ff7a5b7-4344-4498-887d-3af9585035a7" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "5px", - "uuid": "ae87b22b-17dd-46a1-9c40-ec4fbe701e95" - } - } - }, - "component-padding-vertical-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "7px", - "uuid": "5b2e9907-858e-41f9-9c63-a37e30ec472e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "9px", - "uuid": "67715127-dfd9-44ed-a3bf-4816e9dafb34" - } - } - }, - "component-padding-vertical-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "10px", - "uuid": "2af29e94-8c2c-475c-bde0-4e3f2ebd5df4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "e5202547-d71b-4e1f-8d60-fe1e63cf18f9" - } - } - }, - "component-padding-vertical-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "13px", - "uuid": "894526c7-315d-4325-be16-8e99a8a2586b" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "17px", - "uuid": "ae78edbb-1b08-44d6-9c5a-37baf2fe94f6" - } - } - } -} diff --git a/docs/s2-tokens-viewer/tokens/src/semantic-color-palette.json b/docs/s2-tokens-viewer/tokens/src/semantic-color-palette.json deleted file mode 100644 index 7613cc33..00000000 --- a/docs/s2-tokens-viewer/tokens/src/semantic-color-palette.json +++ /dev/null @@ -1,551 +0,0 @@ -{ - "accent-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-100}", - "uuid": "2e080bb5-6f2c-4fd9-96a2-bf9fc19d2649" - }, - "accent-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "cf583998-4dfd-4222-a554-8e05ed7fb5d6" - }, - "accent-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-300}", - "uuid": "ea67f054-1f42-427e-a768-beb8d21de2a3" - }, - "accent-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-400}", - "uuid": "a249e4b1-e6f9-4ef3-96c6-1559059839a7" - }, - "accent-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-500}", - "uuid": "c1c0e6fb-ce21-49d7-91bb-73ce873aa69f" - }, - "accent-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-600}", - "uuid": "5a2000be-5640-4389-a128-b2c164ad2253" - }, - "accent-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-700}", - "uuid": "a8fbe39b-db6d-4bb4-a7c5-8a235060d2ae" - }, - "accent-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "87a2c8f0-54fd-4939-8f42-3124fde1e49e" - }, - "accent-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "90d82778-1cbb-47c0-aab9-b6e38a9cdc54" - }, - "accent-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "9bf3fa2f-75d3-44d3-ae30-d88893665366" - }, - "accent-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1100}", - "uuid": "f7f853a5-f091-4a7e-8aea-68d060c840f0" - }, - "accent-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1200}", - "uuid": "7c141cdb-1e5e-468a-ba48-0df01b275402" - }, - "accent-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1300}", - "uuid": "f7307eba-e311-41a8-bb50-0b1e96833dfa" - }, - "accent-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1400}", - "uuid": "06585cf4-a924-49b2-b6c8-f0e80b57c576" - }, - "accent-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1500}", - "uuid": "c43d9991-8929-4b1c-8631-670eef6bde83" - }, - "accent-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1600}", - "uuid": "4b70c929-f48d-403d-9607-5963203433dc" - }, - "informative-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-100}", - "uuid": "b9fc8b82-275a-49fe-98d7-95f136b48772" - }, - "informative-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-200}", - "uuid": "df4ceb7f-aa84-4d71-ab3f-a56146ef146c" - }, - "informative-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-300}", - "uuid": "0caae9f7-cad1-4cd6-b4a3-d47ac090d40a" - }, - "informative-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-400}", - "uuid": "46f3f214-5211-452b-8dc0-ffb7e9f9712b" - }, - "informative-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-500}", - "uuid": "546f860f-4e17-455a-a6eb-f7a6a3b37128" - }, - "informative-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-600}", - "uuid": "79a0fe09-63fb-4c96-a3bf-a8e126e7838c" - }, - "informative-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-700}", - "uuid": "04a018bd-229c-47da-99e9-d338d05f0fb6" - }, - "informative-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-800}", - "uuid": "b4efe4b2-3787-47df-a7a0-5d89c3641f9f" - }, - "informative-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-900}", - "uuid": "41b73196-0bc1-493e-9b5d-49f608914f5a" - }, - "informative-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1000}", - "uuid": "6b609325-2bcf-491a-ad38-1409025caae0" - }, - "informative-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1100}", - "uuid": "7bf54313-58b6-4581-b5ac-a2e51df4a9ed" - }, - "informative-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1200}", - "uuid": "4504d6a9-87f7-48ea-94a0-d075f28bbcff" - }, - "informative-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1300}", - "uuid": "f7a736c2-db44-4668-90a8-c27778ae9892" - }, - "informative-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1400}", - "uuid": "b178b13b-93ee-422c-af98-3bf89105754b" - }, - "informative-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1500}", - "uuid": "beeee44c-dc6b-4892-949e-67f069fc4a94" - }, - "informative-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{blue-1600}", - "uuid": "68aa069d-d8a6-413a-b330-0ec6af905e6d" - }, - "negative-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-100}", - "uuid": "c37f795e-e338-4220-b0ab-5cf899f114c0" - }, - "negative-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-200}", - "uuid": "14919f0c-a40f-48d1-adfd-55826de8e600" - }, - "negative-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-300}", - "uuid": "53486ec0-79f7-4853-ad5b-dacc5a904f8a" - }, - "negative-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-400}", - "uuid": "de87c624-7f43-406e-8cdf-584343a55edc" - }, - "negative-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-500}", - "uuid": "67d09223-03a0-444a-95b6-645a2d66f8c7" - }, - "negative-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-600}", - "uuid": "4a0c11a4-4e77-43e0-a2cd-9931ac51d87d" - }, - "negative-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-700}", - "uuid": "b7d5d2db-0282-436b-8cb0-873e891b22a6" - }, - "negative-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-800}", - "uuid": "d858b481-8970-4547-aed1-b6388c36aba4" - }, - "negative-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-900}", - "uuid": "0b469d2e-7c66-4188-b6bf-bbc379f75538" - }, - "negative-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1000}", - "uuid": "2ea616aa-e08f-47cb-a3b0-3d7a06bd6ec2" - }, - "negative-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1100}", - "uuid": "8a3dacc3-93f7-4e22-8bd7-c338da1a2489" - }, - "negative-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1200}", - "uuid": "1b24f4e8-224c-41f9-b0eb-6a01e9261598" - }, - "negative-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1300}", - "uuid": "fa641bdd-0714-4ae4-9a8f-8d829a9977e5" - }, - "negative-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1400}", - "uuid": "58824d04-e2c0-4f0c-a3d7-9b88a01bf28d" - }, - "negative-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1500}", - "uuid": "b4c1f747-e665-43bb-a1a9-1bf9f252471d" - }, - "negative-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{red-1600}", - "uuid": "62beb7ee-c347-4cd7-a84b-40c84fcbc135" - }, - "notice-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-100}", - "uuid": "d0382c45-0cf7-4c3b-89fb-3536459cbc31" - }, - "notice-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-200}", - "uuid": "b9218264-6bd0-4fee-8ab7-346428c9bbaa" - }, - "notice-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-300}", - "uuid": "f1e8d13d-d9d2-46ea-befe-ebf1927e08dd" - }, - "notice-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-400}", - "uuid": "77535709-6e67-4d7c-aaeb-d2dea1918430" - }, - "notice-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-500}", - "uuid": "ab679012-b7cb-4f24-b401-b02e523d7c99" - }, - "notice-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-600}", - "uuid": "716af828-c64d-465d-8476-d142892ca59c" - }, - "notice-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-700}", - "uuid": "adb5159c-654f-4b9a-a101-3afa90328c42" - }, - "notice-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-800}", - "uuid": "a83cdd4d-b8a9-42af-98c4-459f721abbff" - }, - "notice-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-900}", - "uuid": "df87ca09-ff38-485e-90f7-6d9cbfbb6714" - }, - "notice-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1000}", - "uuid": "d6fdcf63-c135-48a0-a767-e8f1e93e8190" - }, - "notice-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1100}", - "uuid": "c30c4ce0-ed40-44eb-ae0b-3549523d5bc9" - }, - "notice-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1200}", - "uuid": "7e22e4fe-bd28-4dac-b518-e35ec6900da3" - }, - "notice-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1300}", - "uuid": "197c8ecc-3d6a-46e5-82f2-c315a52169fb" - }, - "notice-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1400}", - "uuid": "4eccc44a-1cd5-4d9e-8627-18f7a363d3c8" - }, - "notice-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1500}", - "uuid": "3da89d37-cf33-4408-b316-05bb61c25759" - }, - "notice-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{orange-1600}", - "uuid": "67e534f5-5421-493c-9324-624f0fd491f3" - }, - "positive-color-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-100}", - "uuid": "09503086-ccd2-4dfb-9bc1-6b86cf595976" - }, - "positive-color-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-200}", - "uuid": "00a2adcc-7b8a-4e94-97d2-51a647016265" - }, - "positive-color-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-300}", - "uuid": "2c75e63f-e628-487d-a143-e03de065d5ee" - }, - "positive-color-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-400}", - "uuid": "906a05ca-0b2f-4ada-9e71-507d9f0653be" - }, - "positive-color-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-500}", - "uuid": "b2e94182-57ae-479d-ab91-717edc0ec3f6" - }, - "positive-color-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-600}", - "uuid": "d3a018bf-0abe-4031-8c38-80a94b0d62ae" - }, - "positive-color-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-700}", - "uuid": "ffdde321-5c1d-489e-8a0f-afc582248594" - }, - "positive-color-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-800}", - "uuid": "ee02d9d5-b840-44af-be8a-0f10086e8f7e" - }, - "positive-color-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-900}", - "uuid": "1cd86108-ff79-4ccf-911e-8de9986c9053" - }, - "positive-color-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1000}", - "uuid": "82d9fc42-d750-43d2-b227-b8df29abaca4" - }, - "positive-color-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1100}", - "uuid": "05f42672-455e-421c-8a7e-cb187355d23d" - }, - "positive-color-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1200}", - "uuid": "c4f84a4a-cfc4-42a6-81d4-11f27e1b38eb" - }, - "positive-color-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1300}", - "uuid": "7d2d9fe7-5498-4f73-be6a-3a4ac91b6e15" - }, - "positive-color-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1400}", - "uuid": "eb2fdab7-ea9e-42a3-a3d1-f9beec0c7b66" - }, - "positive-color-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1500}", - "uuid": "2381ba55-11ff-4ef0-a770-dfd402650d5d" - }, - "positive-color-1600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{green-1600}", - "uuid": "de206438-991f-4580-8aa1-1488acb03a09" - }, - "negative-subdued-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-subtle-background-color-default}", - "uuid": "a553db3e-a051-4023-87eb-da6545b983b2", - "deprecated": true - }, - "negative-subdued-background-color-hover": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-300}", - "uuid": "9513cf13-8537-443f-81ce-f9d88292ba32", - "deprecated": true - }, - "negative-subdued-background-color-down": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-300}", - "uuid": "1eea917c-52e7-4295-b0e1-d33c2e73a137", - "deprecated": true - }, - "negative-subdued-background-color-key-focus": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-300}", - "uuid": "4b6aaf76-e0ab-4be0-81c0-d5f64cacee88", - "deprecated": true - }, - "informative-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-200}", - "uuid": "62dfb07f-5eee-451c-9c77-745d8f714766" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-300}", - "uuid": "4cbe010f-0608-47e3-bf27-c7da70a70b9e" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-color-200}", - "uuid": "71ebebf0-95e7-45f7-9f6f-d14ef51cf4f0" - } - } - }, - "positive-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-200}", - "uuid": "57a1aa8f-5c06-4ff6-8d1c-0e278a433ebf" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-300}", - "uuid": "c7644c81-1b2c-40ee-b3a6-b25e88fc34ea" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-color-200}", - "uuid": "531be3e1-ddfa-4d3b-9a7f-73d7f0e38cd9" - } - } - }, - "notice-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-200}", - "uuid": "f0799e87-dbb2-4e71-8253-65f45eddc078" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-300}", - "uuid": "c9bfd62b-95c7-47d3-bace-ce3f2bfaade8" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-color-200}", - "uuid": "163958bd-7303-4328-ad3c-b04f8dacaf32" - } - } - }, - "negative-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-200}", - "uuid": "8e9429cf-4c89-47be-bc6e-eeecc632aeb1" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-300}", - "uuid": "c7575b76-8035-4037-8bd5-e8bdb82bddc3" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-color-200}", - "uuid": "ea3ceaa2-235b-4c55-88b2-c0d744434d83" - } - } - }, - "icon-color-informative": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{informative-visual-color}", - "uuid": "2296b0de-6231-4f89-9992-499b67c6879c" - }, - "icon-color-neutral": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{neutral-visual-color}", - "uuid": "29f5b73c-e8e8-4162-b9af-5a8e327baab8" - }, - "icon-color-positive": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{positive-visual-color}", - "uuid": "02f093b3-ab51-42e7-8f6e-26bc7c7cba63" - }, - "icon-color-notice": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{notice-visual-color}", - "uuid": "4bdb8681-f7a1-4bbe-b788-a64c6f9df6ea" - }, - "icon-color-negative": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{negative-visual-color}", - "uuid": "adf2a3f0-d1cd-4b53-8a9c-47ab9cb7bb0f" - }, - "accent-subtle-background-color-default": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/color-set.json", - "sets": { - "light": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-200}", - "uuid": "97293b77-c21d-4ba1-bd2c-5d1de37d75eb" - }, - "dark": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-300}", - "uuid": "c120499e-98c4-442d-971f-31dee8d16c4d" - }, - "wireframe": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{accent-color-200}", - "uuid": "5c9c8a1c-c4ac-45e5-ba5f-b08edd9f4297" - } - } - } -} diff --git a/docs/s2-tokens-viewer/tokens/src/typography.json b/docs/s2-tokens-viewer/tokens/src/typography.json deleted file mode 100644 index f3920984..00000000 --- a/docs/s2-tokens-viewer/tokens/src/typography.json +++ /dev/null @@ -1,2289 +0,0 @@ -{ - "default-font-family": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "45d43d4e-a4e4-4c5f-94ec-644a81300eb0" - }, - "letter-spacing": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0em", - "uuid": "d8caf3aa-1261-411f-b383-18f87334c117" - }, - "text-align-start": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "start", - "uuid": "3a7f9e91-6e1a-4937-a6d2-6c39566dc875" - }, - "text-align-center": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "center", - "uuid": "df252e5a-f115-471d-bb35-c79e733d868b" - }, - "text-align-end": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "end", - "uuid": "a0c425b3-668b-4413-8739-c7844b26ebad" - }, - "sans-serif-font-family": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", - "value": "Adobe Clean Spectrum VF", - "uuid": "a552c422-c51c-458a-87b0-c6fe5178bf4b" - }, - "serif-font-family": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", - "value": "Adobe Clean Serif", - "uuid": "7f83198f-26ec-4156-9573-826dd7feb718" - }, - "cjk-font-family": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", - "value": "Adobe Clean Han", - "uuid": "034892ba-eff6-4193-b4c5-61d20c8f22eb" - }, - "light-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "light", - "uuid": "fd477873-3767-4883-ab3f-5ee2758b923b" - }, - "regular-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "regular", - "uuid": "02a94ddf-1007-4c86-8863-905874e40f95" - }, - "medium-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "medium", - "uuid": "c966c3b6-1bf5-4064-89f9-00d9ec673fd4" - }, - "bold-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "bold", - "uuid": "ff246e6b-7515-49a2-9dc6-8cdf1ea9b2d8" - }, - "extra-bold-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "extra-bold", - "uuid": "ccadf44e-5424-4920-979f-ea1ef39687c4" - }, - "black-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "black", - "uuid": "e2f23ca1-802b-40a2-a211-33090f9a043e" - }, - "italic-font-style": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json", - "value": "italic", - "uuid": "9a58e4ae-dfa1-428b-9d90-11f4275418da" - }, - "default-font-style": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json", - "value": "normal", - "uuid": "25668698-bf78-46f4-bc6c-8fea068ddb34" - }, - "font-size-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "10px", - "uuid": "26ab49ea-7e86-4f0d-812e-ef1ba794c8a8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "12px", - "uuid": "5946a4e5-8bed-4dd7-aa73-9ebe232f9790" - } - } - }, - "font-size-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "11px", - "uuid": "8593a326-de37-414d-b3f6-5254b41dce07" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "13px", - "uuid": "b7561ce1-e12e-4aed-9766-181f7eca309e" - } - } - }, - "font-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "12px", - "uuid": "55d90327-8cc9-4d4f-891f-9d42751d989a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "15px", - "uuid": "07e1c2a8-3925-4d71-8fae-3486483ff44c" - } - } - }, - "font-size-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "14px", - "uuid": "938e2d24-1e90-48f0-a596-595a69103707" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "17px", - "uuid": "2f9ee3cf-ccb1-4f0b-aed6-96e472fb7411" - } - } - }, - "font-size-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "16px", - "uuid": "b36caaa3-7047-4dfb-8a84-f990a8ac3a91" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "19px", - "uuid": "7e51ff4e-2749-49d1-b9ed-75de92a73991" - } - } - }, - "font-size-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "18px", - "uuid": "3dc9b6a4-77e3-484b-be8c-fbc2f50e6175" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "22px", - "uuid": "9b9a7175-dcca-43aa-98ce-f1c3e4eefda7" - } - } - }, - "font-size-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "20px", - "uuid": "292a28d6-2e15-46e2-80cd-5171d977e9b5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "24px", - "uuid": "d5ed0e8d-01ac-495f-bd15-fecc30af17c4" - } - } - }, - "font-size-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "22px", - "uuid": "9be56e29-2e79-41e0-b5a9-6a2dabc70aa1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "27px", - "uuid": "a69a5079-1b5b-4ccf-946f-8b6e3fae4d7e" - } - } - }, - "font-size-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "25px", - "uuid": "db1d7d01-8dd4-4c27-b58c-686f030e5e46" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "31px", - "uuid": "ac892307-2559-48f5-9e2c-98dabbb0abc2" - } - } - }, - "font-size-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "28px", - "uuid": "77da1638-cb39-4c80-8c13-db77b9aa528e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "34px", - "uuid": "6bd6456c-b73b-4926-8e67-7b942e32bbc2" - } - } - }, - "font-size-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "32px", - "uuid": "8425654d-7f46-4b6d-8997-5ae6b6980e06" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "39px", - "uuid": "bdfae93d-ae49-456b-af54-8620ea976ca8" - } - } - }, - "font-size-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "36px", - "uuid": "df2d6c8d-dc03-4581-96c6-d6a92a270b77" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "44px", - "uuid": "5296e771-6d04-4e9a-b1fe-ab22d4dfd92b" - } - } - }, - "font-size-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "40px", - "uuid": "27f694f9-6770-49e0-b7fc-833618b3fc2f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "49px", - "uuid": "8b158ab0-7e82-4dab-a4d9-84cf7a71fa0a" - } - } - }, - "font-size-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "45px", - "uuid": "00dc3fcd-383f-4bc6-8940-e0884f0ffb7e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "55px", - "uuid": "5eb96c78-c8f6-4e31-9bc8-fa62794ac4db" - } - } - }, - "font-size-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "51px", - "uuid": "b73bfb12-80ef-453f-b7dc-52bf2258ef47" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "62px", - "uuid": "0ab38fb2-0de9-4be0-8967-8241379706be" - } - } - }, - "font-size-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "58px", - "uuid": "e8853e10-cc03-47c1-9b66-11755ff513a5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "70px", - "uuid": "bd880141-81f6-47fe-a421-01124fe66b67" - } - } - }, - "font-size-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "65px", - "uuid": "5af5e5bd-fc76-4688-aae9-6e7528d41341" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "79px", - "uuid": "999b22ec-e19e-4fee-a1db-3cb89c58a51c" - } - } - }, - "font-size-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "73px", - "uuid": "509b3100-9034-4b23-adb0-8c56dbd72a48" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "88px", - "uuid": "94741f6e-8c95-4329-8e06-d6f261e5b0eb" - } - } - }, - "line-height-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.3, - "uuid": "dd125d1d-cf4d-45c8-ab21-52331a9a264b" - }, - "line-height-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, - "uuid": "832f2589-0e75-48dd-bbe3-e3f5b98e6c97" - }, - "cjk-line-height-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, - "uuid": "8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4" - }, - "cjk-line-height-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.7, - "uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015" - }, - "cjk-letter-spacing": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{letter-spacing}", - "uuid": "12e27721-35f5-4d03-95f3-3fc9e1cf50e4" - }, - "heading-sans-serif-font-family": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "234d7b9d-bddc-4988-8be5-ef5e41e08185" - }, - "heading-serif-font-family": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{serif-font-family}", - "uuid": "f2430818-41b5-439a-8347-6b384e78d141" - }, - "heading-cjk-font-family": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-font-family}", - "uuid": "b6652ee5-466f-4117-a77c-a93a40f2a791" - }, - "heading-sans-serif-light-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{light-font-weight}", - "uuid": "ff84a748-5923-451d-967c-a346d2dee46c", - "deprecated": true - }, - "heading-sans-serif-light-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c5551fd5-4ee2-4c93-b91f-9ed295fa63a4", - "deprecated": true - }, - "heading-serif-light-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "66958795-6459-4750-8c68-dc39ab383837", - "deprecated": true - }, - "heading-serif-light-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "5f30418a-aa76-434e-bca9-902d5be0d929", - "deprecated": true - }, - "heading-cjk-light-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{light-font-weight}", - "uuid": "9da0ba4c-b4e3-4052-8b2e-d2fde714bb9d", - "deprecated": true - }, - "heading-cjk-light-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b5704c75-2914-4268-9023-7f7452e826c1", - "deprecated": true - }, - "heading-sans-serif-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "1d4d09b4-021a-48e8-a724-bfecc13df325" - }, - "heading-sans-serif-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "561d905e-7f44-43da-b2b4-26e12551ef6d" - }, - "heading-serif-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "350aa193-9996-49c8-b5e4-54d4f7bef3c2" - }, - "heading-serif-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "938f3684-44c6-4ae2-935a-b88921fcd7fe" - }, - "heading-cjk-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "bd54516c-2fda-4421-ab62-720c3a887a34" - }, - "heading-cjk-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c93b39df-82e9-4e87-920f-1747e5d48e8e" - }, - "heading-sans-serif-heavy-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "ef13b8f0-f686-492d-990f-691ec91ebb96" - }, - "heading-sans-serif-heavy-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "0c4cdd06-8180-40b1-9b1f-d7d973a7b772" - }, - "heading-serif-heavy-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "6b74c5ea-6bf4-46bb-bee1-3841606f1500" - }, - "heading-serif-heavy-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "14532cb8-6c88-46ce-886b-96fac971e7b9" - }, - "heading-cjk-heavy-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "73c20d2f-1227-46bc-8548-102358405b0b" - }, - "heading-cjk-heavy-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b2f50ba2-e694-47ba-b81a-ea8fc813247e" - }, - "heading-sans-serif-light-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "75437f9a-7ee8-4194-b4b3-0746be097396", - "deprecated": true - }, - "heading-sans-serif-light-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "67271ca0-c9fd-4047-a615-6314d7333f7a", - "deprecated": true - }, - "heading-serif-light-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "29ad1c96-62e4-4143-88e8-fc8e08913a52", - "deprecated": true - }, - "heading-serif-light-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "73906871-24e5-48cc-9140-ec700c08d144", - "deprecated": true - }, - "heading-cjk-light-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "5ca91bc2-215b-4cbb-b966-80bfffd569ad", - "deprecated": true - }, - "heading-cjk-light-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "be854057-43b1-40ce-bdc7-69960cd7638c", - "deprecated": true - }, - "heading-sans-serif-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "79275989-91ed-408a-b884-a31d9f8bac26" - }, - "heading-sans-serif-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "2117cb6e-67f7-4509-b4fb-e9e442b6dc0e" - }, - "heading-serif-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "6df0fb95-4aa0-4c67-896d-fa6aa3d34e95" - }, - "heading-serif-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "2e0ef484-406a-4902-995d-9a3d5177ec12" - }, - "heading-cjk-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "eaf179aa-4514-4206-b3e2-a99b7d4d2029" - }, - "heading-cjk-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "4f061165-0e86-46b9-83c3-c95eeb8ff956" - }, - "heading-sans-serif-heavy-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "2104c3c2-d834-436a-a26d-508056f1013d" - }, - "heading-sans-serif-heavy-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "86775b10-5682-49fb-9d38-6bdb857da801" - }, - "heading-serif-heavy-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "af0010c7-5134-4fe4-bee1-bbb7dd31de3a" - }, - "heading-serif-heavy-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b2875bbe-b5cb-452f-b7d6-3dcb4fc59921" - }, - "heading-cjk-heavy-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "b7d2203c-c651-493e-80c2-b71b7c7c2692" - }, - "heading-cjk-heavy-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "26817f91-2742-4170-aa01-1e1e67ef01e8" - }, - "heading-sans-serif-light-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{light-font-weight}", - "uuid": "e882ea46-8f0a-4313-84f5-85bb8d9f1f5e", - "deprecated": true - }, - "heading-sans-serif-light-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "5f88eb81-7052-4c21-9896-f14cb09f0e70", - "deprecated": true - }, - "heading-serif-light-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "b5f79fde-07f7-4c07-897e-0bfdf27e2839", - "deprecated": true - }, - "heading-serif-light-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "7bd831cd-3fe0-402b-a105-f65b8e8023e2", - "deprecated": true - }, - "heading-cjk-light-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "aea9787b-ee0b-40cc-9089-5973e52b18bd", - "deprecated": true - }, - "heading-cjk-light-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "dac03eec-6910-4176-bfca-33f8a57cf3d7", - "deprecated": true - }, - "heading-sans-serif-emphasized-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "e4a183fd-53c5-4dbb-afd1-6308e2e74f80" - }, - "heading-sans-serif-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "2f17833a-28a4-4152-8999-12b077557797" - }, - "heading-serif-emphasized-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "a0983216-b0c5-4a3f-97dc-96ee711acb1f" - }, - "heading-serif-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "fe694554-832d-457d-a320-f02629f9c441" - }, - "heading-cjk-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "d854afd2-290a-40ae-a627-c4cdabeb546a" - }, - "heading-cjk-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "05c74b28-3051-498c-874a-5dc523bc27e5" - }, - "heading-sans-serif-heavy-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "a7cb3274-e48e-435b-a066-32027ac19e84" - }, - "heading-sans-serif-heavy-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "924c338f-7141-490a-a842-ad632c26160c" - }, - "heading-serif-heavy-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "82e9d579-8918-4114-bafa-3a9757556f84" - }, - "heading-serif-heavy-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "a18ac621-eade-4224-9660-3e9a080219ec" - }, - "heading-cjk-heavy-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "9315971c-6e83-42c8-9c24-d1bc6fa5e106" - }, - "heading-cjk-heavy-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "aef21944-3dac-4b2d-ba7b-0a4df3f406bb" - }, - "heading-sans-serif-light-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "c297a503-fc3c-4939-8c5a-6611b9b04719", - "deprecated": true - }, - "heading-sans-serif-light-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "bc5d65e0-e13a-424c-a260-9268a0dee66c", - "deprecated": true - }, - "heading-serif-light-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "98c61df3-057d-4345-881e-0c04628757f3", - "deprecated": true - }, - "heading-serif-light-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "71c8e302-6bc1-4f45-b804-c847dd153d1b", - "deprecated": true - }, - "heading-cjk-light-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "83cc347c-7a1a-4665-9de4-cf19903f1043", - "deprecated": true - }, - "heading-cjk-light-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "9136e25e-563b-4485-bad7-41809d5317de", - "deprecated": true - }, - "heading-sans-serif-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "9d834e30-53c1-4cea-9e17-2326038cb6cb" - }, - "heading-sans-serif-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "f692d35f-1b11-43d1-ad29-967436b90928" - }, - "heading-serif-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "cd32f2b7-3e9f-47ae-ad34-2c7783dd5b2f" - }, - "heading-serif-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "da6e1593-9d2a-4fd8-8877-d30d6e1d1c07" - }, - "heading-cjk-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "0080a817-b26f-42f1-84c4-5ed1ac08c12c" - }, - "heading-cjk-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "22934d4d-4952-40a7-a5e5-256a7a3c9371" - }, - "heading-sans-serif-heavy-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "8779e773-7b37-4eb0-ae7a-2ba0104ad9d5" - }, - "heading-sans-serif-heavy-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "c20ea22a-c34d-4c7c-a816-75b533e28c92" - }, - "heading-serif-heavy-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "2d8e76cd-f123-488d-893d-54a9f48f679e" - }, - "heading-serif-heavy-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "adf303e8-1e27-4aec-9bbc-5abe166358ec" - }, - "heading-cjk-heavy-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "a0f680fa-2453-4bcc-b06c-9ff82de50c0c" - }, - "heading-cjk-heavy-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "619a15ba-f74e-4ff4-a604-312b810f1a50" - }, - "heading-size-xxxl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1300}", - "uuid": "db884bf9-e7b5-420a-b408-bd9a4d6bb0a4" - }, - "heading-size-xxl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1100}", - "uuid": "464e34cd-e768-4a38-a72b-cae1a4852ef3" - }, - "heading-size-xl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-900}", - "uuid": "94bb5ad9-503a-428a-a8ba-6cf3f70592ac" - }, - "heading-size-l": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-700}", - "uuid": "336e434c-9026-4bb3-96b1-5bb44376b868" - }, - "heading-size-m": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "4cdcefe1-2006-4560-839f-5bdef6db8c1a" - }, - "heading-size-s": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "96673fee-b75c-4867-9041-48362af044bc" - }, - "heading-size-xs": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "4f179af6-c31f-48f8-927c-a45150668ad3" - }, - "heading-size-xxs": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "82a831b4-b624-475b-b2be-4eb949e48626", - "deprecated": true - }, - "heading-cjk-size-xxxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1400}", - "uuid": "3b954e15-341a-40f4-a47e-9abd2813fec4" - }, - "heading-size-xxxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1500}", - "uuid": "517d86cc-2e66-4cdc-8841-cb32db9e56f4" - }, - "heading-cjk-size-xxxl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1200}", - "uuid": "5a44e177-2478-4bb0-9212-ba2df64c8b00" - }, - "heading-cjk-size-xxl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1000}", - "uuid": "fbf59302-1ad2-4327-bfde-d638a0ca2429" - }, - "heading-cjk-size-xl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-800}", - "uuid": "43535e5f-607e-43f4-bd37-8230b1f7993f" - }, - "heading-cjk-size-l": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-600}", - "uuid": "f57ffe02-2e41-46f3-a0ac-1feb63bdd748" - }, - "heading-cjk-size-m": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "43f45659-314b-45aa-9886-1beb096fc4ce" - }, - "heading-cjk-size-s": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "c1242a8c-ca10-40d0-8fc4-67bbbce8fc5f" - }, - "heading-cjk-size-xs": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "132688a7-917d-44b9-a34f-a7135599b299" - }, - "heading-cjk-size-xxs": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "bddd6a96-c280-47ca-8858-20df055e488d", - "deprecated": true - }, - "heading-line-height": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-100}", - "uuid": "64f28fe4-20f7-48cb-baeb-ff1898573727" - }, - "heading-cjk-line-height": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-100}", - "uuid": "3e038db9-c5f7-4b8b-b1af-31075a31e0cc" - }, - "heading-margin-top-multiplier": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, - "uuid": "008fa04b-6d74-416b-a6ae-ceec90f08642" - }, - "heading-margin-bottom-multiplier": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, - "uuid": "dd2035b4-506f-41ab-a656-de3668d44e0f" - }, - "heading-color": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "60300cd2-9b30-4ee3-b7a1-b8dae00270d9" - }, - "body-sans-serif-font-family": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "32c3d84f-2b0d-4ccd-ba3c-b8475d82550b" - }, - "body-serif-font-family": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{serif-font-family}", - "uuid": "20df8bd4-5a61-4614-aa86-5b76c5976860" - }, - "body-cjk-font-family": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-font-family}", - "uuid": "06d5790c-21e9-4135-843d-05007b046677" - }, - "body-sans-serif-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "6813005d-9df4-459b-9fab-b2a054c32c31" - }, - "body-sans-serif-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "e1da0eff-7482-46a0-8190-4c54c6b1e1dd" - }, - "body-serif-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "f049ba7a-c52f-4d39-b38e-911b2b91d031" - }, - "body-serif-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "d317d387-9bc8-4258-a79a-a0dd4e22d952" - }, - "body-cjk-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "a754c16b-2f0c-485f-813d-d472ee650660" - }, - "body-cjk-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "41389b62-c449-485b-bfa8-1659bacc8c42" - }, - "body-sans-serif-strong-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "633953a9-c61b-44cc-9dee-aebece97ccbc" - }, - "body-sans-serif-strong-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b36db31f-eaaa-4310-9f54-f7b509d5f571" - }, - "body-serif-strong-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "be263571-bd6b-4383-bdf9-3cdf80248b6a" - }, - "body-serif-strong-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c8b531d1-949e-4492-9897-450a477983ce" - }, - "body-cjk-strong-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "d79de2c4-ca7c-4316-ac44-fee1a66983d7" - }, - "body-cjk-strong-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "11fe09ad-92eb-4d7d-8872-467cdd69659b" - }, - "body-sans-serif-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "5640ac73-a482-4787-9ab2-035b57a87833" - }, - "body-sans-serif-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "717c067c-55d1-4927-ad9c-8784769f581d" - }, - "body-serif-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "be2a8ff3-6117-4235-bcb8-72257b75d622" - }, - "body-serif-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "c817210d-2b1a-4648-bff3-33fa212491f1" - }, - "body-cjk-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "0d8ada2f-272d-4f76-bf37-095e0b48cdae" - }, - "body-cjk-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "3e90be19-62fd-4e53-abf9-4c697baba5da" - }, - "body-sans-serif-strong-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "421dc907-5862-4ed5-95f4-41d654b2fdc0" - }, - "body-sans-serif-strong-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "b87e6738-af38-49be-9945-f3a307ce7b6f" - }, - "body-serif-strong-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "a87b77ff-5b27-47e0-a7df-f15092fb783e" - }, - "body-serif-strong-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "b940bdc8-d373-4bd0-8620-d6c04134698b" - }, - "body-cjk-strong-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "54020791-a975-4e5d-a905-8bffcc9d2d93" - }, - "body-cjk-strong-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "f792aac0-62f2-47e3-b6ac-158ae009d9c3" - }, - "body-size-xxxl": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-600}", - "uuid": "e0b8ceea-3404-4c4b-9145-fe5d445020fe" - }, - "body-size-xxl": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "4d0d4ed9-af14-4d88-98f1-9237f65e192a" - }, - "body-size-xl": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "3927604f-eaf3-4605-aa34-80b7bc88ac0f" - }, - "body-size-xxs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "3aa79ac7-9e78-4413-b500-b8d1937705cb" - }, - "body-cjk-size-xxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "71a41f9e-73da-4632-8877-7af7acf4db03" - }, - "body-cjk-size-xxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "9aab03eb-c0c1-462c-aa7c-88c93b06f714" - }, - "body-cjk-size-xl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "25d65a6e-e8e1-4849-848a-984373fd9cf9" - }, - "body-cjk-size-l": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "9f0e0ddb-a4d2-416e-a425-8d71527f77b2" - }, - "body-cjk-size-m": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "7e01bc65-5823-456f-a830-9848a96ad85a" - }, - "body-cjk-size-s": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "081aa502-e2f1-4bc8-8fb2-a00dcd4236dd" - }, - "body-cjk-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "ba73926d-2ef4-4d7b-86c2-9044aa1cdf95" - }, - "body-cjk-size-xxs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "218f04ed-0679-4090-b1ad-76ef062dd07c" - }, - "body-size-l": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "884b74cb-d247-491d-acb9-d3dc84bfd9a6" - }, - "body-size-m": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "4f7f6878-5304-48d3-8a42-5bb452c2163b" - }, - "body-size-s": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "1194f7e3-e4c3-4a3a-bd19-50f4b48e1a6e" - }, - "body-size-xs": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "25e93322-8f0b-45f8-ae9a-18668251f064" - }, - "body-line-height": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-200}", - "uuid": "39accad7-3de1-4850-9773-4e0ff8080049" - }, - "body-cjk-line-height": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-200}", - "uuid": "2106b188-8520-4261-968b-2eb2928857f9" - }, - "body-margin-multiplier": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.75, - "uuid": "8f2e9283-4cbc-4374-9757-ed8d68542c89" - }, - "body-color": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "a7218010-91c1-4f20-8072-7b1801593014" - }, - "detail-sans-serif-font-family": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "34101c26-b4cd-43aa-bddd-0758d21fef01" - }, - "detail-serif-font-family": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{serif-font-family}", - "uuid": "365c6166-e17d-40bd-841e-495aa9c6acd7" - }, - "detail-cjk-font-family": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-font-family}", - "uuid": "6cc647ab-1474-4094-974d-d079d7ef7565" - }, - "detail-sans-serif-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", - "uuid": "d06a4346-ec24-4922-8985-4b8a05e0bfc6" - }, - "detail-sans-serif-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "21a9500c-f9a4-4ff3-9eb5-6da81bf314f6" - }, - "detail-serif-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", - "uuid": "87ef8843-f44e-4526-80cd-9635f3e0261e" - }, - "detail-serif-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "524c5101-f745-47e6-b233-62cd005850f8" - }, - "detail-cjk-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "9b11f80a-7600-4a6b-a366-218ba320a5cc" - }, - "detail-cjk-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "4d2a9b37-101b-4025-95d6-aba18b701a58" - }, - "detail-sans-serif-light-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3", - "deprecated": true - }, - "detail-sans-serif-light-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e", - "deprecated": true - }, - "detail-serif-light-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb", - "deprecated": true - }, - "detail-serif-light-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7", - "deprecated": true - }, - "detail-cjk-light-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{light-font-weight}", - "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38", - "deprecated": true - }, - "detail-cjk-light-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131", - "deprecated": true - }, - "detail-sans-serif-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "a150e66c-daf4-4c71-a2e2-577600878988" - }, - "detail-sans-serif-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c56642f3-043c-4738-bed0-61b324221f4e" - }, - "detail-serif-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "d737931b-f63c-4874-8fa5-872b95048727" - }, - "detail-serif-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "3b2124e3-e50b-4ab7-8340-f97b1f8fef1e" - }, - "detail-cjk-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "ef2997f3-276c-4662-8644-9514590114f4" - }, - "detail-cjk-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "653358fc-5ee4-4e97-affc-c56896d370c0" - }, - "detail-sans-serif-light-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5", - "deprecated": true - }, - "detail-sans-serif-light-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba", - "deprecated": true - }, - "detail-serif-light-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b", - "deprecated": true - }, - "detail-serif-light-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80", - "deprecated": true - }, - "detail-cjk-light-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "91231878-73dc-46ce-a277-1d14e0e36842", - "deprecated": true - }, - "detail-cjk-light-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230", - "deprecated": true - }, - "detail-sans-serif-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "6ca600be-010a-4aaa-a815-e5bfdbe36b21" - }, - "detail-sans-serif-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "5c7dcef1-514e-4d43-b2ef-76639e214b8c" - }, - "detail-serif-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", - "uuid": "247b2004-e0bc-42b9-ba83-6edbe417c4cb" - }, - "detail-serif-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "cfaf6a70-3eb5-4887-bae6-8ae41c094192" - }, - "detail-cjk-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "aa70fa2d-87ee-4e67-b230-85f400ddd7d1" - }, - "detail-cjk-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "3dca0579-91c4-4f60-a2a6-25f16eb673b3" - }, - "detail-sans-serif-light-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "64972012-5050-41d0-9c9b-269b533a58b7", - "deprecated": true - }, - "detail-sans-serif-light-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "fc6098a2-3263-433c-8378-ba609629ef53", - "deprecated": true - }, - "detail-serif-light-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2", - "deprecated": true - }, - "detail-serif-light-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857", - "deprecated": true - }, - "detail-cjk-light-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40", - "deprecated": true - }, - "detail-cjk-light-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b", - "deprecated": true - }, - "detail-sans-serif-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "c57f8682-52d2-43fa-a306-a588a13ead6b" - }, - "detail-sans-serif-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "82d04795-da5f-4868-a90d-980f5376a878" - }, - "detail-serif-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "863cf841-7b83-4f66-a01f-12dccd47fee6" - }, - "detail-serif-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "7fdffa4e-4370-45cf-aab0-316561a56a24" - }, - "detail-cjk-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "a7007c07-15a4-4671-bd3b-7406f4b374bb" - }, - "detail-cjk-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "75a3a4ec-2b57-4a49-b3bd-84b41a3cd314" - }, - "detail-sans-serif-light-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486", - "deprecated": true - }, - "detail-sans-serif-light-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d", - "deprecated": true - }, - "detail-serif-light-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2", - "deprecated": true - }, - "detail-serif-light-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b", - "deprecated": true - }, - "detail-cjk-light-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d", - "deprecated": true - }, - "detail-cjk-light-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a", - "deprecated": true - }, - "detail-size-xl": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "ab476eec-b592-4890-af8f-74de808cb87f" - }, - "detail-size-l": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "613da587-5c48-4efa-abb5-36378c1e81f0" - }, - "detail-size-m": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "07840554-1ec1-4823-b119-474ec9cc31f0" - }, - "detail-size-s": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "585e1bec-ee93-4983-b0bb-3a1f6ec28218" - }, - "detail-line-height": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-100}", - "uuid": "4ca9965a-24f9-454e-b0a7-dd5a0c5ae170" - }, - "detail-cjk-line-height": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-100}", - "uuid": "93434006-5ed7-4656-96b7-8f355a1f07b2" - }, - "detail-margin-top-multiplier": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, - "uuid": "5d34c3b5-fddd-420b-bfe4-0dee4e07701c" - }, - "detail-margin-bottom-multiplier": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, - "uuid": "35ac24a4-0338-44c6-b780-120a0af0fc51" - }, - "detail-letter-spacing": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0.06em", - "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279", - "deprecated": true - }, - "detail-sans-serif-text-transform": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", - "value": "uppercase", - "uuid": "8646d403-21f9-4e77-8a21-92289c303715", - "deprecated": true - }, - "detail-serif-text-transform": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", - "value": "uppercase", - "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534", - "deprecated": true - }, - "detail-color": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" - }, - "detail-cjk-size-xs": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" - }, - "detail-cjk-size-s": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" - }, - "detail-cjk-size-m": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" - }, - "detail-cjk-size-l": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" - }, - "detail-cjk-size-xl": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" - }, - "detail-size-xs": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" - }, - "code-font-family": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", - "value": "Source Code Pro", - "uuid": "79b6c1f9-d1d5-4053-be47-36ecb666d0c1" - }, - "code-cjk-font-family": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-font-family}", - "uuid": "322cb744-5837-4d0a-94a8-3c885d54568d" - }, - "code-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "bf02dd59-4b3c-435a-b33b-49fff22674a3" - }, - "code-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b98a9c39-7d39-4b6d-ad35-46c8b1725c0c" - }, - "code-cjk-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "8455f34c-0c79-4699-aa7c-c77d28bfa617" - }, - "code-cjk-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b26477bc-8bf1-41aa-b849-cfde54e27780" - }, - "code-strong-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "48d2b9b8-beac-4185-827d-0c552e47663f" - }, - "code-strong-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "dac3d8d5-3005-4fa6-b71a-6679470176cf" - }, - "code-cjk-strong-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "ed73f5fc-5b7a-4414-8f1c-325e7944a9e1" - }, - "code-cjk-strong-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "a30c9a18-1a49-4b16-87a0-e882c81dd1bd" - }, - "code-emphasized-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "948436ba-23d7-4eec-a3fe-ef5829ccadb0" - }, - "code-emphasized-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "9d3151ad-4a37-4eeb-aadd-7389ccb09345" - }, - "code-cjk-emphasized-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "61f8b443-95fa-46fd-8876-b4d7a2244af9" - }, - "code-cjk-emphasized-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "f892e676-5218-4dc9-870b-c9d2df6f3152" - }, - "code-strong-emphasized-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "4d5f1937-552d-44a4-be8e-2edafefa46aa" - }, - "code-strong-emphasized-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "83d53fe1-372f-46ba-b8e0-f90ca2e59647" - }, - "code-cjk-strong-emphasized-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "8ed5c5e0-ff72-4937-98fd-fd09f1fab288" - }, - "code-cjk-strong-emphasized-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "38006d42-4f02-46ff-917f-6c0163525642" - }, - "code-size-xl": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "7879adbc-6c38-4d29-9a90-a4ad91c75b90" - }, - "code-size-l": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "b7010f1a-c994-4b19-b273-3f609fe4be2b" - }, - "code-size-m": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "e5b76091-7cbb-4d1e-8d27-48f00759c9f3" - }, - "code-size-s": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "efa9311b-27c5-45ea-93a7-bef6f9370179" - }, - "code-size-xs": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "f0c5e6fb-fb48-45d2-a043-558b3dc28bc7" - }, - "code-line-height": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-200}", - "uuid": "0d33b30d-96d6-4b5a-90d2-2a708bdae623" - }, - "code-cjk-line-height": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-200}", - "uuid": "35580910-cb91-44df-9613-7b2e40a75a7c" - }, - "code-color": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" - }, - "line-height-font-size-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "d1853d46-038f-4fd1-a0b2-4434bbf95099" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "422ef89d-75dc-4110-b38d-45abf2b12f8d" - } - } - }, - "line-height-font-size-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3696e3bf-2b72-4b08-9893-ac618f904771" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "242bf245-e7f0-4826-bcec-e19c0ed5e93f" - } - } - }, - "line-height-font-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8e85a017-2c5d-4a52-92df-c0426e00c3c3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "25be5bf4-e450-4a58-89e2-a04e02b7b78b" - } - } - }, - "line-height-font-size-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "0c323ed8-47c4-4fbb-bb66-a393a1e992cd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "898fde6d-f477-46a6-8323-698dee558580" - } - } - }, - "line-height-font-size-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "efb450f9-976a-47cb-a7cc-667b9fe967a9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "790dde8d-c117-4759-be93-2498297c6fa3" - } - } - }, - "line-height-font-size-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "52e64384-f918-4415-8d02-da3af639890f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "80beb678-586c-4277-9db0-1ab373ec8f80" - } - } - }, - "line-height-font-size-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "03676924-ace1-418a-97a0-17ce62f4a832" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "92adf566-babe-43cf-aefa-e4d04364cdbe" - } - } - }, - "line-height-font-size-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "cec9acbc-6b54-480f-91a2-067d947dd73e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "143a00de-eac6-4bb5-9b25-18011efa69f5" - } - } - }, - "line-height-font-size-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "1cb847c8-4b6d-494f-b50f-98e46e82c9c0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "51dbd9c7-37e5-4968-a84b-9f8563030f89" - } - } - }, - "line-height-font-size-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "2629dfc5-f358-4bd0-a24b-e683b214efb4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "3a43e8bf-6d36-4f4d-8b32-0c5b69d68cfd" - } - } - }, - "line-height-font-size-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "3e6bd373-90f5-4164-80a0-6dcdfdc87beb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "05f9ed71-4b9e-4109-a8ec-bb09edfd6348" - } - } - }, - "line-height-font-size-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "6f6a137d-f54e-45b4-a7a4-2586fa99bf3a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "c881e6cd-404b-48eb-a6f1-5dd84313de72" - } - } - }, - "line-height-font-size-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", - "uuid": "8b37acbd-a978-4de3-aa1e-981afa09868c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "48b573ce-0e43-4550-83db-1f44d06aafda" - } - } - }, - "line-height-font-size-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "a8db4407-791a-4fca-9e2a-12f703089223" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "cd0d821b-015c-40be-9156-c2dab18b5977" - } - } - }, - "line-height-font-size-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "58px", - "uuid": "f3b61670-1a19-4c9f-aae7-cac247d24af6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "10f70d36-8574-4476-bc0a-2b03b7db5448" - } - } - }, - "line-height-font-size-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "66px", - "uuid": "9b7a0ea3-22e1-472e-af82-153eac1e077e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "533402b6-9b8b-4615-b9db-17ea35914369" - } - } - }, - "line-height-font-size-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "74px", - "uuid": "76fa374d-f759-4198-9fc0-e61d378c3258" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "90px", - "uuid": "1251799e-a10a-4625-b487-6b93839c6be8" - } - } - }, - "line-height-font-size-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "84px", - "uuid": "c915185b-86ab-421b-8a58-e3965e9904dc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "102px", - "uuid": "185be0f6-8283-4068-80f1-68ee8dd06c25" - } - } - }, - "component-xs-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-50}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-50}" - }, - "uuid": "5dca28f2-77f5-4b29-85f3-0075bf2cbe7f" - }, - "component-xs-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-50}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-50}" - }, - "uuid": "8bf6d008-d3d8-446d-afe8-62613b1c53a2" - }, - "component-xs-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-50}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-50}" - }, - "uuid": "dc560f13-3f9d-47ed-9adf-646c24fd5a0a" - }, - "component-s-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-75}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-75}" - }, - "uuid": "cde5212c-520d-4657-8184-f07739ffed07" - }, - "component-s-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-75}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-75}" - }, - "uuid": "afa00f39-1fe1-4026-8693-189e6d051eb3" - }, - "component-s-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-75}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-75}" - }, - "uuid": "6510c875-e551-43f2-9e84-111cfccafce8" - }, - "component-m-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-100}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-100}" - }, - "uuid": "567a8eff-028f-4de1-b58a-a0473775219f" - }, - "component-m-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-100}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-100}" - }, - "uuid": "633b828a-8623-4905-9dda-5a7b989768d7" - }, - "component-m-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-100}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-100}" - }, - "uuid": "48422ecb-3993-4a96-b785-7661b9f662d2" - }, - "component-l-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-200}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-200}" - }, - "uuid": "5a58a097-2235-4302-a6ed-6c1fa854c523" - }, - "component-l-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-200}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-200}" - }, - "uuid": "aa7cd308-279c-4c0f-ab5e-5053341c963b" - }, - "component-l-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-200}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-200}" - }, - "uuid": "861ac736-b95b-4350-b40b-0dde0036c796" - }, - "component-xl-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-300}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-300}" - }, - "uuid": "5096f188-f728-4db4-8cd9-cc23b08956e1" - }, - "component-xl-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-300}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-300}" - }, - "uuid": "657ca53c-178e-4526-9c37-e023499f3659" - }, - "component-xl-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-300}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-300}" - }, - "uuid": "1e7e87a6-cf8f-4827-ba46-ca6a9152a6d7" - } -} diff --git a/docs/s2-tokens-viewer/tokens/typography.json b/docs/s2-tokens-viewer/tokens/typography.json deleted file mode 100644 index f3920984..00000000 --- a/docs/s2-tokens-viewer/tokens/typography.json +++ /dev/null @@ -1,2289 +0,0 @@ -{ - "default-font-family": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "45d43d4e-a4e4-4c5f-94ec-644a81300eb0" - }, - "letter-spacing": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0em", - "uuid": "d8caf3aa-1261-411f-b383-18f87334c117" - }, - "text-align-start": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "start", - "uuid": "3a7f9e91-6e1a-4937-a6d2-6c39566dc875" - }, - "text-align-center": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "center", - "uuid": "df252e5a-f115-471d-bb35-c79e733d868b" - }, - "text-align-end": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-align.json", - "value": "end", - "uuid": "a0c425b3-668b-4413-8739-c7844b26ebad" - }, - "sans-serif-font-family": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", - "value": "Adobe Clean Spectrum VF", - "uuid": "a552c422-c51c-458a-87b0-c6fe5178bf4b" - }, - "serif-font-family": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", - "value": "Adobe Clean Serif", - "uuid": "7f83198f-26ec-4156-9573-826dd7feb718" - }, - "cjk-font-family": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", - "value": "Adobe Clean Han", - "uuid": "034892ba-eff6-4193-b4c5-61d20c8f22eb" - }, - "light-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "light", - "uuid": "fd477873-3767-4883-ab3f-5ee2758b923b" - }, - "regular-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "regular", - "uuid": "02a94ddf-1007-4c86-8863-905874e40f95" - }, - "medium-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "medium", - "uuid": "c966c3b6-1bf5-4064-89f9-00d9ec673fd4" - }, - "bold-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "bold", - "uuid": "ff246e6b-7515-49a2-9dc6-8cdf1ea9b2d8" - }, - "extra-bold-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "extra-bold", - "uuid": "ccadf44e-5424-4920-979f-ea1ef39687c4" - }, - "black-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-weight.json", - "value": "black", - "uuid": "e2f23ca1-802b-40a2-a211-33090f9a043e" - }, - "italic-font-style": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json", - "value": "italic", - "uuid": "9a58e4ae-dfa1-428b-9d90-11f4275418da" - }, - "default-font-style": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-style.json", - "value": "normal", - "uuid": "25668698-bf78-46f4-bc6c-8fea068ddb34" - }, - "font-size-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "10px", - "uuid": "26ab49ea-7e86-4f0d-812e-ef1ba794c8a8" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "12px", - "uuid": "5946a4e5-8bed-4dd7-aa73-9ebe232f9790" - } - } - }, - "font-size-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "11px", - "uuid": "8593a326-de37-414d-b3f6-5254b41dce07" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "13px", - "uuid": "b7561ce1-e12e-4aed-9766-181f7eca309e" - } - } - }, - "font-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "12px", - "uuid": "55d90327-8cc9-4d4f-891f-9d42751d989a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "15px", - "uuid": "07e1c2a8-3925-4d71-8fae-3486483ff44c" - } - } - }, - "font-size-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "14px", - "uuid": "938e2d24-1e90-48f0-a596-595a69103707" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "17px", - "uuid": "2f9ee3cf-ccb1-4f0b-aed6-96e472fb7411" - } - } - }, - "font-size-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "16px", - "uuid": "b36caaa3-7047-4dfb-8a84-f990a8ac3a91" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "19px", - "uuid": "7e51ff4e-2749-49d1-b9ed-75de92a73991" - } - } - }, - "font-size-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "18px", - "uuid": "3dc9b6a4-77e3-484b-be8c-fbc2f50e6175" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "22px", - "uuid": "9b9a7175-dcca-43aa-98ce-f1c3e4eefda7" - } - } - }, - "font-size-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "20px", - "uuid": "292a28d6-2e15-46e2-80cd-5171d977e9b5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "24px", - "uuid": "d5ed0e8d-01ac-495f-bd15-fecc30af17c4" - } - } - }, - "font-size-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "22px", - "uuid": "9be56e29-2e79-41e0-b5a9-6a2dabc70aa1" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "27px", - "uuid": "a69a5079-1b5b-4ccf-946f-8b6e3fae4d7e" - } - } - }, - "font-size-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "25px", - "uuid": "db1d7d01-8dd4-4c27-b58c-686f030e5e46" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "31px", - "uuid": "ac892307-2559-48f5-9e2c-98dabbb0abc2" - } - } - }, - "font-size-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "28px", - "uuid": "77da1638-cb39-4c80-8c13-db77b9aa528e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "34px", - "uuid": "6bd6456c-b73b-4926-8e67-7b942e32bbc2" - } - } - }, - "font-size-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "32px", - "uuid": "8425654d-7f46-4b6d-8997-5ae6b6980e06" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "39px", - "uuid": "bdfae93d-ae49-456b-af54-8620ea976ca8" - } - } - }, - "font-size-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "36px", - "uuid": "df2d6c8d-dc03-4581-96c6-d6a92a270b77" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "44px", - "uuid": "5296e771-6d04-4e9a-b1fe-ab22d4dfd92b" - } - } - }, - "font-size-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "40px", - "uuid": "27f694f9-6770-49e0-b7fc-833618b3fc2f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "49px", - "uuid": "8b158ab0-7e82-4dab-a4d9-84cf7a71fa0a" - } - } - }, - "font-size-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "45px", - "uuid": "00dc3fcd-383f-4bc6-8940-e0884f0ffb7e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "55px", - "uuid": "5eb96c78-c8f6-4e31-9bc8-fa62794ac4db" - } - } - }, - "font-size-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "51px", - "uuid": "b73bfb12-80ef-453f-b7dc-52bf2258ef47" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "62px", - "uuid": "0ab38fb2-0de9-4be0-8967-8241379706be" - } - } - }, - "font-size-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "58px", - "uuid": "e8853e10-cc03-47c1-9b66-11755ff513a5" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "70px", - "uuid": "bd880141-81f6-47fe-a421-01124fe66b67" - } - } - }, - "font-size-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "65px", - "uuid": "5af5e5bd-fc76-4688-aae9-6e7528d41341" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "79px", - "uuid": "999b22ec-e19e-4fee-a1db-3cb89c58a51c" - } - } - }, - "font-size-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "73px", - "uuid": "509b3100-9034-4b23-adb0-8c56dbd72a48" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-size.json", - "value": "88px", - "uuid": "94741f6e-8c95-4329-8e06-d6f261e5b0eb" - } - } - }, - "line-height-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.3, - "uuid": "dd125d1d-cf4d-45c8-ab21-52331a9a264b" - }, - "line-height-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, - "uuid": "832f2589-0e75-48dd-bbe3-e3f5b98e6c97" - }, - "cjk-line-height-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.5, - "uuid": "8b4ab68d-9060-4e11-9ecc-3b9d3db27fe4" - }, - "cjk-line-height-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 1.7, - "uuid": "c5a5d186-54b3-44a0-b1c6-e9b102871015" - }, - "cjk-letter-spacing": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{letter-spacing}", - "uuid": "12e27721-35f5-4d03-95f3-3fc9e1cf50e4" - }, - "heading-sans-serif-font-family": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "234d7b9d-bddc-4988-8be5-ef5e41e08185" - }, - "heading-serif-font-family": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{serif-font-family}", - "uuid": "f2430818-41b5-439a-8347-6b384e78d141" - }, - "heading-cjk-font-family": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-font-family}", - "uuid": "b6652ee5-466f-4117-a77c-a93a40f2a791" - }, - "heading-sans-serif-light-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{light-font-weight}", - "uuid": "ff84a748-5923-451d-967c-a346d2dee46c", - "deprecated": true - }, - "heading-sans-serif-light-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c5551fd5-4ee2-4c93-b91f-9ed295fa63a4", - "deprecated": true - }, - "heading-serif-light-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "66958795-6459-4750-8c68-dc39ab383837", - "deprecated": true - }, - "heading-serif-light-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "5f30418a-aa76-434e-bca9-902d5be0d929", - "deprecated": true - }, - "heading-cjk-light-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{light-font-weight}", - "uuid": "9da0ba4c-b4e3-4052-8b2e-d2fde714bb9d", - "deprecated": true - }, - "heading-cjk-light-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b5704c75-2914-4268-9023-7f7452e826c1", - "deprecated": true - }, - "heading-sans-serif-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "1d4d09b4-021a-48e8-a724-bfecc13df325" - }, - "heading-sans-serif-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "561d905e-7f44-43da-b2b4-26e12551ef6d" - }, - "heading-serif-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "350aa193-9996-49c8-b5e4-54d4f7bef3c2" - }, - "heading-serif-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "938f3684-44c6-4ae2-935a-b88921fcd7fe" - }, - "heading-cjk-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "bd54516c-2fda-4421-ab62-720c3a887a34" - }, - "heading-cjk-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c93b39df-82e9-4e87-920f-1747e5d48e8e" - }, - "heading-sans-serif-heavy-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "ef13b8f0-f686-492d-990f-691ec91ebb96" - }, - "heading-sans-serif-heavy-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "0c4cdd06-8180-40b1-9b1f-d7d973a7b772" - }, - "heading-serif-heavy-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "6b74c5ea-6bf4-46bb-bee1-3841606f1500" - }, - "heading-serif-heavy-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "14532cb8-6c88-46ce-886b-96fac971e7b9" - }, - "heading-cjk-heavy-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "73c20d2f-1227-46bc-8548-102358405b0b" - }, - "heading-cjk-heavy-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b2f50ba2-e694-47ba-b81a-ea8fc813247e" - }, - "heading-sans-serif-light-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "75437f9a-7ee8-4194-b4b3-0746be097396", - "deprecated": true - }, - "heading-sans-serif-light-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "67271ca0-c9fd-4047-a615-6314d7333f7a", - "deprecated": true - }, - "heading-serif-light-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "29ad1c96-62e4-4143-88e8-fc8e08913a52", - "deprecated": true - }, - "heading-serif-light-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "73906871-24e5-48cc-9140-ec700c08d144", - "deprecated": true - }, - "heading-cjk-light-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "5ca91bc2-215b-4cbb-b966-80bfffd569ad", - "deprecated": true - }, - "heading-cjk-light-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "be854057-43b1-40ce-bdc7-69960cd7638c", - "deprecated": true - }, - "heading-sans-serif-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "79275989-91ed-408a-b884-a31d9f8bac26" - }, - "heading-sans-serif-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "2117cb6e-67f7-4509-b4fb-e9e442b6dc0e" - }, - "heading-serif-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "6df0fb95-4aa0-4c67-896d-fa6aa3d34e95" - }, - "heading-serif-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "2e0ef484-406a-4902-995d-9a3d5177ec12" - }, - "heading-cjk-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "eaf179aa-4514-4206-b3e2-a99b7d4d2029" - }, - "heading-cjk-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "4f061165-0e86-46b9-83c3-c95eeb8ff956" - }, - "heading-sans-serif-heavy-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "2104c3c2-d834-436a-a26d-508056f1013d" - }, - "heading-sans-serif-heavy-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "86775b10-5682-49fb-9d38-6bdb857da801" - }, - "heading-serif-heavy-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "af0010c7-5134-4fe4-bee1-bbb7dd31de3a" - }, - "heading-serif-heavy-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b2875bbe-b5cb-452f-b7d6-3dcb4fc59921" - }, - "heading-cjk-heavy-strong-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "b7d2203c-c651-493e-80c2-b71b7c7c2692" - }, - "heading-cjk-heavy-strong-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "26817f91-2742-4170-aa01-1e1e67ef01e8" - }, - "heading-sans-serif-light-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{light-font-weight}", - "uuid": "e882ea46-8f0a-4313-84f5-85bb8d9f1f5e", - "deprecated": true - }, - "heading-sans-serif-light-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "5f88eb81-7052-4c21-9896-f14cb09f0e70", - "deprecated": true - }, - "heading-serif-light-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "b5f79fde-07f7-4c07-897e-0bfdf27e2839", - "deprecated": true - }, - "heading-serif-light-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "7bd831cd-3fe0-402b-a105-f65b8e8023e2", - "deprecated": true - }, - "heading-cjk-light-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "aea9787b-ee0b-40cc-9089-5973e52b18bd", - "deprecated": true - }, - "heading-cjk-light-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "dac03eec-6910-4176-bfca-33f8a57cf3d7", - "deprecated": true - }, - "heading-sans-serif-emphasized-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "e4a183fd-53c5-4dbb-afd1-6308e2e74f80" - }, - "heading-sans-serif-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "2f17833a-28a4-4152-8999-12b077557797" - }, - "heading-serif-emphasized-font-weight": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "a0983216-b0c5-4a3f-97dc-96ee711acb1f" - }, - "heading-serif-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "fe694554-832d-457d-a320-f02629f9c441" - }, - "heading-cjk-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "d854afd2-290a-40ae-a627-c4cdabeb546a" - }, - "heading-cjk-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "05c74b28-3051-498c-874a-5dc523bc27e5" - }, - "heading-sans-serif-heavy-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "a7cb3274-e48e-435b-a066-32027ac19e84" - }, - "heading-sans-serif-heavy-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "924c338f-7141-490a-a842-ad632c26160c" - }, - "heading-serif-heavy-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "82e9d579-8918-4114-bafa-3a9757556f84" - }, - "heading-serif-heavy-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "a18ac621-eade-4224-9660-3e9a080219ec" - }, - "heading-cjk-heavy-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "9315971c-6e83-42c8-9c24-d1bc6fa5e106" - }, - "heading-cjk-heavy-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "aef21944-3dac-4b2d-ba7b-0a4df3f406bb" - }, - "heading-sans-serif-light-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "c297a503-fc3c-4939-8c5a-6611b9b04719", - "deprecated": true - }, - "heading-sans-serif-light-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "bc5d65e0-e13a-424c-a260-9268a0dee66c", - "deprecated": true - }, - "heading-serif-light-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "98c61df3-057d-4345-881e-0c04628757f3", - "deprecated": true - }, - "heading-serif-light-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "71c8e302-6bc1-4f45-b804-c847dd153d1b", - "deprecated": true - }, - "heading-cjk-light-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "83cc347c-7a1a-4665-9de4-cf19903f1043", - "deprecated": true - }, - "heading-cjk-light-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "9136e25e-563b-4485-bad7-41809d5317de", - "deprecated": true - }, - "heading-sans-serif-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "9d834e30-53c1-4cea-9e17-2326038cb6cb" - }, - "heading-sans-serif-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "f692d35f-1b11-43d1-ad29-967436b90928" - }, - "heading-serif-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "cd32f2b7-3e9f-47ae-ad34-2c7783dd5b2f" - }, - "heading-serif-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "da6e1593-9d2a-4fd8-8877-d30d6e1d1c07" - }, - "heading-cjk-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "0080a817-b26f-42f1-84c4-5ed1ac08c12c" - }, - "heading-cjk-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "22934d4d-4952-40a7-a5e5-256a7a3c9371" - }, - "heading-sans-serif-heavy-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "8779e773-7b37-4eb0-ae7a-2ba0104ad9d5" - }, - "heading-sans-serif-heavy-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "c20ea22a-c34d-4c7c-a816-75b533e28c92" - }, - "heading-serif-heavy-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "2d8e76cd-f123-488d-893d-54a9f48f679e" - }, - "heading-serif-heavy-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "adf303e8-1e27-4aec-9bbc-5abe166358ec" - }, - "heading-cjk-heavy-strong-emphasized-font-weight": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{black-font-weight}", - "uuid": "a0f680fa-2453-4bcc-b06c-9ff82de50c0c" - }, - "heading-cjk-heavy-strong-emphasized-font-style": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "619a15ba-f74e-4ff4-a604-312b810f1a50" - }, - "heading-size-xxxl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1300}", - "uuid": "db884bf9-e7b5-420a-b408-bd9a4d6bb0a4" - }, - "heading-size-xxl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1100}", - "uuid": "464e34cd-e768-4a38-a72b-cae1a4852ef3" - }, - "heading-size-xl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-900}", - "uuid": "94bb5ad9-503a-428a-a8ba-6cf3f70592ac" - }, - "heading-size-l": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-700}", - "uuid": "336e434c-9026-4bb3-96b1-5bb44376b868" - }, - "heading-size-m": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "4cdcefe1-2006-4560-839f-5bdef6db8c1a" - }, - "heading-size-s": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "96673fee-b75c-4867-9041-48362af044bc" - }, - "heading-size-xs": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "4f179af6-c31f-48f8-927c-a45150668ad3" - }, - "heading-size-xxs": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "82a831b4-b624-475b-b2be-4eb949e48626", - "deprecated": true - }, - "heading-cjk-size-xxxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1400}", - "uuid": "3b954e15-341a-40f4-a47e-9abd2813fec4" - }, - "heading-size-xxxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1500}", - "uuid": "517d86cc-2e66-4cdc-8841-cb32db9e56f4" - }, - "heading-cjk-size-xxxl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1200}", - "uuid": "5a44e177-2478-4bb0-9212-ba2df64c8b00" - }, - "heading-cjk-size-xxl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-1000}", - "uuid": "fbf59302-1ad2-4327-bfde-d638a0ca2429" - }, - "heading-cjk-size-xl": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-800}", - "uuid": "43535e5f-607e-43f4-bd37-8230b1f7993f" - }, - "heading-cjk-size-l": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-600}", - "uuid": "f57ffe02-2e41-46f3-a0ac-1feb63bdd748" - }, - "heading-cjk-size-m": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "43f45659-314b-45aa-9886-1beb096fc4ce" - }, - "heading-cjk-size-s": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "c1242a8c-ca10-40d0-8fc4-67bbbce8fc5f" - }, - "heading-cjk-size-xs": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "132688a7-917d-44b9-a34f-a7135599b299" - }, - "heading-cjk-size-xxs": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "bddd6a96-c280-47ca-8858-20df055e488d", - "deprecated": true - }, - "heading-line-height": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-100}", - "uuid": "64f28fe4-20f7-48cb-baeb-ff1898573727" - }, - "heading-cjk-line-height": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-100}", - "uuid": "3e038db9-c5f7-4b8b-b1af-31075a31e0cc" - }, - "heading-margin-top-multiplier": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, - "uuid": "008fa04b-6d74-416b-a6ae-ceec90f08642" - }, - "heading-margin-bottom-multiplier": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, - "uuid": "dd2035b4-506f-41ab-a656-de3668d44e0f" - }, - "heading-color": { - "component": "heading", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-900}", - "uuid": "60300cd2-9b30-4ee3-b7a1-b8dae00270d9" - }, - "body-sans-serif-font-family": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "32c3d84f-2b0d-4ccd-ba3c-b8475d82550b" - }, - "body-serif-font-family": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{serif-font-family}", - "uuid": "20df8bd4-5a61-4614-aa86-5b76c5976860" - }, - "body-cjk-font-family": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-font-family}", - "uuid": "06d5790c-21e9-4135-843d-05007b046677" - }, - "body-sans-serif-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "6813005d-9df4-459b-9fab-b2a054c32c31" - }, - "body-sans-serif-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "e1da0eff-7482-46a0-8190-4c54c6b1e1dd" - }, - "body-serif-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "f049ba7a-c52f-4d39-b38e-911b2b91d031" - }, - "body-serif-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "d317d387-9bc8-4258-a79a-a0dd4e22d952" - }, - "body-cjk-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "a754c16b-2f0c-485f-813d-d472ee650660" - }, - "body-cjk-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "41389b62-c449-485b-bfa8-1659bacc8c42" - }, - "body-sans-serif-strong-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "633953a9-c61b-44cc-9dee-aebece97ccbc" - }, - "body-sans-serif-strong-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b36db31f-eaaa-4310-9f54-f7b509d5f571" - }, - "body-serif-strong-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "be263571-bd6b-4383-bdf9-3cdf80248b6a" - }, - "body-serif-strong-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c8b531d1-949e-4492-9897-450a477983ce" - }, - "body-cjk-strong-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "d79de2c4-ca7c-4316-ac44-fee1a66983d7" - }, - "body-cjk-strong-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "11fe09ad-92eb-4d7d-8872-467cdd69659b" - }, - "body-sans-serif-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "5640ac73-a482-4787-9ab2-035b57a87833" - }, - "body-sans-serif-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "717c067c-55d1-4927-ad9c-8784769f581d" - }, - "body-serif-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "be2a8ff3-6117-4235-bcb8-72257b75d622" - }, - "body-serif-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "c817210d-2b1a-4648-bff3-33fa212491f1" - }, - "body-cjk-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "0d8ada2f-272d-4f76-bf37-095e0b48cdae" - }, - "body-cjk-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "3e90be19-62fd-4e53-abf9-4c697baba5da" - }, - "body-sans-serif-strong-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "421dc907-5862-4ed5-95f4-41d654b2fdc0" - }, - "body-sans-serif-strong-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "b87e6738-af38-49be-9945-f3a307ce7b6f" - }, - "body-serif-strong-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "a87b77ff-5b27-47e0-a7df-f15092fb783e" - }, - "body-serif-strong-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "b940bdc8-d373-4bd0-8620-d6c04134698b" - }, - "body-cjk-strong-emphasized-font-weight": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "54020791-a975-4e5d-a905-8bffcc9d2d93" - }, - "body-cjk-strong-emphasized-font-style": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "f792aac0-62f2-47e3-b6ac-158ae009d9c3" - }, - "body-size-xxxl": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-600}", - "uuid": "e0b8ceea-3404-4c4b-9145-fe5d445020fe" - }, - "body-size-xxl": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "4d0d4ed9-af14-4d88-98f1-9237f65e192a" - }, - "body-size-xl": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "3927604f-eaf3-4605-aa34-80b7bc88ac0f" - }, - "body-size-xxs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "3aa79ac7-9e78-4413-b500-b8d1937705cb" - }, - "body-cjk-size-xxxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-500}", - "uuid": "71a41f9e-73da-4632-8877-7af7acf4db03" - }, - "body-cjk-size-xxl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "9aab03eb-c0c1-462c-aa7c-88c93b06f714" - }, - "body-cjk-size-xl": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "25d65a6e-e8e1-4849-848a-984373fd9cf9" - }, - "body-cjk-size-l": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "9f0e0ddb-a4d2-416e-a425-8d71527f77b2" - }, - "body-cjk-size-m": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "7e01bc65-5823-456f-a830-9848a96ad85a" - }, - "body-cjk-size-s": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "081aa502-e2f1-4bc8-8fb2-a00dcd4236dd" - }, - "body-cjk-size-xs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "ba73926d-2ef4-4d7b-86c2-9044aa1cdf95" - }, - "body-cjk-size-xxs": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "218f04ed-0679-4090-b1ad-76ef062dd07c" - }, - "body-size-l": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "884b74cb-d247-491d-acb9-d3dc84bfd9a6" - }, - "body-size-m": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "4f7f6878-5304-48d3-8a42-5bb452c2163b" - }, - "body-size-s": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "1194f7e3-e4c3-4a3a-bd19-50f4b48e1a6e" - }, - "body-size-xs": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "25e93322-8f0b-45f8-ae9a-18668251f064" - }, - "body-line-height": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-200}", - "uuid": "39accad7-3de1-4850-9773-4e0ff8080049" - }, - "body-cjk-line-height": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-200}", - "uuid": "2106b188-8520-4261-968b-2eb2928857f9" - }, - "body-margin-multiplier": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.75, - "uuid": "8f2e9283-4cbc-4374-9757-ed8d68542c89" - }, - "body-color": { - "component": "body", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "a7218010-91c1-4f20-8072-7b1801593014" - }, - "detail-sans-serif-font-family": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{sans-serif-font-family}", - "uuid": "34101c26-b4cd-43aa-bddd-0758d21fef01" - }, - "detail-serif-font-family": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{serif-font-family}", - "uuid": "365c6166-e17d-40bd-841e-495aa9c6acd7" - }, - "detail-cjk-font-family": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-font-family}", - "uuid": "6cc647ab-1474-4094-974d-d079d7ef7565" - }, - "detail-sans-serif-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", - "uuid": "d06a4346-ec24-4922-8985-4b8a05e0bfc6" - }, - "detail-sans-serif-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "21a9500c-f9a4-4ff3-9eb5-6da81bf314f6" - }, - "detail-serif-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", - "uuid": "87ef8843-f44e-4526-80cd-9635f3e0261e" - }, - "detail-serif-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "524c5101-f745-47e6-b233-62cd005850f8" - }, - "detail-cjk-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "9b11f80a-7600-4a6b-a366-218ba320a5cc" - }, - "detail-cjk-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "4d2a9b37-101b-4025-95d6-aba18b701a58" - }, - "detail-sans-serif-light-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "cf8f93e2-2b79-4a4c-bb31-313e013148e3", - "deprecated": true - }, - "detail-sans-serif-light-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "a6b7c26e-3ff5-4241-b9cc-3026604fe30e", - "deprecated": true - }, - "detail-serif-light-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "2a15a805-fd08-4f8e-82e6-9264ef8937cb", - "deprecated": true - }, - "detail-serif-light-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "f6478d1d-5dcf-43eb-a4fc-498479b29aa7", - "deprecated": true - }, - "detail-cjk-light-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{light-font-weight}", - "uuid": "3b531775-a1fd-4a40-b169-7c42b8c6de38", - "deprecated": true - }, - "detail-cjk-light-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "4cc06d86-326e-4b6f-a751-99445bb1d131", - "deprecated": true - }, - "detail-sans-serif-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "a150e66c-daf4-4c71-a2e2-577600878988" - }, - "detail-sans-serif-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c56642f3-043c-4738-bed0-61b324221f4e" - }, - "detail-serif-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "d737931b-f63c-4874-8fa5-872b95048727" - }, - "detail-serif-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "3b2124e3-e50b-4ab7-8340-f97b1f8fef1e" - }, - "detail-cjk-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "ef2997f3-276c-4662-8644-9514590114f4" - }, - "detail-cjk-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "653358fc-5ee4-4e97-affc-c56896d370c0" - }, - "detail-sans-serif-light-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "4f0f95d3-098a-4852-bd21-785f5bf054b5", - "deprecated": true - }, - "detail-sans-serif-light-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c1966f09-1c6e-4fe0-89ad-8fb8e847e3ba", - "deprecated": true - }, - "detail-serif-light-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "fc5df058-f678-4dc8-953f-e2738798ee2b", - "deprecated": true - }, - "detail-serif-light-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "7a878a3f-b663-41ee-8357-6e62f2e51d80", - "deprecated": true - }, - "detail-cjk-light-strong-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "91231878-73dc-46ce-a277-1d14e0e36842", - "deprecated": true - }, - "detail-cjk-light-strong-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "ec87fefe-f35f-41a0-9be1-6d076f0db230", - "deprecated": true - }, - "detail-sans-serif-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "6ca600be-010a-4aaa-a815-e5bfdbe36b21" - }, - "detail-sans-serif-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "5c7dcef1-514e-4d43-b2ef-76639e214b8c" - }, - "detail-serif-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{medium-font-weight}", - "uuid": "247b2004-e0bc-42b9-ba83-6edbe417c4cb" - }, - "detail-serif-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "cfaf6a70-3eb5-4887-bae6-8ae41c094192" - }, - "detail-cjk-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "aa70fa2d-87ee-4e67-b230-85f400ddd7d1" - }, - "detail-cjk-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "3dca0579-91c4-4f60-a2a6-25f16eb673b3" - }, - "detail-sans-serif-light-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "64972012-5050-41d0-9c9b-269b533a58b7", - "deprecated": true - }, - "detail-sans-serif-light-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "fc6098a2-3263-433c-8378-ba609629ef53", - "deprecated": true - }, - "detail-serif-light-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "3d27f76e-b068-4f06-bea8-ee31fcbc49b2", - "deprecated": true - }, - "detail-serif-light-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "320bcd8e-2bb8-4e9e-9b1d-4838b2966857", - "deprecated": true - }, - "detail-cjk-light-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "279d9a16-279f-4788-b5b0-af825a4b5d40", - "deprecated": true - }, - "detail-cjk-light-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "c7b1b312-cd81-4c65-8a67-017f91aee40b", - "deprecated": true - }, - "detail-sans-serif-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "c57f8682-52d2-43fa-a306-a588a13ead6b" - }, - "detail-sans-serif-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "82d04795-da5f-4868-a90d-980f5376a878" - }, - "detail-serif-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "863cf841-7b83-4f66-a01f-12dccd47fee6" - }, - "detail-serif-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "7fdffa4e-4370-45cf-aab0-316561a56a24" - }, - "detail-cjk-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "a7007c07-15a4-4671-bd3b-7406f4b374bb" - }, - "detail-cjk-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "75a3a4ec-2b57-4a49-b3bd-84b41a3cd314" - }, - "detail-sans-serif-light-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "53f16a1c-9d44-4384-9a7e-88a2c4319486", - "deprecated": true - }, - "detail-sans-serif-light-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "b7364639-2686-4e12-9ede-d6543d0d0d6d", - "deprecated": true - }, - "detail-serif-light-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "1c524d85-9fca-433c-b5c4-5eaa456cc3a2", - "deprecated": true - }, - "detail-serif-light-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "42d2049f-cda2-4ae4-8d0a-41f7789f768b", - "deprecated": true - }, - "detail-cjk-light-strong-emphasized-font-weight": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{extra-bold-font-weight}", - "uuid": "0bc51146-a3e5-48c4-8324-4490b9d30f4d", - "deprecated": true - }, - "detail-cjk-light-strong-emphasized-font-style": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "1d4235ff-c183-4d6c-8277-9783e3e1ce7a", - "deprecated": true - }, - "detail-size-xl": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "ab476eec-b592-4890-af8f-74de808cb87f" - }, - "detail-size-l": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "613da587-5c48-4efa-abb5-36378c1e81f0" - }, - "detail-size-m": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "07840554-1ec1-4823-b119-474ec9cc31f0" - }, - "detail-size-s": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "585e1bec-ee93-4983-b0bb-3a1f6ec28218" - }, - "detail-line-height": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-100}", - "uuid": "4ca9965a-24f9-454e-b0a7-dd5a0c5ae170" - }, - "detail-cjk-line-height": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-100}", - "uuid": "93434006-5ed7-4656-96b7-8f355a1f07b2" - }, - "detail-margin-top-multiplier": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.88888889, - "uuid": "5d34c3b5-fddd-420b-bfe4-0dee4e07701c" - }, - "detail-margin-bottom-multiplier": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/multiplier.json", - "value": 0.25, - "uuid": "35ac24a4-0338-44c6-b780-120a0af0fc51" - }, - "detail-letter-spacing": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "0.06em", - "uuid": "c4dbe044-dc8c-4722-b36c-5442cd2bc279", - "deprecated": true - }, - "detail-sans-serif-text-transform": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", - "value": "uppercase", - "uuid": "8646d403-21f9-4e77-8a21-92289c303715", - "deprecated": true - }, - "detail-serif-text-transform": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/text-transform.json", - "value": "uppercase", - "uuid": "0e161c32-c412-4cda-bacb-7eaa548b5534", - "deprecated": true - }, - "detail-color": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-600}", - "uuid": "5f6b9d7a-2433-44fa-8de5-1fb40137e334" - }, - "detail-cjk-size-xs": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-25}", - "uuid": "e6d8e8ae-d9a3-42fb-b4c7-f2e893b926f1" - }, - "detail-cjk-size-s": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "8eb0f29f-71a1-4aa5-a3ed-98a373baf620" - }, - "detail-cjk-size-m": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "236c73fb-d3bc-4390-8682-dd06fbd92d23" - }, - "detail-cjk-size-l": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "92399d83-aa71-4207-b533-4fe69e6271e2" - }, - "detail-cjk-size-xl": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "533265d4-7304-4688-b2fb-379a086b20bf" - }, - "detail-size-xs": { - "component": "detail", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-50}", - "uuid": "b33a59b4-1ec2-4f09-8cb3-9bfd09d7c695" - }, - "code-font-family": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/font-family.json", - "value": "Source Code Pro", - "uuid": "79b6c1f9-d1d5-4053-be47-36ecb666d0c1" - }, - "code-cjk-font-family": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{code-font-family}", - "uuid": "322cb744-5837-4d0a-94a8-3c885d54568d" - }, - "code-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "bf02dd59-4b3c-435a-b33b-49fff22674a3" - }, - "code-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b98a9c39-7d39-4b6d-ad35-46c8b1725c0c" - }, - "code-cjk-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "8455f34c-0c79-4699-aa7c-c77d28bfa617" - }, - "code-cjk-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "b26477bc-8bf1-41aa-b849-cfde54e27780" - }, - "code-strong-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "48d2b9b8-beac-4185-827d-0c552e47663f" - }, - "code-strong-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "dac3d8d5-3005-4fa6-b71a-6679470176cf" - }, - "code-cjk-strong-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "ed73f5fc-5b7a-4414-8f1c-325e7944a9e1" - }, - "code-cjk-strong-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "a30c9a18-1a49-4b16-87a0-e882c81dd1bd" - }, - "code-emphasized-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{regular-font-weight}", - "uuid": "948436ba-23d7-4eec-a3fe-ef5829ccadb0" - }, - "code-emphasized-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "9d3151ad-4a37-4eeb-aadd-7389ccb09345" - }, - "code-cjk-emphasized-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "61f8b443-95fa-46fd-8876-b4d7a2244af9" - }, - "code-cjk-emphasized-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "f892e676-5218-4dc9-870b-c9d2df6f3152" - }, - "code-strong-emphasized-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "4d5f1937-552d-44a4-be8e-2edafefa46aa" - }, - "code-strong-emphasized-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{italic-font-style}", - "uuid": "83d53fe1-372f-46ba-b8e0-f90ca2e59647" - }, - "code-cjk-strong-emphasized-font-weight": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{bold-font-weight}", - "uuid": "8ed5c5e0-ff72-4937-98fd-fd09f1fab288" - }, - "code-cjk-strong-emphasized-font-style": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{default-font-style}", - "uuid": "38006d42-4f02-46ff-917f-6c0163525642" - }, - "code-size-xl": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-400}", - "uuid": "7879adbc-6c38-4d29-9a90-a4ad91c75b90" - }, - "code-size-l": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-300}", - "uuid": "b7010f1a-c994-4b19-b273-3f609fe4be2b" - }, - "code-size-m": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-200}", - "uuid": "e5b76091-7cbb-4d1e-8d27-48f00759c9f3" - }, - "code-size-s": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-100}", - "uuid": "efa9311b-27c5-45ea-93a7-bef6f9370179" - }, - "code-size-xs": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{font-size-75}", - "uuid": "f0c5e6fb-fb48-45d2-a043-558b3dc28bc7" - }, - "code-line-height": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{line-height-200}", - "uuid": "0d33b30d-96d6-4b5a-90d2-2a708bdae623" - }, - "code-cjk-line-height": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{cjk-line-height-200}", - "uuid": "35580910-cb91-44df-9613-7b2e40a75a7c" - }, - "code-color": { - "component": "code", - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/alias.json", - "value": "{gray-800}", - "uuid": "851aebc5-5aa2-42ae-9032-59a5c9e8db5f" - }, - "line-height-font-size-25": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "12px", - "uuid": "d1853d46-038f-4fd1-a0b2-4434bbf95099" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "422ef89d-75dc-4110-b38d-45abf2b12f8d" - } - } - }, - "line-height-font-size-50": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "14px", - "uuid": "3696e3bf-2b72-4b08-9893-ac618f904771" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "242bf245-e7f0-4826-bcec-e19c0ed5e93f" - } - } - }, - "line-height-font-size-75": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "16px", - "uuid": "8e85a017-2c5d-4a52-92df-c0426e00c3c3" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "25be5bf4-e450-4a58-89e2-a04e02b7b78b" - } - } - }, - "line-height-font-size-100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "18px", - "uuid": "0c323ed8-47c4-4fbb-bb66-a393a1e992cd" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "898fde6d-f477-46a6-8323-698dee558580" - } - } - }, - "line-height-font-size-200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "20px", - "uuid": "efb450f9-976a-47cb-a7cc-667b9fe967a9" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "790dde8d-c117-4759-be93-2498297c6fa3" - } - } - }, - "line-height-font-size-300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "22px", - "uuid": "52e64384-f918-4415-8d02-da3af639890f" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "80beb678-586c-4277-9db0-1ab373ec8f80" - } - } - }, - "line-height-font-size-400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "24px", - "uuid": "03676924-ace1-418a-97a0-17ce62f4a832" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "28px", - "uuid": "92adf566-babe-43cf-aefa-e4d04364cdbe" - } - } - }, - "line-height-font-size-500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "26px", - "uuid": "cec9acbc-6b54-480f-91a2-067d947dd73e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "143a00de-eac6-4bb5-9b25-18011efa69f5" - } - } - }, - "line-height-font-size-600": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "30px", - "uuid": "1cb847c8-4b6d-494f-b50f-98e46e82c9c0" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "51dbd9c7-37e5-4968-a84b-9f8563030f89" - } - } - }, - "line-height-font-size-700": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "32px", - "uuid": "2629dfc5-f358-4bd0-a24b-e683b214efb4" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "40px", - "uuid": "3a43e8bf-6d36-4f4d-8b32-0c5b69d68cfd" - } - } - }, - "line-height-font-size-800": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "36px", - "uuid": "3e6bd373-90f5-4164-80a0-6dcdfdc87beb" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "44px", - "uuid": "05f9ed71-4b9e-4109-a8ec-bb09edfd6348" - } - } - }, - "line-height-font-size-900": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "42px", - "uuid": "6f6a137d-f54e-45b4-a7a4-2586fa99bf3a" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "50px", - "uuid": "c881e6cd-404b-48eb-a6f1-5dd84313de72" - } - } - }, - "line-height-font-size-1000": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "46px", - "uuid": "8b37acbd-a978-4de3-aa1e-981afa09868c" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "56px", - "uuid": "48b573ce-0e43-4550-83db-1f44d06aafda" - } - } - }, - "line-height-font-size-1100": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "52px", - "uuid": "a8db4407-791a-4fca-9e2a-12f703089223" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "64px", - "uuid": "cd0d821b-015c-40be-9156-c2dab18b5977" - } - } - }, - "line-height-font-size-1200": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "58px", - "uuid": "f3b61670-1a19-4c9f-aae7-cac247d24af6" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "72px", - "uuid": "10f70d36-8574-4476-bc0a-2b03b7db5448" - } - } - }, - "line-height-font-size-1300": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "66px", - "uuid": "9b7a0ea3-22e1-472e-af82-153eac1e077e" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "80px", - "uuid": "533402b6-9b8b-4615-b9db-17ea35914369" - } - } - }, - "line-height-font-size-1400": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "74px", - "uuid": "76fa374d-f759-4198-9fc0-e61d378c3258" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "90px", - "uuid": "1251799e-a10a-4625-b487-6b93839c6be8" - } - } - }, - "line-height-font-size-1500": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/scale-set.json", - "sets": { - "desktop": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "84px", - "uuid": "c915185b-86ab-421b-8a58-e3965e9904dc" - }, - "mobile": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/dimension.json", - "value": "102px", - "uuid": "185be0f6-8283-4068-80f1-68ee8dd06c25" - } - } - }, - "component-xs-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-50}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-50}" - }, - "uuid": "5dca28f2-77f5-4b29-85f3-0075bf2cbe7f" - }, - "component-xs-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-50}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-50}" - }, - "uuid": "8bf6d008-d3d8-446d-afe8-62613b1c53a2" - }, - "component-xs-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-50}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-50}" - }, - "uuid": "dc560f13-3f9d-47ed-9adf-646c24fd5a0a" - }, - "component-s-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-75}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-75}" - }, - "uuid": "cde5212c-520d-4657-8184-f07739ffed07" - }, - "component-s-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-75}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-75}" - }, - "uuid": "afa00f39-1fe1-4026-8693-189e6d051eb3" - }, - "component-s-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-75}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-75}" - }, - "uuid": "6510c875-e551-43f2-9e84-111cfccafce8" - }, - "component-m-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-100}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-100}" - }, - "uuid": "567a8eff-028f-4de1-b58a-a0473775219f" - }, - "component-m-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-100}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-100}" - }, - "uuid": "633b828a-8623-4905-9dda-5a7b989768d7" - }, - "component-m-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-100}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-100}" - }, - "uuid": "48422ecb-3993-4a96-b785-7661b9f662d2" - }, - "component-l-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-200}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-200}" - }, - "uuid": "5a58a097-2235-4302-a6ed-6c1fa854c523" - }, - "component-l-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-200}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-200}" - }, - "uuid": "aa7cd308-279c-4c0f-ab5e-5053341c963b" - }, - "component-l-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-200}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-200}" - }, - "uuid": "861ac736-b95b-4350-b40b-0dde0036c796" - }, - "component-xl-regular": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-300}", - "fontWeight": "{regular-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-300}" - }, - "uuid": "5096f188-f728-4db4-8cd9-cc23b08956e1" - }, - "component-xl-medium": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-300}", - "fontWeight": "{medium-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-300}" - }, - "uuid": "657ca53c-178e-4526-9c37-e023499f3659" - }, - "component-xl-bold": { - "$schema": "https://opensource.adobe.com/spectrum-tokens/schemas/token-types/typography.json", - "value": { - "fontFamily": "{sans-serif-font-family}", - "fontSize": "{font-size-300}", - "fontWeight": "{bold-font-weight}", - "letterSpacing": "{letter-spacing}", - "lineHeight": "{line-height-font-size-300}" - }, - "uuid": "1e7e87a6-cf8f-4827-ba46-ca6a9152a6d7" - } -} diff --git a/docs/s2-visualizer/CHANGELOG.md b/docs/s2-visualizer/CHANGELOG.md index f3bc752f..c42e6adf 100644 --- a/docs/s2-visualizer/CHANGELOG.md +++ b/docs/s2-visualizer/CHANGELOG.md @@ -4,4 +4,4 @@ ### Patch Changes -- [#436](https://github.com/adobe/spectrum-tokens/pull/436) [`101e1e1`](https://github.com/adobe/spectrum-tokens/commit/101e1e1d58d75e780334588f69d2f2947e35b776) Thanks [@GarthDB](https://github.com/GarthDB)! - Tokens recently changed to use numbers for certain values (multipliers, etc). This caused a bug in the visualizer. +- [#436](https://github.com/adobe/spectrum-design-data/pull/436) [`101e1e1`](https://github.com/adobe/spectrum-design-data/commit/101e1e1d58d75e780334588f69d2f2947e35b776) Thanks [@GarthDB](https://github.com/GarthDB)! - Tokens recently changed to use numbers for certain values (multipliers, etc). This caused a bug in the visualizer. diff --git a/docs/s2-visualizer/README.md b/docs/s2-visualizer/README.md index 0bb2f8eb..cea078c3 100644 --- a/docs/s2-visualizer/README.md +++ b/docs/s2-visualizer/README.md @@ -2,7 +2,7 @@ Current url of deployed static site: -Screenshot 2023-02-28 at 2 40 02 PM +Screenshot 2023-02-28 at 2 40 02 PM ## Setup for local development diff --git a/docs/site/CHANGELOG.md b/docs/site/CHANGELOG.md index 57bc0460..f4dde923 100644 --- a/docs/site/CHANGELOG.md +++ b/docs/site/CHANGELOG.md @@ -4,4 +4,4 @@ ### Minor Changes -- [`413ef5a`](https://github.com/adobe/spectrum-tokens/commit/413ef5adad9083b7e133cc867e0436a879004ec8) Thanks [@GarthDB](https://github.com/GarthDB)! - Added `private` metadata to global tokens. +- [`413ef5a`](https://github.com/adobe/spectrum-design-data/commit/413ef5adad9083b7e133cc867e0436a879004ec8) Thanks [@GarthDB](https://github.com/GarthDB)! - Added `private` metadata to global tokens. diff --git a/docs/site/components/layout.js b/docs/site/components/layout.js index 6ce9acf1..4ba5fdb0 100644 --- a/docs/site/components/layout.js +++ b/docs/site/components/layout.js @@ -25,7 +25,13 @@ export default function Layout({ children, home, version }) { {siteTitle} {version && ( -

+

Schema version: {version}

)} diff --git a/docs/site/lib/components.js b/docs/site/lib/components.js index 719aaf48..aedfc59b 100644 --- a/docs/site/lib/components.js +++ b/docs/site/lib/components.js @@ -7,7 +7,11 @@ import { fileURLToPath } from "url"; import { dirname } from "path"; const isObject = (a) => { - return !!a && a.constructor && (a.constructor === Object || a.constructor.name === "Object"); + return ( + !!a && + a.constructor && + (a.constructor === Object || a.constructor.name === "Object") + ); }; const resolveSchemaDefinitions = (schema, ajv) => { @@ -36,17 +40,27 @@ const resolveSchemaDefinitions = (schema, ajv) => { return result; }; -const readJSON = async (filePath) => JSON.parse(await readFile(filePath, "utf8")); +const readJSON = async (filePath) => + JSON.parse(await readFile(filePath, "utf8")); // Get the schemas directory from the installed package const getSchemasDir = () => { try { // Try to resolve the package - const packagePath = fileURLToPath(import.meta.resolve("@adobe/spectrum-component-api-schemas")); + const packagePath = fileURLToPath( + import.meta.resolve("@adobe/spectrum-component-api-schemas"), + ); return path.join(dirname(packagePath), "schemas"); } catch { // Fallback to relative path for development - return path.resolve(process.cwd(), "..", "..", "packages", "component-schemas", "schemas"); + return path.resolve( + process.cwd(), + "..", + "..", + "packages", + "component-schemas", + "schemas", + ); } }; @@ -57,7 +71,9 @@ const getValidator = async () => { const ajv = new Ajv(); addFormats(ajv); - const componentSchema = await readJSON(path.join(schemaDir, "component.json")); + const componentSchema = await readJSON( + path.join(schemaDir, "component.json"), + ); ajv.addMetaSchema(componentSchema); // Load type schemas from the package @@ -90,7 +106,10 @@ export async function getSortedComponentsData() { const allComponentsData = await Promise.all( componentFiles.map(async (filePath) => { const schema = await readJSON(filePath); - if (Object.hasOwn(schema, "meta") && Object.hasOwn(schema.meta, "documentationUrl")) { + if ( + Object.hasOwn(schema, "meta") && + Object.hasOwn(schema.meta, "documentationUrl") + ) { const slug = getSlugFromDocumentationUrl(schema.meta.documentationUrl); const validate = ajv.compile(schema); return { @@ -99,7 +118,7 @@ export async function getSortedComponentsData() { }; } return null; - }) + }), ); return allComponentsData @@ -120,11 +139,14 @@ export async function getAllComponentSlugs() { const slugs = await Promise.all( componentFiles.map(async (filePath) => { const schema = await readJSON(filePath); - if (Object.hasOwn(schema, "meta") && Object.hasOwn(schema.meta, "documentationUrl")) { + if ( + Object.hasOwn(schema, "meta") && + Object.hasOwn(schema.meta, "documentationUrl") + ) { return getSlugFromDocumentationUrl(schema.meta.documentationUrl); } return null; - }) + }), ); return slugs @@ -164,7 +186,7 @@ export async function getComponentData(slug) { export async function getComponentSchemasVersion() { try { const packagePath = fileURLToPath( - import.meta.resolve("@adobe/spectrum-component-api-schemas/package.json") + import.meta.resolve("@adobe/spectrum-component-api-schemas/package.json"), ); const packageJson = await readJSON(packagePath); return packageJson.version; @@ -176,7 +198,7 @@ export async function getComponentSchemasVersion() { "..", "packages", "component-schemas", - "package.json" + "package.json", ); const packageJson = await readJSON(packageJsonPath); return packageJson.version; diff --git a/docs/site/pages/components/[slug].js b/docs/site/pages/components/[slug].js index 940469b4..3d1fae05 100644 --- a/docs/site/pages/components/[slug].js +++ b/docs/site/pages/components/[slug].js @@ -22,7 +22,9 @@ function formatComponentPropertiesTable(componentData) { result.defaultValue = "nothing"; } else if (Object.hasOwn(properties[property], "enum")) { result.values = properties[property].enum.join(" / "); - result.defaultValue = properties[property].default ? properties[property].default : ""; + result.defaultValue = properties[property].default + ? properties[property].default + : ""; } else { result.values = "text"; result.defaultValue = "-"; @@ -70,7 +72,11 @@ export default function Component({ componentData, version }) { - - ) + ), )}
+ Property @@ -85,11 +91,15 @@ export default function Component({ componentData, version }) { ({ values, description, property, defaultValue, required }) => (
- {property.replace(/([A-Z])/g, " $1").toLowerCase()} + + {property.replace(/([A-Z])/g, " $1").toLowerCase()} +
{values}
- {description ?
{description}
: undefined} + {description ? ( +
{description}
+ ) : undefined}
{defaultValue} @@ -98,7 +108,7 @@ export default function Component({ componentData, version }) { {required}
diff --git a/docs/site/pages/index.js b/docs/site/pages/index.js index 619e3f4f..d7c4999b 100644 --- a/docs/site/pages/index.js +++ b/docs/site/pages/index.js @@ -1,4 +1,7 @@ -import { getSortedComponentsData, getComponentSchemasVersion } from "../lib/components"; +import { + getSortedComponentsData, + getComponentSchemasVersion, +} from "../lib/components"; import Link from "next/link"; import Head from "next/head"; @@ -18,7 +21,10 @@ export default function Home({ allComponentsData, version }) {
Spectrum Components API - + @@ -26,7 +32,13 @@ export default function Home({ allComponentsData, version }) {

Spectrum Components API

{version && ( -

+

Schema version: {version}

)} @@ -34,7 +46,10 @@ export default function Home({ allComponentsData, version }) {
    {allComponentsData.map(({ slug, title }) => (
  • - + {title}
  • diff --git a/docs/visualizer/CHANGELOG.md b/docs/visualizer/CHANGELOG.md index f3bc752f..c42e6adf 100644 --- a/docs/visualizer/CHANGELOG.md +++ b/docs/visualizer/CHANGELOG.md @@ -4,4 +4,4 @@ ### Patch Changes -- [#436](https://github.com/adobe/spectrum-tokens/pull/436) [`101e1e1`](https://github.com/adobe/spectrum-tokens/commit/101e1e1d58d75e780334588f69d2f2947e35b776) Thanks [@GarthDB](https://github.com/GarthDB)! - Tokens recently changed to use numbers for certain values (multipliers, etc). This caused a bug in the visualizer. +- [#436](https://github.com/adobe/spectrum-design-data/pull/436) [`101e1e1`](https://github.com/adobe/spectrum-design-data/commit/101e1e1d58d75e780334588f69d2f2947e35b776) Thanks [@GarthDB](https://github.com/GarthDB)! - Tokens recently changed to use numbers for certain values (multipliers, etc). This caused a bug in the visualizer. diff --git a/docs/visualizer/README.md b/docs/visualizer/README.md index 62475324..3e37bb2c 100644 --- a/docs/visualizer/README.md +++ b/docs/visualizer/README.md @@ -1,21 +1,21 @@ # Spectrum Token Visualization Tool -Current url of deployed static site: [https://opensource.adobe.com/spectrum-tokens/visualizer/](https://opensource.adobe.com/spectrum-tokens/visualizer/) +Current url of deployed static site: -Screenshot 2023-02-28 at 2 40 02 PM +Screenshot 2023-02-28 at 2 40 02 PM ## Setup for local development First, checkout the source code ``` -git clone git@github.com:adobe/spectrum-tokens.git +git clone git@github.com:adobe/spectrum-design-data.git ``` Navigate into the spectrum-token-visualization-tool directory. ``` -cd spectrum-tokens/docs/visualizer/ +cd spectrum-design-data/docs/visualizer/ ``` Install package dependencies @@ -34,12 +34,12 @@ Now you can edit any project files, and your browser will hot-reload with your c This project is based on the Vite Lit Element Typescript boilerplate static site tooling. -You can read all about Vite here: https://vitejs.dev/guide/ +You can read all about Vite here: -You can read all about Lit Element here: https://lit.dev/docs/api/LitElement/ +You can read all about Lit Element here: -_LOCAL DEVELOPMENT NOTE_ -Because we use web workers to offload some of the data processing, local development must be done in a browser that supports Worker Ecmascript Modules: https://caniuse.com/mdn-api_worker_worker_ecmascript_modules. In other words, you can use Chrome or Safari, but NOT Firefox ( as of 12.15.2022 ). This note applies ONLY to the local development webserver. Firefox does work correctly with the built static site. +*LOCAL DEVELOPMENT NOTE* +Because we use web workers to offload some of the data processing, local development must be done in a browser that supports Worker Ecmascript Modules: . In other words, you can use Chrome or Safari, but NOT Firefox ( as of 12.15.2022 ). This note applies ONLY to the local development webserver. Firefox does work correctly with the built static site. ## Updating the deployed static site @@ -63,22 +63,22 @@ git push ## What is this prototype? How does it work? -The Spectrum Tokens source-of-truth is persisted in this public GitHub repo: https://github.com/adobe/spectrum-tokens +The Spectrum Tokens source-of-truth is persisted in this public GitHub repo: -Within that repository, the tokens are stored in a series of JSON files: https://github.com/adobe/spectrum-tokens/tree/beta/src +Within that repository, the tokens are stored in a series of JSON files: This json data structure models a directed graph of conditional relationships between tokens, meant to represent the dynamic value assignments that Spectrum clients have access to when using particular filter configurations, such as 'Spectrum/Light/Desktop' or 'Express/Darkest/Mobile'. This tool is a static site single page application that... -- Loads all of these JSON files via XHR requests at runtime -- Converts the token data into a formal node graph -- Has nodes representing Spectrum Tokens, Spectrum Components, and Spectrum Token Categories -- Has adjacencies between nodes derived from the source JSON files -- Renders a dynamic node graph view with zooming and panning -- Permits the user to simultaneously view any set of adjacency/value filters. eg.'Spectrum/Light/Desktop' or 'Express/Light/Dark/Darkest/Desktop/Mobile' -- Permits the user to select any combination of Components, Tokens, and Token Categories -- Permits the user to search for Components, Tokens, and Token Categories by substring OR value -- Displays the expanded Ancestor and Descendent graphs of all selected nodes -- Highlights the connecting token paths between selections -- Highlights the common tokens within overlapping selection descendent graphs +* Loads all of these JSON files via XHR requests at runtime +* Converts the token data into a formal node graph +* Has nodes representing Spectrum Tokens, Spectrum Components, and Spectrum Token Categories +* Has adjacencies between nodes derived from the source JSON files +* Renders a dynamic node graph view with zooming and panning +* Permits the user to simultaneously view any set of adjacency/value filters. eg.'Spectrum/Light/Desktop' or 'Express/Light/Dark/Darkest/Desktop/Mobile' +* Permits the user to select any combination of Components, Tokens, and Token Categories +* Permits the user to search for Components, Tokens, and Token Categories by substring OR value +* Displays the expanded Ancestor and Descendent graphs of all selected nodes +* Highlights the connecting token paths between selections +* Highlights the common tokens within overlapping selection descendent graphs diff --git a/packages/component-schemas/CHANGELOG.md b/packages/component-schemas/CHANGELOG.md index de85c654..a7775c8d 100644 --- a/packages/component-schemas/CHANGELOG.md +++ b/packages/component-schemas/CHANGELOG.md @@ -4,7 +4,7 @@ ### Patch Changes -* [#621](https://github.com/adobe/spectrum-tokens/pull/621) [`ee2ceb5`](https://github.com/adobe/spectrum-tokens/commit/ee2ceb541dea5eb9b5267c861e44bfd804fd33a7) Thanks [@GarthDB](https://github.com/GarthDB)! - refactor(component-schemas): rename step-list to steplist +* [#621](https://github.com/adobe/spectrum-design-data/pull/621) [`ee2ceb5`](https://github.com/adobe/spectrum-design-data/commit/ee2ceb541dea5eb9b5267c861e44bfd804fd33a7) Thanks [@GarthDB](https://github.com/GarthDB)! - refactor(component-schemas): rename step-list to steplist Renamed the `step-list` component schema to `steplist` for consistency with other single-word component names. @@ -30,7 +30,7 @@ ### Major Changes -* [#614](https://github.com/adobe/spectrum-tokens/pull/614) [`a772572`](https://github.com/adobe/spectrum-tokens/commit/a772572de88c54d279c20d7148f6ac91eb941d2a) Thanks [@AmunMRa](https://github.com/AmunMRa)! - # Component Schemas Changed (9 added, 0 deleted, 3 updated) +* [#614](https://github.com/adobe/spectrum-design-data/pull/614) [`a772572`](https://github.com/adobe/spectrum-design-data/commit/a772572de88c54d279c20d7148f6ac91eb941d2a) Thanks [@AmunMRa](https://github.com/AmunMRa)! - # Component Schemas Changed (9 added, 0 deleted, 3 updated) **Original Branch:** `main` @@ -74,7 +74,7 @@ ### Major Changes -* [#613](https://github.com/adobe/spectrum-tokens/pull/613) [`433efdd`](https://github.com/adobe/spectrum-tokens/commit/433efdd18f9b0842ae55acac3cd0fbc1e5e5db58) Thanks [@AmunMRa](https://github.com/AmunMRa)! - feat(component-schemas): add 10 new components with breaking changes to existing schemas +* [#613](https://github.com/adobe/spectrum-design-data/pull/613) [`433efdd`](https://github.com/adobe/spectrum-design-data/commit/433efdd18f9b0842ae55acac3cd0fbc1e5e5db58) Thanks [@AmunMRa](https://github.com/AmunMRa)! - feat(component-schemas): add 10 new components with breaking changes to existing schemas ## Component Schemas Changed (10 added, 0 deleted, 17 updated) @@ -207,7 +207,7 @@ ### Major Changes -* [#610](https://github.com/adobe/spectrum-tokens/pull/610) [`13d9202`](https://github.com/adobe/spectrum-tokens/commit/13d920273c02c78d3748522de6a7c7ee39b39814) Thanks [@GarthDB](https://github.com/GarthDB)! - Component schema improvements for Batch 1 components +* [#610](https://github.com/adobe/spectrum-design-data/pull/610) [`13d9202`](https://github.com/adobe/spectrum-design-data/commit/13d920273c02c78d3748522de6a7c7ee39b39814) Thanks [@GarthDB](https://github.com/GarthDB)! - Component schema improvements for Batch 1 components Quality control pass on the Design API table for v0, ensuring schema consistency and completeness across S2 components. @@ -289,7 +289,7 @@ ### Major Changes -* [#581](https://github.com/adobe/spectrum-tokens/pull/581) [`163fe7c`](https://github.com/adobe/spectrum-tokens/commit/163fe7c13bb00c639d202195a398126b6c25b58f) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(component-schemas): add S2 Batch 2 components with breaking changes +* [#581](https://github.com/adobe/spectrum-design-data/pull/581) [`163fe7c`](https://github.com/adobe/spectrum-design-data/commit/163fe7c13bb00c639d202195a398126b6c25b58f) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(component-schemas): add S2 Batch 2 components with breaking changes * Add 6 new component schemas (coach-indicator, in-field-progress-button, etc.) * Update avatar, badge, and checkbox components with breaking changes * Expand size options and add new interaction states @@ -299,13 +299,13 @@ ### Patch Changes -* [#545](https://github.com/adobe/spectrum-tokens/pull/545) [`ebc79f6`](https://github.com/adobe/spectrum-tokens/commit/ebc79f6f91bce28a64cddfc2cc5548ddcf30389d) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed a typo where meter had `valueLable` instead of `valueLabel`. +* [#545](https://github.com/adobe/spectrum-design-data/pull/545) [`ebc79f6`](https://github.com/adobe/spectrum-design-data/commit/ebc79f6f91bce28a64cddfc2cc5548ddcf30389d) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed a typo where meter had `valueLable` instead of `valueLabel`. ## 1.0.1 ### Patch Changes -* [#523](https://github.com/adobe/spectrum-tokens/pull/523) [`9c5a2ac`](https://github.com/adobe/spectrum-tokens/commit/9c5a2ac5fccb29b6f106396b21d91aab949043d4) Thanks [@GarthDB](https://github.com/GarthDB)! - S2 components batch 1 (part 2) +* [#523](https://github.com/adobe/spectrum-design-data/pull/523) [`9c5a2ac`](https://github.com/adobe/spectrum-design-data/commit/9c5a2ac5fccb29b6f106396b21d91aab949043d4) Thanks [@GarthDB](https://github.com/GarthDB)! - S2 components batch 1 (part 2) ## Changes @@ -324,7 +324,7 @@ ### Major Changes -* [#520](https://github.com/adobe/spectrum-tokens/pull/520) [`2964807`](https://github.com/adobe/spectrum-tokens/commit/2964807641908e40820bea0556b3b0542503223b) Thanks [@GarthDB](https://github.com/GarthDB) and [@AmunMRa](https://github.com/AmunMRa)! - S2 components batch 1 +* [#520](https://github.com/adobe/spectrum-design-data/pull/520) [`2964807`](https://github.com/adobe/spectrum-design-data/commit/2964807641908e40820bea0556b3b0542503223b) Thanks [@GarthDB](https://github.com/GarthDB) and [@AmunMRa](https://github.com/AmunMRa)! - S2 components batch 1 ## Changes @@ -381,34 +381,34 @@ ### Minor Changes -* [#353](https://github.com/adobe/spectrum-tokens/pull/353) [`71e674a`](https://github.com/adobe/spectrum-tokens/commit/71e674ad6baa630a900785ae21c9dcae93233b21) Thanks [@karstens](https://github.com/karstens)! - Release to latest branch +* [#353](https://github.com/adobe/spectrum-design-data/pull/353) [`71e674a`](https://github.com/adobe/spectrum-design-data/commit/71e674ad6baa630a900785ae21c9dcae93233b21) Thanks [@karstens](https://github.com/karstens)! - Release to latest branch ## 0.0.0-schema-20240821152525 ### Patch Changes -* [#353](https://github.com/adobe/spectrum-tokens/pull/353) [`dc2d6c6`](https://github.com/adobe/spectrum-tokens/commit/dc2d6c6e12c1ea4fdc0d891b3fd50ea0b1697dd7) Thanks [@karstens](https://github.com/karstens)! - Making adjustments to bring the schema more in line with what was on the spectrum website. +* [#353](https://github.com/adobe/spectrum-design-data/pull/353) [`dc2d6c6`](https://github.com/adobe/spectrum-design-data/commit/dc2d6c6e12c1ea4fdc0d891b3fd50ea0b1697dd7) Thanks [@karstens](https://github.com/karstens)! - Making adjustments to bring the schema more in line with what was on the spectrum website. ## 0.0.0-schema-20240620220450 ### Minor Changes -* [#353](https://github.com/adobe/spectrum-tokens/pull/353) [`64379eb`](https://github.com/adobe/spectrum-tokens/commit/64379ebeaf9402fe77ca1adfd020f42df60c60d9) Thanks [@karstens](https://github.com/karstens)! - Added schema for search-field and fixed some path bugs in testing +* [#353](https://github.com/adobe/spectrum-design-data/pull/353) [`64379eb`](https://github.com/adobe/spectrum-design-data/commit/64379ebeaf9402fe77ca1adfd020f42df60c60d9) Thanks [@karstens](https://github.com/karstens)! - Added schema for search-field and fixed some path bugs in testing ## 0.0.0-schema-20240618053842 ### Minor Changes -* [#353](https://github.com/adobe/spectrum-tokens/pull/353) [`b5c1579`](https://github.com/adobe/spectrum-tokens/commit/b5c15792ec5f5e5c269bfa7bf58af3df42e648c1) Thanks [@karstens](https://github.com/karstens)! - Initial release +* [#353](https://github.com/adobe/spectrum-design-data/pull/353) [`b5c1579`](https://github.com/adobe/spectrum-design-data/commit/b5c15792ec5f5e5c269bfa7bf58af3df42e648c1) Thanks [@karstens](https://github.com/karstens)! - Initial release ## 0.0.0-schema-20240614194147 ### Patch Changes -* [#353](https://github.com/adobe/spectrum-tokens/pull/353) [`9805167`](https://github.com/adobe/spectrum-tokens/commit/980516791c0bef9e2f0bbeffe6515f103f3ad7a2) Thanks [@karstens](https://github.com/karstens)! - fixed some bugs +* [#353](https://github.com/adobe/spectrum-design-data/pull/353) [`9805167`](https://github.com/adobe/spectrum-design-data/commit/980516791c0bef9e2f0bbeffe6515f103f3ad7a2) Thanks [@karstens](https://github.com/karstens)! - fixed some bugs ## 0.0.0-schema-20240613154750 ### Patch Changes -* [#353](https://github.com/adobe/spectrum-tokens/pull/353) [`6ff5ad7`](https://github.com/adobe/spectrum-tokens/commit/6ff5ad7a75356f4b93d07a2818b357da19ce5b4b) Thanks [@karstens](https://github.com/karstens)! - Initial release +* [#353](https://github.com/adobe/spectrum-design-data/pull/353) [`6ff5ad7`](https://github.com/adobe/spectrum-design-data/commit/6ff5ad7a75356f4b93d07a2818b357da19ce5b4b) Thanks [@karstens](https://github.com/karstens)! - Initial release diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index e69de29b..c0bf5f25 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -0,0 +1,12923 @@ +# [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-design-data) + +## 13.16.0 + +### Minor Changes + +* [#615](https://github.com/adobe/spectrum-design-data/pull/615) [`f64bee3`](https://github.com/adobe/spectrum-design-data/commit/f64bee3900c874775f2d3424516786a0d644d057) Thanks [@PaliwalSparsh](https://github.com/PaliwalSparsh)! - ## Token sync from Spectrum Tokens Studio + + ### Design motivation + + Changes are in service of nav selected state update + + ### Token changes + + ## Tokens Changed (20) + + **Original Branch:** `main` + **New Branch:** `tokens-sync/patch-spectrum2-from-main` + +
    Newly Deprecated (3) + + * `side-navigation-maximum-width` + * `side-navigation-with-icon-second-level-edge-to-text` + * `side-navigation-with-icon-third-level-edge-to-text` + +
    +
    Added (12) + + * `side-navigation-counter-to-disclosure` + * `side-navigation-edge-to-indicator` + * `side-navigation-indicator-to-content` + * `side-navigation-second-level-edge-to-indicator` + * `side-navigation-second-level-with-icon-edge-to-text` + * `side-navigation-second-level-with-icon-edge-to-indicator` + * `side-navigation-third-level-edge-to-indicator` + * `side-navigation-third-level-with-icon-edge-to-text` + * `side-navigation-third-level-with-icon-edge-to-indicator` + * `side-navigation-trailing-accessory-area-to-edge` + * `side-navigation-indicator-height` + * `side-navigation-indicator-thickness` + +
    + + ### Updated (5) + +
    Updated Properties (5) + + * `side-navigation-minimum-width` + * `desktop.value`: `160px` -> `144px` + * `mobile.value`: `200px` -> `180px` + * `side-navigation-second-level-edge-to-text` + * `desktop.value`: `24px` -> `38px` + * `mobile.value`: `30px` -> `44px` + * `side-navigation-third-level-edge-to-text` + * `desktop.value`: `36px` -> `64px` + * `mobile.value`: `45px` -> `70px` + * `side-navigation-with-icon-second-level-edge-to-text` + * `desktop.schema`: `dimension.json` -> `alias.json` + * `desktop.value`: `50px` -> `{side-navigation-second-level-with-icon-edge-to-text}` + * `mobile.schema`: `dimension.json` -> `alias.json` + * `mobile.value`: `62px` -> `{side-navigation-second-level-with-icon-edge-to-text}` + * `side-navigation-with-icon-third-level-edge-to-text` - `desktop.schema`: `dimension.json` -> `alias.json` - `desktop.value`: `62px` -> `{side-navigation-third-level-with-icon-edge-to-text}` - `mobile.schema`: `dimension.json` -> `alias.json` - `mobile.value`: `77px` -> `{side-navigation-third-level-with-icon-edge-to-text}` + +
    + + ### References + + * Tokens Studio PR: [adobe/spectrum-tokens-studio-data#284](https://github.com/adobe/spectrum-design-data-studio-data/pull/284) + * Spectrum Tokens PR: [#615](https://github.com/adobe/spectrum-design-data/pull/615) + +## 13.15.1 + +### Patch Changes + +* [#593](https://github.com/adobe/spectrum-design-data/pull/593) [`1e860c4`](https://github.com/adobe/spectrum-design-data/commit/1e860c4436c58ceca6f4500ea7e24d6d8cdd20c8) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - SDS-15337: Standard panel gripper color update + + Source: [spectrum-tokens-studio-data#283](https://github.com/adobe/spectrum-design-data-studio-data/pull/283) + + ## Token Changes + + ### Updated (1) + + * `standard-panel-gripper-color` + * `value`: `{gray-200}` -> `{gray-500}` + +## 13.15.0 + +### Minor Changes + +* [#589](https://github.com/adobe/spectrum-design-data/pull/589) [`3df7197`](https://github.com/adobe/spectrum-design-data/commit/3df7197e7da23c9bb107f7dfcd935b5c62a86041) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - feat: updates from spectrum-tokens sync + + Source: [spectrum-tokens-studio-data#286](https://github.com/adobe/spectrum-design-data-studio-data/pull/286) + + ## Token Changes + + **Tokens Changed (43)** + + **Original Branch:** main + **New Branch:** tokens-sync/patch-spectrum2-from-main + +
    Added (43) + + * `gradient-stop-1-avatar` + * `gradient-stop-2-avatar` + * `gradient-stop-3-avatar` + * `static-fuchsia-400` + * `static-fuchsia-600` + * `static-fuchsia-800` + * `static-indigo-400` + * `static-indigo-600` + * `static-indigo-800` + * `static-magenta-400` + * `static-magenta-600` + * `static-magenta-800` + * `static-red-400` + * `static-red-600` + * `static-red-800` + * `static-cyan-400` + * `static-cyan-600` + * `static-cyan-800` + * `static-chartreuse-400` + * `static-chartreuse-600` + * `static-chartreuse-800` + * `static-green-400` + * `static-green-600` + * `static-green-800` + * `static-orange-400` + * `static-orange-600` + * `static-orange-800` + * `static-purple-400` + * `static-purple-600` + * `static-purple-800` + * `static-turquoise-400` + * `static-turquoise-600` + * `static-turquoise-800` + * `drop-shadow-ambient-color` + * `drop-shadow-transition-color` + * `drop-shadow-emphasized-key-color` + * `drop-shadow-emphasized-hover-key-color` + * `drop-shadow-elevated-key-color` + * `drop-shadow-dragged-key-color` + * `drop-shadow-emphasized` + * `drop-shadow-emphasized-hover` + * `drop-shadow-elevated` + * `drop-shadow-dragged` + +
    + +## 13.14.1 + +### Patch Changes + +* [`b4df84e`](https://github.com/adobe/spectrum-design-data/commit/b4df84e2f2ca246332907f9ddda94438288dd98e) Thanks [@larz0](https://github.com/larz0)! - SDS-14319 generic avatar updates (Pre-multidimensional-theming) - Token Details + + This update adds the missing token change details for the recent avatar updates. + + Source: [spectrum-tokens-studio-data#281](https://github.com/adobe/spectrum-design-data-studio-data/pull/281) + + ## Token Changes + + **Tokens Changed (33)** + +
    Added (33) + + * `gradient-stop-1-avatar` + * `gradient-stop-2-avatar` + * `gradient-stop-3-avatar` + * `static-fuchsia-400` + * `static-fuchsia-600` + * `static-fuchsia-800` + * `static-indigo-400` + * `static-indigo-600` + * `static-indigo-800` + * `static-magenta-400` + * `static-magenta-600` + * `static-magenta-800` + * `static-red-400` + * `static-red-600` + * `static-red-800` + * `static-cyan-400` + * `static-cyan-600` + * `static-cyan-800` + * `static-chartreuse-400` + * `static-chartreuse-600` + * `static-chartreuse-800` + * `static-green-400` + * `static-green-600` + * `static-green-800` + * `static-orange-400` + * `static-orange-600` + * `static-orange-800` + * `static-purple-400` + * `static-purple-600` + * `static-purple-800` + * `static-turquoise-400` + * `static-turquoise-600` + * `static-turquoise-800` + +
    + +## 13.14.0 + +### Minor Changes + +* [`336f672`](https://github.com/adobe/spectrum-design-data/commit/336f67216dfd875f0feb65c10059d9f3fe6dcaf7) Thanks [@larz0](https://github.com/larz0)! - SDS-14319 generic avatar updates (Pre-multidimensional-theming) + + Source: [spectrum-tokens-studio-data#281](https://github.com/adobe/spectrum-design-data-studio-data/pull/281) + +## 13.13.0 + +### Minor Changes + +* [#559](https://github.com/adobe/spectrum-design-data/pull/559) [`1d4973e`](https://github.com/adobe/spectrum-design-data/commit/1d4973e78d814575da231c2c4080ead8a190d2fc) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - ## Token sync from Spectrum Tokens Studio + + ### Design motivation + + A new visual treatment for select box. + + ### Token changes + + ## Tokens Changed (4) + + **Original Branch:** `main` + **New Branch:** `tokens-sync/patch-spectrum2-from-main` + +
    Added (1) + + * `select-box-horizontal-minimum-width` + +
    + + ### Updated (3) + +
    Added Properties (1) + + * `select-box-edge-to-checkbox` - `value`: `8px` - `uuid`: `70a20970-ebd9-48a7-8324-44d352f79978` + +
    +
    Deleted Properties (1) + + * `select-box-edge-to-checkbox` - `desktop.schema`: -> `dimension.json` - `desktop.value`: -> `12px` - `desktop.uuid`: -> `70a20970-ebd9-48a7-8324-44d352f79978` - `mobile.schema`: -> `dimension.json` - `mobile.value`: -> `15px` - `mobile.uuid`: -> `f028974a-20d1-4e03-af77-921b1dfc2469` + +
    +
    Updated Properties (1) + + * `select-box-edge-to-checkbox` - `schema`: `scale-set.json` -> `dimension.json` + +
    + + ### References + + * Tokens Studio PR: [adobe/spectrum-tokens-studio-data#275](https://github.com/adobe/spectrum-design-data-studio-data/pull/275) + * Spectrum Tokens PR: [#559](https://github.com/adobe/spectrum-design-data/pull/559) + +## 13.12.0 + +### Minor Changes + +* [#527](https://github.com/adobe/spectrum-design-data/pull/527) [`28cfacc`](https://github.com/adobe/spectrum-design-data/commit/28cfacce9072ebc7afe0434d6fec55d587ddd2ce) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Fixed accordion token values due to changelog error + + ## Token Diff + + Updated (4) + +
    Added Properties (1) + + * `accordion-top-to-text-compact-medium` + value: 5px + uuid: [`484c960`](https://github.com/adobe/spectrum-design-data/commit/484c9603)-07f1-4ba6-b1bf-7cfaec5d1594 + +
    +
    Deleted Properties (1) + + * `accordion-top-to-text-compact-medium` + desktop.schema: dimension.json + desktop.value: 8px + desktop.uuid: [`484c960`](https://github.com/adobe/spectrum-design-data/commit/484c9603)-07f1-4ba6-b1bf-7cfaec5d1594 + mobile.schema: dimension.json + mobile.value: 14px + mobile.uuid: [`4a7dda7`](https://github.com/adobe/spectrum-design-data/commit/4a7dda7f)-a45a-496c-8d38-cb4e4807e544 + +
    +
    Updated Properties (2) + + * `accordion-top-to-text-compact-medium` + schema: scale-set.json -> dimension.json + * `accordion-top-to-text-spacious-medium` + desktop.value: 16px -> 13px + mobile.value: 19px -> 15px + +
    + +## 13.11.0 + +### Minor Changes + +* [#525](https://github.com/adobe/spectrum-design-data/pull/525) [`db6d0ed`](https://github.com/adobe/spectrum-design-data/commit/db6d0ed669e013e6f3ff52aea89fc7a5e798149a) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - composite tokens + +
    Newly Deprecated (2) + + * `card-minimum-width`: This token has been deprecated, use card-minimum-width-default instead. + * `tree-view-item-to-item`: This token has been deprecated, use tree-view-item-to-item-default instead. + +
    +
    Added (22) + + * `component-xs-regular` + * `component-xs-medium` + * `component-xs-bold` + * `component-s-regular` + * `component-s-medium` + * `component-s-bold` + * `component-m-regular` + * `component-m-medium` + * `component-m-bold` + * `component-l-regular` + * `component-l-medium` + * `component-l-bold` + * `component-xl-regular` + * `component-xl-medium` + * `component-xl-bold` + * `component-padding-vertical-50` + * `component-padding-vertical-75` + * `component-padding-vertical-100` + * `component-padding-vertical-200` + * `component-padding-vertical-300` + * `card-minimum-width-default` + * `tree-view-item-to-item-default` + +
    + +
    Updated Properties (3) + + * `sans-serif-font-family` + value: Adobe Clean -> Adobe Clean Spectrum VF + * `card-minimum-width` + schema: dimension.json -> alias.json + value: 100px -> card-minimum-width-default + * `tree-view-item-to-item` + schema: dimension.json -> alias.json + value: -1px -> tree-view-item-to-item-default + +
    + +## 13.10.1 + +### Patch Changes + +* [#517](https://github.com/adobe/spectrum-design-data/pull/517) [`8f8f8a6`](https://github.com/adobe/spectrum-design-data/commit/8f8f8a60b7adf5105ced4f914cf30928117ddc5e) Thanks [@larz0](https://github.com/larz0)! - `accordion-top-to-text-medium` values in desktop and mobile were incorrect due to changelog error. + Corrected `accordion-focus-indicator-gap` values. Corrections weren't recorded in the changelog. + + ## Design motivation + + This is a bug fix. + + ## Token diff + + Updated (2) + +
    Updated Properties (2) + + * `accordion-focus-indicator-gap` + * value: `0px` -> `2px` + * `accordion-top-to-text-medium` + * desktop.value: `12px` -> `9px` + * mobile.value: `16px` -> `10px` + +
    + +## 13.10.0 + +### Minor Changes + +* [#509](https://github.com/adobe/spectrum-design-data/pull/509) [`0387332`](https://github.com/adobe/spectrum-design-data/commit/038733232bec26f823d63b88f564ff2c962c50a1) Thanks [@larz0](https://github.com/larz0)! - Updated accordion tokens + + ## Design Motivation + + Added missing components for density and updated names and values for the upcoming Clean VF update. + + ## Token Diff + +
    Newly Deprecated (8) + + * `accordion-top-to-text-regular-small` + * `accordion-top-to-text-regular-medium` + * `accordion-top-to-text-regular-large` + * `accordion-top-to-text-regular-extra-large` + * `accordion-bottom-to-text-regular-small` + * `accordion-bottom-to-text-regular-medium` + * `accordion-bottom-to-text-regular-large` + * `accordion-bottom-to-text-regular-extra-large` + +
    + +
    Added (20) + + * `field-top-to-disclosure-icon-compact-small` + * `field-top-to-disclosure-icon-small` + * `field-top-to-disclosure-icon-spacious-small` + * `field-top-to-disclosure-icon-compact-medium` + * `field-top-to-disclosure-icon-medium` + * `field-top-to-disclosure-icon-spacious-medium` + * `field-top-to-disclosure-icon-compact-large` + * `field-top-to-disclosure-icon-large` + * `field-top-to-disclosure-icon-spacious-large` + * `field-top-to-disclosure-icon-compact-extra-large` + * `field-top-to-disclosure-icon-extra-large` + * `field-top-to-disclosure-icon-spacious-extra-large` + * `accordion-bottom-to-text-extra-large` + * `accordion-bottom-to-text-large` + * `accordion-bottom-to-text-medium` + * `accordion-bottom-to-text-small` + * `accordion-top-to-text-extra-large` + * `accordion-top-to-text-large` + * `accordion-top-to-text-medium` + * `accordion-top-to-text-small` + +
    + +
    Added Properties (3) + + * `accordion-top-to-text-compact-small` + * `desktop.schema`: dimension.json + * `desktop.value`: 3px + * `desktop.uuid`: [`d6cc404`](https://github.com/adobe/spectrum-design-data/commit/d6cc404c)-af92-43be-88e3-407fdcb6e068 + * `mobile.schema`: dimension.json + * `mobile.value`: 4px + * `mobile.uuid`: [`cfc8d28`](https://github.com/adobe/spectrum-design-data/commit/cfc8d280)-5ea0-47f2-bdcb-ae5e93627498 + * `accordion-top-to-text-compact-medium` + * `desktop.schema`: dimension.json + * `desktop.value`: 8px + * `desktop.uuid`: [`484c960`](https://github.com/adobe/spectrum-design-data/commit/484c9603)-07f1-4ba6-b1bf-7cfaec5d1594 + * `mobile.schema`: dimension.json + * `mobile.value`: 14px + * `mobile.uuid`: [`4a7dda7`](https://github.com/adobe/spectrum-design-data/commit/4a7dda7f)-a45a-496c-8d38-cb4e4807e544 + * `time-field-minimum-width` + * `description`: 2.5x height of field + +
    + +## 13.9.0 + +### Minor Changes + +* [#504](https://github.com/adobe/spectrum-design-data/pull/504) [`6ec680a`](https://github.com/adobe/spectrum-design-data/commit/6ec680adb5f0372f86afdb415f1122630e6ac596) Thanks [@larz0](https://github.com/larz0)! - Added list view tokens + + ## Design Motivation + + These are the required tokens for the list view component. + + ## Token Diff + +
    Added (28) + + * `visual-to-control-100` + * `label-to-description-0` + * `list-view-minimum-height` + * `list-view-minimum-width` + * `list-view-item-top-corner-radius` + * `list-view-item-bottom-corner-radius` + * `list-view-end-edge-to-content` + * `stack-item-selected-background-opacity-emphasized` + * `stack-item-selected-background-opacity-emphasized-hover` + * `stack-item-selected-background-opacity-emphasized-down` + * `stack-item-selected-background-opacity-emphasized-key-focus` + * `stack-item-header-minimum-width` + * `stack-item-start-edge-to-content` + * `stack-item-drag-handle-to-control` + * `stack-item-text-to-control` + * `stack-item-edge-to-control` + * `stack-item-edge-to-visual` + * `stack-item-action-to-navigation` + * `stack-item-header-to-item` + * `stack-item-item-to-item` + * `stack-item-background-color-hover` + * `stack-item-background-color-down` + * `stack-item-background-color-key-focus` + * `stack-item-selected-background-color-default` + * `stack-item-selected-background-color-hover` + * `stack-item-selected-background-color-down` + * `stack-item-selected-background-color-key-focus` + * `stack-item-selected-background-color-emphasized` + +
    + +## 13.8.0 + +### Minor Changes + +* [#502](https://github.com/adobe/spectrum-design-data/pull/502) [`26845e5`](https://github.com/adobe/spectrum-design-data/commit/26845e5885168bdfb7191b246b2ad41def39dc15) Thanks [@larz0](https://github.com/larz0)! - Tag field and missing icon tokens + + ## Design Motivation + + * These are the required tokens for the tag fields component. + * These UI icons already exist and are being used in number field, menu items, swatch and list view. + * This was brought up on Slack by the CSS team in the implementation channel + When we initially added the first batch of UI icons size tokens, these specific icons were not used in components yet, but now are, which is why they're missing. + + ## Token Diff + +
    Added (22) + + * `link-out-icon-size-300` + * `link-out-icon-size-400` + * `add-icon-size-50` + * `add-icon-size-75` + * `add-icon-size-100` + * `add-icon-size-200` + * `add-icon-size-300` + * `drag-handle-icon-size-75` + * `drag-handle-icon-size-100` + * `drag-handle-icon-size-200` + * `drag-handle-icon-size-300` + * `gripper-icon-size-100` + * `tag-field-default-width-small` + * `tag-field-default-width-medium` + * `tag-field-default-width-large` + * `tag-field-minimum-width` + * `tag-field-minimum-height-small` + * `tag-field-minimum-height-medium` + * `tag-field-minimum-height-large` + * `tag-field-edge-to-content-small` + * `tag-field-edge-to-content-medium` + * `tag-field-edge-to-content-large` + +
    + +## 13.7.0 + +### Minor Changes + +* [#499](https://github.com/adobe/spectrum-design-data/pull/499) [`0c1a81b`](https://github.com/adobe/spectrum-design-data/commit/0c1a81b6c5715e4de1d423b6bc7a59ce4fe30d2f) Thanks [@larz0](https://github.com/larz0)! - Added new accodion tokens + + ## Design Motivation + + These tokens are required for the accordion component. + + ## Token Diff + +
    Added (19)
    + + * `accordion-edge-to-content-area-small` + * `accordion-edge-to-content-area-medium` + * `accordion-edge-to-content-area-large` + * `accordion-edge-to-content-area-extra-large` + * `single-calendar-popover-minimum-width` + * `single-calendar-popover-minimum-height` + * `double-calendar-popover-minimum-width` + * `double-calendar-popover-minimum-height` + * `triple-calendar-popover-minimum-width` + * `triple-calendar-popover-minimum-height` + * `date-field-minimum-width` + * `date-field-text-to-visual` + * `time-field-minimum-width` + * `time-field-text-to-visual` + * `date-picker-visual-to-field-button` + * `date-picker-text-to-visual` + * `date-picker-minimum-width` + * `segmented-text-field-gap` + * `segmented-text-field-rounding` + +
    + +## 13.6.0 + +### Minor Changes + +* [#497](https://github.com/adobe/spectrum-design-data/pull/497) [`fc0682e`](https://github.com/adobe/spectrum-design-data/commit/fc0682e16765f3beb9a823cc9b2f9f2464b6ccc6) Thanks [@larz0](https://github.com/larz0)! - Added horizontal card tokens + + ## Design Motivation + + These tokens are needed for horizontal cards. + + ## Token Diff + +
    Added (3) + + * `card-horizontal-edge-to-content-compact` + * `card-horizontal-edge-to-content-default` + * `card-horizontal-edge-to-content-spacious` + +
    + +## 13.5.0 + +### Minor Changes + +* [#494](https://github.com/adobe/spectrum-design-data/pull/494) [`f569623`](https://github.com/adobe/spectrum-design-data/commit/f569623b790b1b9256b8b278619df80b6766fc58) Thanks [@larz0](https://github.com/larz0)! - Added vf-related-line-height tokens for desktop and mobile. + + ## Design Motivation + + These tokens are required for the upcoming composite typography tokens. + + ## Token Diff + +
    + Newly Deprecated (1) + + * `drop-zone-content-maximum-width` + +
    +
    + Added (18) + + * `line-height-font-size-25` + * `line-height-font-size-50` + * `line-height-font-size-75` + * `line-height-font-size-100` + * `line-height-font-size-200` + * `line-height-font-size-300` + * `line-height-font-size-400` + * `line-height-font-size-500` + * `line-height-font-size-600` + * `line-height-font-size-700` + * `line-height-font-size-800` + * `line-height-font-size-900` + * `line-height-font-size-1000` + * `line-height-font-size-1100` + * `line-height-font-size-1200` + * `line-height-font-size-1300` + * `line-height-font-size-1400` + * `line-height-font-size-1500` + +
    + +## 13.4.0 + +### Minor Changes + +* [#489](https://github.com/adobe/spectrum-design-data/pull/489) [`40ffdee`](https://github.com/adobe/spectrum-design-data/commit/40ffdee07a89f4c85331f95ef96b8dc07e3fb981) Thanks [@larz0](https://github.com/larz0)! - Added steplist tokens + + ## Design Motivation + + These token are required for the implementation of steplist. + + ## Token Diff + +
    Added (18) + + * `steplist-step-default-width-small` + * `steplist-step-default-width-medium` + * `steplist-step-default-width-large` + * `steplist-step-default-width-extra-large` + * `steplist-step-default-height-small` + * `steplist-step-default-height-medium` + * `steplist-step-default-height-large` + * `steplist-step-default-height-extra-large` + * `steplist-visual-size-small` + * `steplist-visual-size-medium` + * `steplist-visual-size-large` + * `steplist-visual-size-extra-large` + * `steplist-track-thickness-medium` + * `steplist-step-to-track-size-small` + * `steplist-step-to-track-size-medium` + * `steplist-step-to-track-size-large` + * `steplist-step-to-track-size-extra-large` + * `steplist-bottom-to-text` + +
    + +## 13.3.0 + +### Minor Changes + +* [#487](https://github.com/adobe/spectrum-design-data/pull/487) [`07e15af`](https://github.com/adobe/spectrum-design-data/commit/07e15afbbce289bdd69f09690247205bf89bbea3) Thanks [@larz0](https://github.com/larz0)! - Token added for segmented control + + ## Token Diff + +
    Added (1) + + * `segmented-control-item-maximum-width` + +
    + +## 13.2.0 + +### Minor Changes + +* [#485](https://github.com/adobe/spectrum-design-data/pull/485) [`5fd35fe`](https://github.com/adobe/spectrum-design-data/commit/5fd35fe524f293848c90cdc08a85e7220e7518e5) Thanks [@larz0](https://github.com/larz0)! - Added wireframe colors + + ## Design Motivation + + Wireframe theme colors are something the cross-cloud and CCUE teams will need in their documentation. + + ## Token Diff + + **Tokens Changed (174)** + + ## `main` | `tokens-sync/patch-spectrum2-from-main` + + Updated (174) + +
    Added Properties (82) + + * `informative-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `informative-color-200` + * `wireframe.uuid`: `71ebebf0-95e7-45f7-9f6f-d14ef51cf4f0` + * `positive-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `positive-color-200` + * `wireframe.uuid`: `531be3e1-ddfa-4d3b-9a7f-73d7f0e38cd9` + * `notice-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `notice-color-200` + * `wireframe.uuid`: `163958bd-7303-4328-ad3c-b04f8dacaf32` + * `negative-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `negative-color-200` + * `wireframe.uuid`: `ea3ceaa2-235b-4c55-88b2-c0d744434d83` + * `accent-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `accent-color-200` + * `wireframe.uuid`: `5c9c8a1c-c4ac-45e5-ba5f-b08edd9f4297` + * `icon-color-blue-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `blue-1000` + * `wireframe.uuid`: `95cd46ba-7b1f-4ae4-86c1-1957c007a6a2` + * `icon-color-blue-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `blue-1100` + * `wireframe.uuid`: `c32c7711-0889-4f62-afe6-4b744166a66e` + * `icon-color-brown-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `brown-800` + * `wireframe.uuid`: `afdc8658-f6a4-4205-af17-553c04cca24d` + * `icon-color-brown-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `brown-900` + * `wireframe.uuid`: `bffb9e2b-565a-4774-8f57-ef03768b4176` + * `icon-color-brown-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `brown-1000` + * `wireframe.uuid`: `b2474c42-cecc-4f91-b3e9-a0855a79d5ed` + * `icon-color-celery-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `celery-700` + * `wireframe.uuid`: `c3f8622e-4ee4-4a68-be5d-c7b9f583c686` + * `icon-color-celery-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `celery-800` + * `wireframe.uuid`: `a32205e0-b208-4539-9fe4-5eb2d7464d91` + * `icon-color-celery-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `celery-900` + * `wireframe.uuid`: `f9fa057e-58f4-472f-8ab7-6bae7d1d27eb` + * `icon-color-chartreuse-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `chartreuse-600` + * `wireframe.uuid`: `6bfd7aea-dfd9-47ee-9f18-e4431886e1cf` + * `icon-color-chartreuse-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `chartreuse-700` + * `wireframe.uuid`: `6d3438e5-cc32-4c26-960d-434b24dbb1e0` + * `icon-color-chartreuse-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `chartreuse-800` + * `wireframe.uuid`: `d00300aa-5990-483d-8218-229169e9cd74` + * `icon-color-fuchsia-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `fuchsia-900` + * `wireframe.uuid`: `75b0d002-84b7-4c75-8c74-3b1ff15ff10a` + * `icon-color-fuchsia-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `fuchsia-1000` + * `wireframe.uuid`: `53acea92-bc9f-4c41-93b9-e18cde613305` + * `icon-color-fuchsia-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `fuchsia-1100` + * `wireframe.uuid`: `625728db-30ec-41d7-9f6f-0ce9c0201c66` + * `icon-color-indigo-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `indigo-900` + * `wireframe.uuid`: `05f75802-5062-422a-8a39-f7e8f71ce17e` + * `icon-color-indigo-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `indigo-1000` + * `wireframe.uuid`: `735472d9-0220-4e7e-a06b-9f3504cad201` + * `icon-color-indigo-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `indigo-1100` + * `wireframe.uuid`: `1f2e8832-16e1-4030-a5ef-16f5b5c663d0` + * `icon-color-magenta-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `magenta-900` + * `wireframe.uuid`: `d0802b2a-faba-4530-8f50-dc22e6962d44` + * `icon-color-magenta-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `magenta-1000` + * `wireframe.uuid`: `3e368eed-b2f7-4e9e-9935-421ef0f86f9f` + * `icon-color-magenta-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `magenta-1100` + * `wireframe.uuid`: `ddfb3e51-e724-48b4-aecc-dcfe000eec11` + * `icon-color-orange-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `orange-700` + * `wireframe.uuid`: `41b694b3-5805-4ee7-aca0-88527dc6120b` + * `icon-color-orange-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `orange-800` + * `wireframe.uuid`: `1c3bc51c-edf8-4c2b-af93-44d7ffeb46b2` + * `icon-color-orange-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `orange-900` + * `wireframe.uuid`: `b00737a5-c111-42fe-9378-47a79139e11a` + * `icon-color-pink-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `pink-800` + * `wireframe.uuid`: `1e0b6862-10cd-4860-9bf7-9cbce71e7f81` + * `icon-color-pink-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `pink-900` + * `wireframe.uuid`: `8a64d036-a935-442a-b596-5d4d0fd001a9` + * `icon-color-pink-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `pink-1000` + * `wireframe.uuid`: `c31819e9-6bf1-4048-94bc-ee6f04b82474` + * `icon-color-purple-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `purple-900` + * `wireframe.uuid`: `1b6ce540-0839-4ba2-bf98-51fb499113a4` + * `icon-color-purple-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `purple-1000` + * `wireframe.uuid`: `ec923982-6694-44bc-8f75-ebe1c76ba09a` + * `icon-color-purple-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `purple-1100` + * `wireframe.uuid`: `bf3e3302-4798-4b35-a37b-0d5fcd89b556` + * `icon-color-red-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `red-1000` + * `wireframe.uuid`: `ece07052-dff3-483e-a6b8-1d12b0d94d8a` + * `icon-color-red-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `red-1100` + * `wireframe.uuid`: `02527b17-485a-4a59-b62e-5aa8bfca7df7` + * `icon-color-silver-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `silver-700` + * `wireframe.uuid`: `928c1a80-e248-4e00-aed8-5ddf764a5d22` + * `icon-color-silver-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `silver-800` + * `wireframe.uuid`: `cd0a41af-19ed-48fc-b659-d34cb37d4cef` + * `icon-color-silver-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `silver-900` + * `wireframe.uuid`: `dc071b6f-788a-4a83-b1c0-17ae536c01e7` + * `icon-color-turquoise-primary-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `turquoise-700` + * `wireframe.uuid`: `3c39dea2-cdc4-4042-a134-7197a60ba8dd` + * `icon-color-turquoise-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `turquoise-800` + * `wireframe.uuid`: `2aca1631-0249-47dc-aa3b-44a51f5ea220` + * `icon-color-turquoise-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `turquoise-900` + * `wireframe.uuid`: `0c3db762-fa21-497c-9a32-007e41ab24d6` + * `icon-color-yellow-primary-hover` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `yellow-500` + * `wireframe.uuid`: `f4edf76c-b3f4-4455-b1d5-e222fa79b146` + * `icon-color-yellow-primary-down` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `yellow-600` + * `wireframe.uuid`: `24f49675-e169-4996-9993-c4a8941e8fab` + * `icon-color-blue-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `blue-200` + * `wireframe.uuid`: `2bfc538f-30ae-4e45-92ef-bb7ad72f1396` + * `icon-color-brown-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `brown-200` + * `wireframe.uuid`: `2f1fba9a-25b3-4ac7-aaee-7d6da1292da8` + * `icon-color-celery-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `celery-100` + * `wireframe.uuid`: `2b519299-a5c9-47d9-bf52-51ce26410073` + * `icon-color-chartreuse-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `chartreuse-200` + * `wireframe.uuid`: `ec1c5d08-dd5e-40f5-adee-06ffecb36ed6` + * `icon-color-cinnamon-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `cinnamon-200` + * `wireframe.uuid`: `61eaba25-d605-412f-ae11-5f36fd0061c8` + * `icon-color-cyan-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `cyan-100` + * `wireframe.uuid`: `b85aef89-a234-4386-9c46-22e2caa3b4f6` + * `icon-color-green-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `green-100` + * `wireframe.uuid`: `3231780c-e233-4a60-b063-1c3a383669a3` + * `icon-color-indigo-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `indigo-200` + * `wireframe.uuid`: `67cfb253-49f0-4a14-a83c-140324ef5bc0` + * `icon-color-orange-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `orange-200` + * `wireframe.uuid`: `a6f69b6d-496f-40bb-96a5-f04efa4ce8bc` + * `icon-color-red-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `red-200` + * `wireframe.uuid`: `12859f90-c49c-4508-bc0d-df4d9512c864` + * `icon-color-seafoam-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `seafoam-200` + * `wireframe.uuid`: `bc3ce9f1-cde9-4609-b4ab-c78a15ac064c` + * `icon-color-silver-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `silver-200` + * `wireframe.uuid`: `b2e8e8ac-001a-4a4e-bcc9-9508ba954ece` + * `icon-color-turquoise-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `turquoise-200` + * `wireframe.uuid`: `a5b3d3f5-785b-4969-9389-12c1f7b2f26d` + * `icon-color-yellow-background` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `yellow-100` + * `wireframe.uuid`: `5a5e15ab-e73b-4997-be67-39534d98e823` + * `card-selection-background-color` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `transparent-black-600` + * `wireframe.uuid`: `5dd9406f-9b36-43f1-8b35-b1bb7f2a4c8d` + * `popover-border-color` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `gray-200` + * `wireframe.uuid`: `92133ef4-9b81-4fbd-9736-8b83078ef053` + * `action-bar-border-color` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `transparent-white-25` + * `wireframe.uuid`: `e242c2e1-54db-40c5-98ee-abebdcd59f4d` + * `drop-shadow-color-300` + * `wireframe.schema`: `color.json` + * wireframe.value: rgba(0, 0, 0, 0.2) + * `wireframe.uuid`: `e91afe82-e2db-4c13-86cd-bcb2e866edf2` + * `neutral-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `gray-100` + * `wireframe.uuid`: `64b2528e-4c1b-4850-a67f-8bd7bb05d36c` + * `gray-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `gray-100` + * `wireframe.uuid`: `6529e76c-0c21-449f-a318-2629cf90a58a` + * `blue-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `blue-200` + * `wireframe.uuid`: `93563495-60af-4a84-b811-9672fc46a1cc` + * `green-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `green-200` + * `wireframe.uuid`: `3911fa84-a5b3-4ea1-b6ad-47f222482ddb` + * `orange-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `orange-200` + * `wireframe.uuid`: `a9671857-3e09-4132-a522-cd8f5b4cf8ff` + * `red-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `red-200` + * `wireframe.uuid`: `8a6b560b-50b2-4dbf-900b-0ed63233df8b` + * `brown-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `brown-200` + * `wireframe.uuid`: `ac6995d9-8982-4dac-ba85-4c79ec7850a1` + * `cinnamon-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `cinnamon-200` + * `wireframe.uuid`: `f326443a-8f5d-4aa2-8bbb-17dc7b0420d6` + * `celery-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `celery-200` + * `wireframe.uuid`: `2182ee3c-55aa-4d07-9cc1-f827c88ce3d6` + * `chartreuse-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `chartreuse-200` + * `wireframe.uuid`: `ab75a3ba-17ce-4aae-902f-2b3e0233b726` + * `cyan-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `cyan-200` + * `wireframe.uuid`: `2f72eaf9-547a-436e-86ab-695979db4f93` + * `fuchsia-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `fuchsia-200` + * `wireframe.uuid`: `28ef060d-098c-4388-b600-00f4f8fe49aa` + * `indigo-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `indigo-200` + * `wireframe.uuid`: `2110b943-24cf-4afd-81b2-31676f1400f8` + * `magenta-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `magenta-200` + * `wireframe.uuid`: `b526e518-47b2-4a1c-b54b-42596381b7fd` + * `pink-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `pink-200` + * `wireframe.uuid`: `d726501f-8920-4434-b397-b0974037161a` + * `purple-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `purple-200` + * `wireframe.uuid`: `1d628f99-7c9c-423d-a470-a260d84d0d8d` + * `seafoam-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `seafoam-200` + * `wireframe.uuid`: `0acaf55e-7e99-45f9-b99b-e461fa78a481` + * `silver-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `silver-200` + * `wireframe.uuid`: `ec3dddb5-3944-493c-b5c8-f08c3272dc06` + * `turquoise-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `turquoise-200` + * `wireframe.uuid`: `4e874813-4ebc-4855-bcb3-83024a6d1ba2` + * `yellow-subtle-background-color-default` + * `wireframe.schema`: `alias.json` + * `wireframe.value`: `yellow-200` + * `wireframe.uuid`: `a238d434-3d0b-48fe-a413-a07e9229cdda` + +
    +
    Updated Properties (92) + + * `icon-color-blue-primary-default` + * `wireframe.uuid`: `20880dfd-57dc-486d-b0dd-c44002f340e3` -> `a306b28e-f698-427d-a576-439b2ab378fc` + * `icon-color-red-primary-default` + * `wireframe.uuid`: `d524a471-2dce-4497-a650-30c2d6641eec` -> `16bbb033-224a-43e6-881c-bd29ffd70d1b` + * `icon-color-yellow-primary-default` + * `wireframe.uuid`: `4a1eeded-e467-46be-a787-78555b2fe353` -> `fc16cbe3-7cf3-4744-a571-5bd2bdcef29e` + * `gray-25` + * `wireframe.value`: `rgb(255, 255, 255)` -> `rgb(254, 254, 255)` + * `gray-50` + * `wireframe.value`: `rgb(255, 255, 255)` -> `rgb(246, 248, 253)` + * `gray-75` + * `wireframe.value`: `rgb(253, 253, 254)` -> `rgb(241, 244, 251)` + * `gray-100` + * `wireframe.value`: `rgb(244, 246, 252)` -> `rgb(228, 234, 249)` + * `gray-200` + * `wireframe.value`: `rgb(230, 236, 248)` -> `rgb(214, 224, 246)` + * `gray-300` + * `wireframe.value`: `rgb(210, 220, 243)` -> `rgb(207, 219, 245)` + * `gray-400` + * `wireframe.value`: `rgb(183, 200, 235)` -> `rgb(180, 199, 239)` + * `gray-500` + * `wireframe.value`: `rgb(152, 176, 226)` -> `rgb(108, 142, 217)` + * `gray-600` + * `wireframe.value`: `rgb(113, 144, 210)` -> `rgb(72, 110, 194)` + * `gray-700` + * `wireframe.value`: `rgb(78, 112, 187)` -> `rgb(44, 77, 149)` + * `gray-800` + * `wireframe.value`: `rgb(73, 110, 194)` -> `rgb(25, 46, 93)` + * `gray-900` + * `wireframe.value`: `rgb(72, 110, 194)` -> `rgb(10, 19, 39)` + * `gray-1000` + * `wireframe.value`: `rgb(8, 12, 22)` -> `rgb(0, 0, 0)` + * `opacity-checkerboard-square-dark` + * `wireframe.uuid`: `e7fe88a4-6ab3-4963-8f10-9908a5a83123` -> `35fcf7b1-7140-4522-8410-48547aaf6fd6` + * `menu-item-background-color-default` + * `wireframe.uuid`: `9f60dd0a-2a38-4f0d-a83c-3acf777a622a` -> `ae0fb15e-c8a2-42c4-b973-0fb523003b79` + * `menu-item-background-color-hover` + * `wireframe.uuid`: `d3d08f7a-c516-4f0c-9377-4824d615ab66` -> `1329d684-6ac9-4f46-9bbc-046e2de5276e` + * `menu-item-background-color-down` + * `wireframe.uuid`: `a8911c6e-f480-4a7d-b7fe-e20a45fb8b2a` -> `e31108a0-1b8a-4d5e-b579-592a01619bd0` + * `menu-item-background-color-keyboard-focus` + * `wireframe.uuid`: `541a7020-5cf5-4ebd-ac1f-2b776d5925af` -> `e9b046ee-408e-4781-a2cd-1d321bde4529` + * `menu-item-background-color-disabled` + * `wireframe.uuid`: `ce26d102-2e5e-4b11-b9bf-4d1b347c60c5` -> `5924d0c5-6938-4660-8be3-9374bb3e5b0c` + * `background-layer-2-color` + * `wireframe.value`: `gray-50` -> `gray-25` + * `wireframe.uuid`: `6556a64d-5944-4d65-a6cc-9c6121044ac7` -> `b834a6a5-e582-4450-b87a-57fa23e12179` + * `neutral-subdued-background-color-default` + * `wireframe.value`: `gray-600` -> `gray-700` + * `wireframe.uuid`: `7a4f50a8-4e1b-49b4-b94a-6282c63bd5ea` -> `fdcab585-e3a9-4026-bf40-e7fdd01bf05b` + * `neutral-subdued-background-color-hover` + * `wireframe.value`: `gray-700` -> `gray-800` + * `wireframe.uuid`: `0e32d8e6-2f91-4d56-a717-8bfc17c0a2c6` -> `81fb8734-c8c3-4f6e-8a14-177ce1d7db02` + * `neutral-subdued-background-color-down` + * `wireframe.uuid`: `a4cbab05-1225-45a3-b612-194df4ab85ae` -> `6e62476c-b60b-4d33-97c5-5fdf1f3a7930` + * `neutral-subdued-background-color-key-focus` + * `wireframe.value`: `gray-700` -> `gray-800` + * `wireframe.uuid`: `ea153fd0-f7f2-41ab-8f65-8181b26a939b` -> `ee7dec87-de8b-4145-9985-f5ba78bc3a3b` + * `accent-background-color-default` + * `wireframe.uuid`: `ebd98dbc-0949-4fca-8fe1-4cd7d610e7a5` -> `1f4f6c48-633c-4eb5-b7d6-bf5a9a7fde18` + * `accent-background-color-hover` + * `wireframe.uuid`: `17ce0649-1b72-4e06-96a3-5137c8688233` -> `a4fb3dc6-b724-4e5d-bbc4-c4d985e85975` + * `accent-background-color-down` + * `wireframe.value`: `accent-color-1100` -> `accent-color-1000` + * `wireframe.uuid`: `8d496041-f129-4794-9d8b-e64bb685b0c1` -> `a5201034-a592-47c6-be78-050ae951043e` + * `accent-background-color-key-focus` + * `wireframe.uuid`: `98781a4d-1bcc-4ede-8d40-37c76e445b3d` -> `afb8dd77-7de2-4749-a594-1ff68b2fcd67` + * `informative-background-color-default` + * `wireframe.uuid`: `d3fda217-e0cb-4dd8-8d13-a22bcc648f4d` -> `02e7121e-71eb-4228-a61a-963d7f2a531b` + * `informative-background-color-hover` + * `wireframe.uuid`: `5d0b457c-b59e-4cd6-b8c5-fa934e9a56ae` -> `d0ad5e30-c689-4831-bbd0-2de373aa11b5` + * `informative-background-color-down` + * `wireframe.value`: `informative-color-1100` -> `informative-color-1000` + * `wireframe.uuid`: `e210cabe-f803-4a46-8da7-e35e003140d6` -> `109c9d4a-a024-4b41-9a99-4c0e671f1011` + * `informative-background-color-key-focus` + * `wireframe.uuid`: `1be73e4a-0817-435d-910c-0b0fc1825cbb` -> `5bcac2b7-7ebb-405a-bfe3-1785d4e6fde6` + * `negative-background-color-default` + * `wireframe.uuid`: `4720ac8b-47ae-443a-b393-89f08a1b52c6` -> `ebadb88b-90a3-492e-ba3c-e9f1232b5ce5` + * `negative-background-color-hover` + * `wireframe.uuid`: `8c39a7fc-c904-4cf7-8ccc-be459d1a9c0e` -> `b1104fe3-4965-411e-95d3-87f59cdbc756` + * `negative-background-color-down` + * `wireframe.value`: `negative-color-1100` -> `negative-color-1000` + * `wireframe.uuid`: `da8b206c-6b7c-4994-be3b-6e99e813ad30` -> `ce2e6ea6-c692-4cff-a2ac-f0c1c2e054ca` + * `negative-background-color-key-focus` + * `wireframe.uuid`: `3791aad5-91cc-4aed-af41-8033afe33bf6` -> `abcf178e-0e44-4f57-a62c-382cb9478be2` + * `positive-background-color-default` + * `wireframe.uuid`: `87a32594-ddb7-48f8-a322-6dc0b761dc05` -> `27688f39-6b46-4b40-a3c5-67694a0ff672` + * `positive-background-color-hover` + * `wireframe.uuid`: `e6572844-3118-460c-824f-b11b82e27180` -> `7c4bd8ad-72ce-4518-b91d-a7b7721fe920` + * `positive-background-color-down` + * `wireframe.value`: `positive-color-1100` -> `positive-color-1000` + * `wireframe.uuid`: `18af3356-ca03-4a36-bd15-b59bf11ee776` -> `45c598af-e0da-4e41-855a-55dfc77f198c` + * `positive-background-color-key-focus` + * `wireframe.uuid`: `2ca6e211-63f7-4c0e-b089-03905788c7f1` -> `74eef2ae-5b83-4a25-b882-5960f64ecef0` + * `notice-background-color-default` + * `wireframe.value`: `notice-color-1100` -> `notice-color-600` + * `wireframe.uuid`: `0fdc01c4-459a-4f74-a8e0-fdbe93f8138f` -> `85515d6c-4674-435f-a2d4-b9bf8311781e` + * `gray-background-color-default` + * `wireframe.uuid`: `c41bb795-182e-45c0-afea-4ae2148e37a4` -> `385372e9-8b04-45ea-a7a2-f1f62ac68ad6` + * `red-background-color-default` + * `wireframe.value`: `red-1100` -> `red-900` + * `wireframe.uuid`: `4b943658-87e5-4026-87de-0265d1f48a49` -> `3fb6aa49-631f-489b-9dab-63a5712d72da` + * `orange-background-color-default` + * `wireframe.value`: `orange-1100` -> `orange-600` + * `wireframe.uuid`: `55baa188-9e75-4e31-b2db-729dd47ed1dd` -> `37c3db03-6dd6-47e5-a03c-25663d116c52` + * `yellow-background-color-default` + * `wireframe.value`: `yellow-1100` -> `yellow-400` + * `wireframe.uuid`: `08e44ba2-3627-4ce0-b8f5-eea6ce277517` -> `ff49d6b0-4f39-4cbb-a580-db03b0579a71` + * `chartreuse-background-color-default` + * `wireframe.value`: `chartreuse-1100` -> `chartreuse-500` + * `wireframe.uuid`: `ebb64096-1155-4376-a13c-4a5db968253a` -> `67d55f09-a468-4174-9b59-13008b32b44e` + * `celery-background-color-default` + * `wireframe.value`: `celery-1100` -> `celery-600` + * `wireframe.uuid`: `3e44abd8-ea12-4c0a-9007-4a6edaa3b962` -> `b6e14409-7a61-46fc-80d0-2b7854baf871` + * `green-background-color-default` + * `wireframe.value`: `green-1100` -> `green-900` + * `wireframe.uuid`: `d9b7a966-e6c6-43a9-b2bd-6b72ff31aed7` -> `f7814be9-b21f-40ff-9d34-8c0a96eea93e` + * `seafoam-background-color-default` + * `wireframe.value`: `seafoam-1100` -> `seafoam-900` + * `wireframe.uuid`: `4152095a-615b-4562-b183-78f765f6b3b0` -> `e2f2ef18-aabf-44fd-b074-d94f75862f3d` + * `cyan-background-color-default` + * `wireframe.value`: `cyan-1100` -> `cyan-900` + * `wireframe.uuid`: `64bd4cb9-d698-4fb0-8b56-c0c519245549` -> `764bb832-de5a-4c21-b429-f911a931ead6` + * `blue-background-color-default` + * `wireframe.value`: `blue-1100` -> `blue-900` + * `wireframe.uuid`: `dd76a630-e1fd-4831-94db-8622af24f4da` -> `db8b9268-68dc-46be-aace-1adf8d85061b` + * `indigo-background-color-default` + * `wireframe.value`: `indigo-1100` -> `indigo-900` + * `wireframe.uuid`: `71e2c0b9-4513-4679-9b97-ef1c345ec343` -> `dedf817e-2883-4632-936c-207fdafe7469` + * `purple-background-color-default` + * `wireframe.value`: `purple-1100` -> `purple-900` + * `wireframe.uuid`: `cde24ea8-c181-42cb-9f71-0675628c5338` -> `720cfaa3-6bb1-4df1-946f-94fabae54e7b` + * `fuchsia-background-color-default` + * `wireframe.value`: `fuchsia-1100` -> `fuchsia-900` + * `wireframe.uuid`: `5eb86ed6-384e-4e72-a615-8bab097bbec8` -> `13e66afc-a9d8-46a9-8b15-310c5b35e52f` + * `magenta-background-color-default` + * `wireframe.value`: `magenta-1100` -> `magenta-900` + * `wireframe.uuid`: `299e780b-ddb9-444b-b416-2f33c9929be0` -> `c7b29eba-f8a3-43f7-b5b9-0c1a7f04bb38` + * `neutral-visual-color` + * `wireframe.uuid`: `96d8bbe9-5fc6-4260-8cb3-5888836c4708` -> `57233b29-bbc6-4f9e-83c1-9325fd6f964c` + * `accent-visual-color` + * `wireframe.value`: `accent-color-900` -> `accent-color-800` + * `wireframe.uuid`: `a65c3f83-e46a-4d31-a6f0-de3b87479ea3` -> `6e12afb7-c76e-4a83-acc2-f891953d5190` + * `informative-visual-color` + * `wireframe.value`: `informative-color-900` -> `informative-color-800` + * `wireframe.uuid`: `405f9ef3-b882-4c72-9f5e-47739a8ae9d6` -> `556d02fd-fecb-4772-92cb-921ac509bcae` + * `negative-visual-color` + * `wireframe.value`: `negative-color-900` -> `negative-color-800` + * `wireframe.uuid`: `ae218610-35ca-478d-8277-f032b1f85737` -> `9211e320-de05-4097-8350-fef2293be6a0` + * `notice-visual-color` + * `wireframe.value`: `notice-color-900` -> `notice-color-800` + * `wireframe.uuid`: `0cbb9365-59d0-4514-a352-b5379733c360` -> `e6e779ea-6015-467f-8df7-9027280bdea2` + * `positive-visual-color` + * `wireframe.value`: `positive-color-900` -> `positive-color-800` + * `wireframe.uuid`: `cb447264-e862-4880-b9a3-f23028c836ac` -> `96075e1a-6739-41c8-985b-af30b09be6c3` + * `gray-visual-color` + * `wireframe.uuid`: `25d6638d-5597-4307-9a90-5ea276ce68c7` -> `e8113995-d2ec-4089-a050-9b393eb9e403` + * `red-visual-color` + * `wireframe.value`: `red-900` -> `red-800` + * `wireframe.uuid`: `5fa19855-1c32-4fa7-9363-8edea0bad4e2` -> `834d0a71-9060-4ce0-8e25-8b062ef89b19` + * `orange-visual-color` + * `wireframe.value`: `orange-900` -> `orange-700` + * `wireframe.uuid`: `535ebae4-5308-4132-9ba7-2ead58c7af2d` -> `f76b6279-2d64-47fe-a531-1737a834b21a` + * `yellow-visual-color` + * `wireframe.value`: `yellow-900` -> `yellow-600` + * `wireframe.uuid`: `24e58c48-8597-40f1-96e0-90ae08910665` -> `c14eedf9-0f34-4a38-9b89-7c9b5f3e0af6` + * `chartreuse-visual-color` + * `wireframe.value`: `chartreuse-900` -> `chartreuse-600` + * `wireframe.uuid`: `cea3da59-71a3-4ac6-b475-877ea2444839` -> `a2cc3b6e-014f-4522-8d05-9e9d06464504` + * `celery-visual-color` + * `wireframe.value`: `celery-900` -> `celery-700` + * `wireframe.uuid`: `88890424-a280-473b-a529-027e7ac828ac` -> `d8adaaf1-b6a3-400a-853b-6ba5a5c873e7` + * `green-visual-color` + * `wireframe.value`: `green-900` -> `green-700` + * `wireframe.uuid`: `b2ca6377-9a7b-467f-8352-bda31fd4abbf` -> `4aba2da7-3eed-4a11-830c-58cc4f6bb6cb` + * `seafoam-visual-color` + * `wireframe.value`: `seafoam-900` -> `seafoam-700` + * `wireframe.uuid`: `7f641817-9a7d-4625-b534-3b7e38bb5eae` -> `15de4533-1a59-4a9f-899f-004a429471c7` + * `cyan-visual-color` + * `wireframe.value`: `cyan-900` -> `cyan-600` + * `wireframe.uuid`: `cf213ea9-796e-4263-8866-b16f66b95e97` -> `ad004c2f-8cab-45d5-8e22-921d3f0332ea` + * `blue-visual-color` + * `wireframe.value`: `blue-900` -> `blue-800` + * `wireframe.uuid`: `4d8f8afe-c348-459d-9006-bc60bd53df84` -> `0f058412-085d-4670-8cd5-964ed903a20a` + * `indigo-visual-color` + * `wireframe.value`: `indigo-900` -> `indigo-800` + * `wireframe.uuid`: `7c047042-0227-420d-b78f-193d4534b218` -> `056968e0-d29e-4b1c-a9b1-50853f6d159b` + * `purple-visual-color` + * `wireframe.value`: `purple-900` -> `purple-800` + * `wireframe.uuid`: `4b7780b2-d488-4446-88f8-cab0fd27bcd5` -> `ef836f5b-c6b9-4e6b-a671-e979dc53c407` + * `fuchsia-visual-color` + * `wireframe.value`: `fuchsia-900` -> `fuchsia-800` + * `wireframe.uuid`: `66316379-927a-4e47-a5dd-84eb0c82eba8` -> `656af4f3-a545-4445-9d2b-2c4a17ab46db` + * `magenta-visual-color` + * `wireframe.value`: `magenta-900` -> `magenta-800` + * `wireframe.uuid`: `4de213eb-5f57-45a2-bea7-5f1b402b81ff` -> `9bf3d052-42d1-454b-8ae6-ee0b40d9a9c8` + * `background-elevated-color` + * `wireframe.uuid`: `d9cb27b8-5535-4e3a-8ca5-6eda69b934af` -> `644ca621-9138-44e3-bdd7-123a9fccd9a6` + * `background-pasteboard-color` + * `wireframe.uuid`: `6a60aa01-d789-4d39-9867-2264e66d419c` -> `93e51c98-d83e-4dad-86b7-f060a80a601e` + * `brown-visual-color` + * `wireframe.uuid`: `986418d6-3e22-441d-ba7f-732ee47aad04` -> `349dc3c5-fd57-403c-bc42-2a60b8325bd3` + * `cinnamon-visual-color` + * `wireframe.uuid`: `0535836b-ff76-4619-8e53-20f400b9996c` -> `9022dc27-f9d9-4697-b808-ebe36d216f8b` + * `pink-visual-color` + * `wireframe.uuid`: `b2fc4b00-4b9e-4e57-9892-0b4a59df4868` -> `fcbf8451-ad82-4247-a867-a5d0034667b5` + * `silver-visual-color` + * `wireframe.uuid`: `dca6ce31-57d3-4bb9-8d6a-cc2c66a3a3f4` -> `7e749788-d92d-4ad5-b4d2-446e77c5a041` + * `turquoise-visual-color` + * `wireframe.uuid`: `47319d06-bec7-4520-893c-f4442b85cfd5` -> `bc700351-a33c-4164-9ba7-3f86733ebe54` + * `brown-background-color-default` + * `wireframe.uuid`: `5f0767be-3be9-4d10-a708-740565e1c457` -> `fbd8df06-a6c9-462b-ad25-a3f77016128e` + * `cinnamon-background-color-default` + * `wireframe.uuid`: `d2c78c57-304d-4d62-87b0-2adb4085552f` -> `8e940601-2401-46ff-a5fb-9137d12678b7` + * `pink-background-color-default` + * `wireframe.uuid`: `636ebb71-7386-4a6a-b0c3-5778dd993b22` -> `b60042cd-3ce7-4952-aeae-338d2b5fe98d` + * `silver-background-color-default` + * `wireframe.uuid`: `422a0b99-1222-4c78-ac55-615992ed607c` -> `e0bb7dad-7f1b-4b6e-b2fe-99f8b14f3240` + * `turquoise-background-color-default` + * `wireframe.uuid`: `73e40908-216f-406e-993f-287477753e65` -> `50eb3d20-ab84-4541-8807-551391016b54` + * `drop-shadow-color-100` + * `wireframe.uuid`: `8e496445-97fc-4ff6-96d4-81b0215b8ffe` -> `4110e60c-efd6-421d-9c5c-0356cfff8697` + * `drop-shadow-color-200` + * `wireframe.uuid`: `aa54be1b-bf30-42b7-91ec-09259bea0bd3` -> `6e379d86-d4cc-48d4-a8a4-8b4be9cfc912` + +
    + +## 13.1.0 + +### Minor Changes + +* [#482](https://github.com/adobe/spectrum-design-data/pull/482) [`5602504`](https://github.com/adobe/spectrum-design-data/commit/5602504f49313ff49f327ce1e4a31da8f4e9fedc) Thanks [@larz0](https://github.com/larz0) and [@PaliwalSparsh](https://github.com/PaliwalSparsh)! - Added tokens for S2 cards + + ## Design Motivation + + These tokens are required for the implementation of card components + + ## Token Diff + + ### Tokens Changed (64) + + `main` | `tokens-sync/patch-spectrum2-from-main` + + *** + +
    Added (61) + + * `card-edge-to-content-compact-extra-small` + * `card-edge-to-content-default-extra-small` + * `card-edge-to-content-spacious-extra-small` + * `card-edge-to-content-compact-small` + * `card-edge-to-content-default-small` + * `card-edge-to-content-spacious-small` + * `card-edge-to-content-compact-medium` + * `card-edge-to-content-default-medium` + * `card-edge-to-content-spacious-medium` + * `card-edge-to-content-compact-large` + * `card-edge-to-content-default-large` + * `card-edge-to-content-spacious-large` + * `card-edge-to-content-compact-extra-large` + * `card-edge-to-content-default-extra-large` + * `card-edge-to-content-spacious-extra-large` + * `card-header-to-description` + * `card-description-to-footer` + * `card-selection-background-size-small` + * `card-selection-background-size-medium` + * `card-selection-background-size-large` + * `card-selection-background-size-extra-large` + * `card-minimum-width-extra-small` + * `card-minimum-width-small` + * `card-minimum-width-medium` + * `card-minimum-width-large` + * `card-minimum-width-extra-large` + * `card-default-width-extra-small` + * `card-default-width-small` + * `card-default-width-medium` + * `card-default-width-large` + * `card-default-width-extra-large` + * `card-maximum-width-extra-small` + * `card-maximum-width-small` + * `card-maximum-width-medium` + * `card-maximum-width-large` + * `card-maximum-width-extra-large` + * `card-minimum-height-extra-small` + * `card-minimum-height-small` + * `card-minimum-height-medium` + * `card-minimum-height-large` + * `card-minimum-height-extra-large` + * `collection-card-minimum-height-extra-small` + * `collection-card-minimum-height-small` + * `collection-card-minimum-height-medium` + * `collection-card-minimum-height-large` + * `collection-card-minimum-height-extra-large` + * `collection-card-minimum-height-hero-extra-small` + * `collection-card-minimum-height-hero-small` + * `collection-card-minimum-height-hero-medium` + * `collection-card-minimum-height-hero-large` + * `collection-card-minimum-height-hero-extra-large` + * `user-card-minimum-height-small` + * `user-card-minimum-height-medium` + * `user-card-minimum-height-large` + * `user-card-minimum-height-extra-large` + * `user-card-minimum-height-title-below-small` + * `user-card-minimum-height-title-below-medium` + * `user-card-minimum-height-title-below-large` + * `user-card-minimum-height-title-below-extra-large` + * `card-background-well-color` + * `card-background-loading-color` + +
    + + #### Updated (3) + +
    Added Properties (1) + + * `card-selection-background-color` + * `light.schema`: `alias.json` + * `light.value`: `transparent-white-600` + * `light.uuid`: `622c6e86-dea6-416d-9f13-bb6ef112d3cb` + * `dark.schema`: `alias.json` + * `dark.value`: `transparent-black-600` + * `dark.uuid`: `81c0608b-c977-490e-b8d7-830d0676fdad` + +
    +
    Deleted Properties (1) + + * `card-selection-background-color` + * `value`: `gray-100` + * `uuid`: `622c6e86-dea6-416d-9f13-bb6ef112d3cb` + +
    +
    Updated Properties (1) + + * `card-selection-background-color` + * `schema`: `alias.json` -> `color-set.json` + +
    + +## 13.0.0 + +### Major Changes + +GA of Spectrum 2 data. Discussions of the merge plan can be found at the following links: + +``` +- [S2 GA release plan and S1 future support plan](https://github.com/adobe/spectrum-design-data/discussions/473) +- [Spectrum, S2, S2-foundations updated merge plan](https://github.com/adobe/spectrum-design-data/discussions/465) +- [Spectrum Tokens 12.x.x to Spectrum 2 migration proposal](https://github.com/adobe/spectrum-design-data/discussions/338) +``` + +#### Design Motivation + +See for more information. + +Spectrum 2 is what’s next. It’s more than just a design refresh: it’s a set of adaptable resources for making experiences feel contextual, cohesive, and performant. It’s based on real-world situations. It places people’s needs first. It delivers what’s needed, when it’s needed. It’s constantly adapting. And most importantly: it belongs to everyone. + +#### Token Diff + +``` +
    Newly Deprecated (166) + +- `heading-sans-serif-light-font-weight` +- `heading-sans-serif-light-font-style` +- `heading-serif-light-font-weight` +- `heading-serif-light-font-style` +- `heading-cjk-light-font-weight` +- `heading-cjk-light-font-style` +- `heading-sans-serif-light-strong-font-weight` +- `heading-sans-serif-light-strong-font-style` +- `heading-serif-light-strong-font-weight` +- `heading-serif-light-strong-font-style` +- `heading-cjk-light-strong-font-weight` +- `heading-cjk-light-strong-font-style` +- `heading-sans-serif-light-emphasized-font-weight` +- `heading-sans-serif-light-emphasized-font-style` +- `heading-serif-light-emphasized-font-weight` +- `heading-serif-light-emphasized-font-style` +- `heading-cjk-light-emphasized-font-weight` +- `heading-cjk-light-emphasized-font-style` +- `heading-sans-serif-light-strong-emphasized-font-weight` +- `heading-sans-serif-light-strong-emphasized-font-style` +- `heading-serif-light-strong-emphasized-font-weight` +- `heading-serif-light-strong-emphasized-font-style` +- `heading-cjk-light-strong-emphasized-font-weight` +- `heading-cjk-light-strong-emphasized-font-style` +- `heading-size-xxs` +- `heading-cjk-size-xxs` +- `detail-sans-serif-light-font-weight` +- `detail-sans-serif-light-font-style` +- `detail-serif-light-font-weight` +- `detail-serif-light-font-style` +- `detail-cjk-light-font-weight` +- `detail-cjk-light-font-style` +- `detail-sans-serif-light-strong-font-weight` +- `detail-sans-serif-light-strong-font-style` +- `detail-serif-light-strong-font-weight` +- `detail-serif-light-strong-font-style` +- `detail-cjk-light-strong-font-weight` +- `detail-cjk-light-strong-font-style` +- `detail-sans-serif-light-emphasized-font-weight` +- `detail-sans-serif-light-emphasized-font-style` +- `detail-serif-light-emphasized-font-weight` +- `detail-serif-light-emphasized-font-style` +- `detail-cjk-light-emphasized-font-weight` +- `detail-cjk-light-emphasized-font-style` +- `detail-sans-serif-light-strong-emphasized-font-weight` +- `detail-sans-serif-light-strong-emphasized-font-style` +- `detail-serif-light-strong-emphasized-font-weight` +- `detail-serif-light-strong-emphasized-font-style` +- `detail-cjk-light-strong-emphasized-font-weight` +- `detail-cjk-light-strong-emphasized-font-style` +- `detail-letter-spacing` +- `detail-sans-serif-text-transform` +- `detail-serif-text-transform` +- `negative-subdued-background-color-default` +- `negative-subdued-background-color-hover` +- `negative-subdued-background-color-down` +- `negative-subdued-background-color-key-focus` +- `drop-shadow-x` +- `drop-shadow-y` +- `drop-shadow-blur` +- `field-edge-to-text-quiet` +- `field-edge-to-border-quiet` +- `field-edge-to-alert-icon-quiet` +- `field-edge-to-validation-icon-quiet` +- `field-width`: This token has been deprecated, use field-default-width-medium instead. +- `field-width-small`: This token has been deprecated, use field-default-width-small instead. +- `character-count-to-field-quiet-small` +- `character-count-to-field-quiet-medium` +- `character-count-to-field-quiet-large` +- `character-count-to-field-quiet-extra-large` +- `field-width-medium`: This token has been deprecated, use field-default-width-medium instead. +- `field-width-large`: This token has been deprecated, use field-default-width-large instead. +- `field-width-extra-large`: This token has been deprecated, use field-default-width-extra-large instead. +- `field-label-to-component-quiet-small` +- `field-label-to-component-quiet-medium` +- `field-label-to-component-quiet-large` +- `field-label-to-component-quiet-extra-large` +- `help-text-top-to-workflow-icon-small` +- `help-text-top-to-workflow-icon-medium` +- `help-text-top-to-workflow-icon-large` +- `help-text-top-to-workflow-icon-extra-large` +- `popover-top-to-content-area`: Introduced as an error. Use popover-edge-to-content-area instead +- `menu-item-label-to-description` +- `slider-track-thickness` +- `slider-control-height-small` +- `slider-control-height-medium` +- `slider-control-height-large` +- `slider-control-height-extra-large` +- `slider-handle-size-small` +- `slider-handle-size-medium` +- `slider-handle-size-large` +- `slider-handle-size-extra-large` +- `slider-handle-border-width-down-small` +- `slider-handle-border-width-down-medium` +- `slider-handle-border-width-down-large` +- `slider-handle-border-width-down-extra-large` +- `slider-handle-gap` +- `slider-bottom-to-handle-small` +- `slider-bottom-to-handle-medium` +- `slider-bottom-to-handle-large` +- `slider-bottom-to-handle-extra-large` +- `combo-box-quiet-minimum-width-multiplier` +- `combo-box-visual-to-field-button-small`: Replaced with combo-box-visual-to-field-button +- `combo-box-visual-to-field-button-medium`: Replaced with combo-box-visual-to-field-button +- `combo-box-visual-to-field-button-large`: Replaced with combo-box-visual-to-field-button +- `combo-box-visual-to-field-button-extra-large`: Replaced with combo-box-visual-to-field-button +- `combo-box-visual-to-field-button-quiet`: Replaced with combo-box-visual-to-field-button +- `alert-dialog-title-size`: Replace with alert-dialog-title-font-size +- `alert-dialog-description-size`: Replace with alert-dialog-description-font-size +- `opacity-checkerboard-square-size`: This token has been deprecated, use opacity-checkerboard-square-size-medium instead. +- `contextual-help-title-size` +- `contextual-help-body-size` +- `breadcrumbs-height` +- `breadcrumbs-height-compact` +- `breadcrumbs-top-to-text` +- `breadcrumbs-top-to-text-compact` +- `breadcrumbs-bottom-to-text` +- `breadcrumbs-bottom-to-text-compact` +- `breadcrumbs-start-edge-to-text`: Use a sized token instead, e.g., breadcrumbs-start-edge-to-text-large. +- `breadcrumbs-top-to-separator-icon`: Use a sized token instead, e.g., breadcrumbs-top-to-separator-large. +- `breadcrumbs-top-to-separator-icon-compact`: Use a sized token instead, e.g., breadcrumbs-top-to-separator-medium. +- `breadcrumbs-top-to-separator-icon-multiline` +- `breadcrumbs-separator-icon-to-bottom-text-multiline` +- `breadcrumbs-truncated-menu-to-separator-icon` +- `breadcrumbs-top-to-truncated-menu-compact` +- `rating-indicator-width` +- `rating-indicator-to-icon` +- `illustrated-message-maximum-width` +- `illustrated-message-title-size`: Use illustrated-message-medium-title-font-size instead +- `illustrated-message-cjk-title-size`: Use illustrated-message-medium-cjk-title-font-size instead +- `illustrated-message-body-size`: Use illustrated-message-medium-body-font-size instead +- `drop-zone-title-size`: Use drop-zone-title-font-size instead +- `drop-zone-cjk-title-size`: Use drop-zone-cjk-title-font-size instead +- `drop-zone-body-size`: Use drop-zone-body-font-size instead +- `coach-mark-title-size`: Replace with coach-mark-title-font-size +- `coach-mark-body-size`: Replace with coach-mark-body-font-size +- `coach-mark-pagination-body-size`: Replace with coach-mark-pagination-body-font-size +- `accordion-disclosure-indicator-to-text` +- `accordion-edge-to-disclosure-indicator` +- `table-row-height-small-regular`: This token has been deprecated, use table-row-height-small instead. +- `table-row-height-medium-regular`: This token has been deprecated, use table-row-height-medium instead. +- `table-row-height-large-regular`: This token has been deprecated, use table-row-height-large instead. +- `table-row-height-extra-large-regular`: This token has been deprecated, use table-row-height-extra-large instead. +- `table-row-top-to-text-small-regular`: This token has been deprecated, use table-row-top-to-text-small instead. +- `table-row-top-to-text-medium-regular`: This token has been deprecated, use table-row-top-to-text-medium instead. +- `table-row-top-to-text-large-regular`: This token has been deprecated, use table-row-top-to-text-large instead. +- `table-row-top-to-text-extra-large-regular`: This token has been deprecated, use table-row-top-to-text-extra-large instead. +- `table-row-bottom-to-text-small-regular`: This token has been deprecated, use table-row-bottom-to-text-small instead. +- `table-row-bottom-to-text-medium-regular`: This token has been deprecated, use table-row-bottom-to-text-medium instead. +- `table-row-bottom-to-text-large-regular`: This token has been deprecated, use table-row-bottom-to-text-large instead. +- `table-row-bottom-to-text-extra-large-regular`: This token has been deprecated, use table-row-bottom-to-text-extra-large instead. +- `table-row-checkbox-to-top-small-regular`: This token has been deprecated, use table-row-checkbox-to-top-small instead. +- `table-row-checkbox-to-top-medium-regular`: This token has been deprecated, use table-row-checkbox-to-top-medium instead. +- `table-row-checkbox-to-top-large-regular`: This token has been deprecated, use table-row-checkbox-to-top-large instead. +- `table-row-checkbox-to-top-extra-large-regular`: This token has been deprecated, use table-row-checkbox-to-top-extra-large instead. +- `table-thumbnail-to-top-minimum-small-regular`: This token has been deprecated, use table-thumbnail-to-top-minimum-small instead. +- `table-thumbnail-to-top-minimum-medium-regular`: This token has been deprecated, use table-thumbnail-to-top-minimum-medium instead. +- `table-thumbnail-to-top-minimum-large-regular`: This token has been deprecated, use table-thumbnail-to-top-minimum-large instead. +- `table-thumbnail-to-top-minimum-extra-large-regular`: This token has been deprecated, use table-thumbnail-to-top-minimum-extra-large instead. +- `in-field-button-edge-to-fill` +- `tag-minimum-width-multiplier` +- `icon-color-inverse` +- `color-loupe-drop-shadow-color`: Use `drop-shadow-elevated-color` instead +- `color-loupe-drop-shadow-y` +- `color-loupe-drop-shadow-blur` +- `drop-shadow-color`: Replaced with drop-shadow-color-100 + +
    +
    Newly "Un-deprecated" (8) + +- `slider-control-height-small` +- `slider-control-height-medium` +- `slider-control-height-large` +- `slider-control-height-extra-large` +- `slider-bottom-to-handle-small` +- `slider-bottom-to-handle-medium` +- `slider-bottom-to-handle-large` +- `slider-bottom-to-handle-extra-large` + +
    +
    Added (665) + +- `text-align-start` +- `text-align-center` +- `text-align-end` +- `font-size-1400` +- `font-size-1500` +- `heading-cjk-size-xxxxl` +- `heading-size-xxxxl` +- `body-size-xxs` +- `body-cjk-size-xxs` +- `detail-cjk-size-xs` +- `detail-size-xs` +- `accent-color-1500` +- `accent-color-1600` +- `informative-color-1500` +- `informative-color-1600` +- `negative-color-1500` +- `negative-color-1600` +- `notice-color-1500` +- `notice-color-1600` +- `positive-color-1500` +- `positive-color-1600` +- `informative-subtle-background-color-default` +- `positive-subtle-background-color-default` +- `notice-subtle-background-color-default` +- `negative-subtle-background-color-default` +- `icon-color-informative` +- `icon-color-neutral` +- `icon-color-positive` +- `icon-color-notice` +- `icon-color-negative` +- `accent-subtle-background-color-default` +- `corner-radius-0` +- `corner-radius-300` +- `corner-radius-400` +- `corner-radius-500` +- `corner-radius-600` +- `corner-radius-700` +- `corner-radius-800` +- `corner-radius-1000` +- `text-to-visual-400` +- `text-to-control-50` +- `side-focus-indicator` +- `component-size-width-ratio-down` +- `component-size-minimum-perspective-down` +- `component-size-difference-down` +- `corner-radius-none` +- `corner-radius-small-default` +- `corner-radius-medium-default` +- `corner-radius-large-default` +- `corner-radius-extra-large-default` +- `corner-radius-full` +- `corner-radius-small-size-small` +- `corner-radius-small-size-medium` +- `corner-radius-small-size-large` +- `corner-radius-small-size-extra-large` +- `corner-radius-medium-size-extra-small` +- `corner-radius-medium-size-small` +- `corner-radius-medium-size-medium` +- `corner-radius-medium-size-large` +- `corner-radius-medium-size-extra-large` +- `drop-shadow-x-100` +- `drop-shadow-x-200` +- `drop-shadow-x-300` +- `drop-shadow-y-100` +- `drop-shadow-y-200` +- `drop-shadow-y-300` +- `drop-shadow-blur-100` +- `drop-shadow-blur-200` +- `drop-shadow-blur-300` +- `drop-shadow-emphasized-default-x` +- `drop-shadow-emphasized-default-y` +- `drop-shadow-emphasized-default-blur` +- `drop-shadow-emphasized-hover-x` +- `drop-shadow-emphasized-hover-y` +- `drop-shadow-emphasized-hover-blur` +- `drop-shadow-elevated-x` +- `drop-shadow-elevated-y` +- `drop-shadow-elevated-blur` +- `drop-shadow-dragged-x` +- `drop-shadow-dragged-y` +- `drop-shadow-dragged-blur` +- `gradient-stop-1-genai` +- `gradient-stop-2-genai` +- `gradient-stop-3-genai` +- `gradient-stop-1-premium` +- `gradient-stop-2-premium` +- `gradient-stop-3-premium` +- `window-to-edge` +- `component-size-maximum-perspective-down` +- `popover-edge-to-content-area` +- `opacity-checkerboard-square-size-medium` +- `avatar-size-800` +- `avatar-size-900` +- `avatar-size-1000` +- `avatar-size-1100` +- `avatar-size-1200` +- `avatar-size-1300` +- `avatar-size-1400` +- `avatar-size-1500` +- `table-row-height-small` +- `table-row-height-medium` +- `table-row-height-large` +- `table-row-height-extra-large` +- `table-row-top-to-text-small` +- `table-row-top-to-text-medium` +- `table-row-top-to-text-large` +- `table-row-top-to-text-extra-large` +- `table-row-bottom-to-text-small` +- `table-row-bottom-to-text-medium` +- `table-row-bottom-to-text-large` +- `table-row-bottom-to-text-extra-large` +- `table-row-checkbox-to-top-small` +- `table-row-checkbox-to-top-medium` +- `table-row-checkbox-to-top-large` +- `table-row-checkbox-to-top-extra-large` +- `table-thumbnail-to-top-minimum-small` +- `table-thumbnail-to-top-minimum-medium` +- `table-thumbnail-to-top-minimum-large` +- `table-thumbnail-to-top-minimum-extra-large` +- `divider-vertical-minimum-height` +- `divider-horizontal-minimum-width` +- `tooltip-tip-corner-radius` +- `switch-handle-size-small` +- `switch-handle-selected-size-small` +- `switch-handle-selected-size-medium` +- `switch-handle-selected-size-large` +- `switch-handle-selected-size-extra-large` +- `switch-handle-size-medium` +- `switch-handle-size-large` +- `switch-handle-size-extra-large` +- `tag-maximum-width-multiplier` +- `tag-label-to-clear-icon-small` +- `tag-label-to-clear-icon-medium` +- `tag-label-to-clear-icon-large` +- `tag-edge-to-clear-icon-small` +- `tag-edge-to-clear-icon-medium` +- `tag-edge-to-clear-icon-large` +- `title-cjk-emphasized-font-style` +- `title-cjk-emphasized-font-weight` +- `title-cjk-font-family` +- `title-cjk-font-style` +- `title-cjk-font-weight` +- `title-cjk-line-height` +- `title-cjk-size-l` +- `title-cjk-size-m` +- `title-cjk-size-s` +- `title-cjk-size-xl` +- `title-cjk-size-xs` +- `title-cjk-size-xxl` +- `title-cjk-size-xxxl` +- `title-cjk-strong-emphasized-font-style` +- `title-cjk-strong-emphasized-font-weight` +- `title-cjk-strong-font-style` +- `title-cjk-strong-font-weight` +- `title-line-height` +- `title-margin-bottom-multiplier` +- `title-margin-top-multiplier` +- `title-sans-serif-emphasized-font-style` +- `title-sans-serif-emphasized-font-weight` +- `title-sans-serif-font-family` +- `title-sans-serif-font-style` +- `title-sans-serif-font-weight` +- `title-sans-serif-strong-emphasized-font-style` +- `title-sans-serif-strong-emphasized-font-weight` +- `title-sans-serif-strong-font-style` +- `title-sans-serif-strong-font-weight` +- `title-serif-emphasized-font-style` +- `title-serif-emphasized-font-weight` +- `title-serif-font-family` +- `title-serif-font-style` +- `title-serif-font-weight` +- `title-serif-strong-emphasized-font-style` +- `title-serif-strong-emphasized-font-weight` +- `title-serif-strong-font-style` +- `title-serif-strong-font-weight` +- `title-size-l` +- `title-size-m` +- `title-size-s` +- `title-size-xl` +- `title-size-xs` +- `title-size-xxl` +- `title-size-xxxl` +- `opacity-checkerboard-square-size-small` +- `alert-banner-top-to-alert-icon` +- `field-default-width-small` +- `field-default-width-medium` +- `field-default-width-large` +- `field-default-width-extra-large` +- `tag-minimum-width-small` +- `tag-minimum-width-medium` +- `tag-minimum-width-large` +- `combo-box-visual-to-field-button` +- `in-field-button-edge-to-fill-small` +- `in-field-button-edge-to-fill-medium` +- `in-field-button-edge-to-fill-large` +- `in-field-button-edge-to-fill-extra-large` +- `in-field-progress-circle-edge-to-fill` +- `in-field-progress-circle-size-75` +- `in-field-progress-circle-size-100` +- `in-field-progress-circle-size-200` +- `in-field-progress-circle-size-300` +- `alert-dialog-description-font-size` +- `alert-dialog-title-font-size` +- `coach-mark-body-font-size` +- `coach-mark-pagination-body-font-size` +- `coach-mark-title-font-size` +- `standard-dialog-title-font-size` +- `standard-dialog-body-font-size` +- `standard-dialog-maximum-width-small` +- `standard-dialog-minimum-width` +- `standard-dialog-maximum-width-medium` +- `standard-dialog-maximum-width-large` +- `status-light-text-to-visual-75` +- `status-light-text-to-visual-100` +- `status-light-text-to-visual-200` +- `status-light-text-to-visual-300` +- `link-out-icon-size-75` +- `link-out-icon-size-100` +- `link-out-icon-size-200` +- `menu-item-label-to-description-small` +- `menu-item-label-to-description-medium` +- `menu-item-label-to-description-large` +- `menu-item-label-to-description-extra-large` +- `menu-section-header-to-description-small` +- `menu-section-header-to-description-medium` +- `menu-section-header-to-description-large` +- `menu-section-header-to-description-extra-large` +- `menu-item-top-to-thumbnail-small` +- `menu-item-top-to-thumbnail-medium` +- `menu-item-top-to-thumbnail-large` +- `menu-item-top-to-thumbnail-extra-large` +- `menu-item-background-opacity` +- `illustrated-message-small-title-font-size` +- `illustrated-message-small-cjk-title-font-size` +- `illustrated-message-medium-title-font-size` +- `illustrated-message-medium-cjk-title-font-size` +- `illustrated-message-large-title-font-size` +- `illustrated-message-large-cjk-title-font-size` +- `illustrated-message-small-body-font-size` +- `illustrated-message-medium-body-font-size` +- `illustrated-message-large-body-font-size` +- `drop-zone-title-font-size` +- `drop-zone-cjk-title-font-size` +- `drop-zone-body-font-size` +- `breadcrumbs-separator-to-bottom-text-multiline` +- `breadcrumbs-start-edge-to-text-large` +- `breadcrumbs-start-edge-to-text-medium` +- `breadcrumbs-start-edge-to-text-multiline` +- `breadcrumbs-top-to-separator-large` +- `breadcrumbs-top-to-separator-medium` +- `breadcrumbs-top-to-separator-multiline` +- `breadcrumbs-truncated-menu-to-separator` +- `breadcrumbs-text-to-separator-large` +- `breadcrumbs-text-to-separator-medium` +- `breadcrumbs-text-to-separator-multiline` +- `contextual-help-body-font-size` +- `contextual-help-title-font-size` +- `coach-indicator-collapsed-ring-rounding-increment` +- `coach-indicator-expanded-ring-rounding-increment` +- `coach-indicator-collapsed-ring-thickness` +- `coach-indicator-expanded-ring-thickness` +- `coach-indicator-collapsed-gap` +- `coach-indicator-expanded-gap` +- `coach-indicator-opacity` +- `accordion-content-area-edge-to-content-small` +- `accordion-content-area-edge-to-content-medium` +- `accordion-content-area-edge-to-content-large` +- `accordion-content-area-edge-to-content-extra-large` +- `accordion-disclosure-indicator-to-text-small` +- `accordion-disclosure-indicator-to-text-medium` +- `accordion-disclosure-indicator-to-text-large` +- `accordion-disclosure-indicator-to-text-extra-large` +- `accordion-item-to-divider` +- `meter-thickness-medium` +- `meter-thickness-extra-large` +- `thumbnail-opacity-checkerboard-square-size` +- `thumbnail-corner-radius` +- `action-bar-top-to-content-area` +- `action-bar-bottom-to-content-area` +- `action-bar-edge-to-content-area` +- `action-bar-close-button-to-counter` +- `action-bar-counter-font-size` +- `swatch-group-spacing-spacious` +- `swatch-group-border-opacity` +- `avatar-border-width` +- `avatar-group-size-50` +- `avatar-group-size-75` +- `avatar-group-size-100` +- `avatar-group-size-200` +- `avatar-group-size-300` +- `avatar-group-size-400` +- `avatar-group-size-500` +- `avatar-to-avatar-50` +- `avatar-to-avatar-75` +- `avatar-to-avatar-100` +- `avatar-to-avatar-200` +- `avatar-to-avatar-300` +- `avatar-to-avatar-400` +- `avatar-to-avatar-500` +- `code-cjk-size-xl` +- `code-cjk-size-l` +- `code-cjk-size-m` +- `code-cjk-size-s` +- `code-cjk-size-xs` +- `standard-panel-width` +- `standard-panel-minimum-width` +- `standard-panel-maximum-width` +- `standard-panel-top-to-close-button-compact` +- `standard-panel-top-to-close-button-regular` +- `standard-panel-top-to-close-button-spacious` +- `standard-panel-edge-to-close-button-compact` +- `standard-panel-edge-to-close-button-regular` +- `standard-panel-edge-to-close-button-spacious` +- `standard-panel-title-font-size` +- `illustrated-message-horizontal-maximum-width` +- `illustrated-message-vertical-maximum-width` +- `bar-panel-width` +- `bar-panel-minimum-width` +- `bar-panel-maximum-width` +- `bar-panel-spacing-extra-spacious` +- `rating-top-to-content-area-small` +- `rating-bottom-to-content-area-small` +- `rating-edge-to-content-area-small` +- `rating-top-to-content-area-medium` +- `rating-bottom-to-content-area-medium` +- `rating-edge-to-content-area-medium` +- `rating-width-small` +- `rating-height-small` +- `rating-width-medium` +- `rating-height-medium` +- `select-box-horizontal-minimum-height` +- `select-box-horizontal-width` +- `select-box-vertical-height` +- `select-box-edge-to-checkbox` +- `select-box-horizontal-end-to-content` +- `select-box-horizontal-illustration-to-label` +- `select-box-horizontal-label-to-description` +- `select-box-horizontal-start-to-content` +- `select-box-horizontal-top-to-content` +- `select-box-top-to-checkbox` +- `select-box-vertical-edge-to-content` +- `select-box-vertical-illustration-to-label` +- `slider-control-to-field-label-editable-small` +- `slider-control-to-field-label-editable-medium` +- `slider-control-to-field-label-editable-large` +- `slider-control-to-field-label-editable-extra-large` +- `slider-control-to-field-label-side-small` +- `slider-control-to-field-label-side-medium` +- `slider-control-to-field-label-side-large` +- `slider-control-to-field-label-side-extra-large` +- `slider-control-to-text-field-small` +- `slider-control-to-text-field-medium` +- `slider-control-to-text-field-large` +- `slider-control-to-text-field-extra-large` +- `segmented-control-selection-border-width` +- `slider-handle-height-precision-small` +- `slider-handle-height-precision-medium` +- `slider-handle-height-precision-large` +- `slider-handle-height-precision-extra-large` +- `slider-handle-small` +- `slider-handle-medium` +- `slider-handle-large` +- `slider-handle-extra-large` +- `slider-handle-precision-width` +- `slider-track-height-medium` +- `slider-track-height-large` +- `segmented-control-item-height` +- `in-field-stepper-to-end-small` +- `in-field-stepper-to-end-medium` +- `in-field-stepper-to-end-large` +- `in-field-stepper-to-end-extra-large` +- `number-field-with-stepper-minimum-width-small` +- `number-field-with-stepper-minimum-width-medium` +- `number-field-with-stepper-minimum-width-large` +- `number-field-with-stepper-minimum-width-extra-large` +- `number-field-visual-to-in-field-stepper-small` +- `number-field-visual-to-in-field-stepper-medium` +- `number-field-visual-to-in-field-stepper-large` +- `number-field-visual-to-in-field-stepper-extra-large` +- `number-field-minimum-width-multiplier` +- `takeover-dialog-height` +- `takeover-dialog-width` +- `tree-view-disclosure-indicator-height` +- `tree-view-disclosure-indicator-width` +- `tree-view-minimum-height` +- `tree-view-minimum-width` +- `tree-view-bottom-to-label` +- `tree-view-drag-handle-to-checkbox` +- `tree-view-edge-to-checkbox` +- `tree-view-edge-to-drag-handle` +- `tree-view-end-edge-to-action-area` +- `tree-view-header-to-item` +- `tree-view-item-to-header` +- `tree-view-item-to-item` +- `tree-view-item-to-item-detached` +- `tree-view-label-to-action-area` +- `tree-view-level-increment` +- `tree-view-minimum-top-to-context-area` +- `tree-view-top-to-action-button` +- `tree-view-top-to-checkbox` +- `tree-view-top-to-disclosure-indicator` +- `tree-view-top-to-drag-handle` +- `tree-view-top-to-label` +- `tree-view-selected-row-background-opacity-emphasized` +- `tree-view-selected-row-background-opacity-emphasized-hover` +- `action-bar-minimum-width` +- `action-bar-label-to-action-group-area` +- `icon-color-primary-hover` +- `icon-color-primary-down` +- `icon-color-blue-primary-hover` +- `icon-color-blue-primary-down` +- `icon-color-brown-primary-default` +- `icon-color-brown-primary-hover` +- `icon-color-brown-primary-down` +- `icon-color-celery-primary-default` +- `icon-color-celery-primary-hover` +- `icon-color-celery-primary-down` +- `icon-color-chartreuse-primary-default` +- `icon-color-chartreuse-primary-hover` +- `icon-color-chartreuse-primary-down` +- `icon-color-cinnamon-primary-default` +- `icon-color-cinnamon-primary-hover` +- `icon-color-cinnamon-primary-down` +- `icon-color-cyan-primary-default` +- `icon-color-cyan-primary-hover` +- `icon-color-cyan-primary-down` +- `icon-color-fuchsia-primary-default` +- `icon-color-fuchsia-primary-hover` +- `icon-color-fuchsia-primary-down` +- `icon-color-green-primary-hover` +- `icon-color-green-primary-down` +- `icon-color-indigo-primary-default` +- `icon-color-indigo-primary-hover` +- `icon-color-indigo-primary-down` +- `icon-color-magenta-primary-default` +- `icon-color-magenta-primary-hover` +- `icon-color-magenta-primary-down` +- `icon-color-orange-primary-default` +- `icon-color-orange-primary-hover` +- `icon-color-orange-primary-down` +- `icon-color-pink-primary-default` +- `icon-color-pink-primary-hover` +- `icon-color-pink-primary-down` +- `icon-color-purple-primary-default` +- `icon-color-purple-primary-hover` +- `icon-color-purple-primary-down` +- `icon-color-red-primary-hover` +- `icon-color-red-primary-down` +- `icon-color-seafoam-primary-default` +- `icon-color-seafoam-primary-hover` +- `icon-color-seafoam-primary-down` +- `icon-color-silver-primary-default` +- `icon-color-silver-primary-hover` +- `icon-color-silver-primary-down` +- `icon-color-turquoise-primary-default` +- `icon-color-turquoise-primary-hover` +- `icon-color-turquoise-primary-down` +- `icon-color-yellow-primary-hover` +- `icon-color-yellow-primary-down` +- `icon-color-disabled-primary` +- `icon-color-blue-background` +- `icon-color-brown-background` +- `icon-color-celery-background` +- `icon-color-chartreuse-background` +- `icon-color-cinnamon-background` +- `icon-color-cyan-background` +- `icon-color-fuchsia-background` +- `icon-color-green-background` +- `icon-color-indigo-background` +- `icon-color-magenta-background` +- `icon-color-orange-background` +- `icon-color-pink-background` +- `icon-color-purple-background` +- `icon-color-red-background` +- `icon-color-seafoam-background` +- `icon-color-silver-background` +- `icon-color-turquoise-background` +- `icon-color-yellow-background` +- `icon-color-inverse-background` +- `icon-color-emphasized-background` +- `transparent-white-25` +- `transparent-white-50` +- `transparent-white-75` +- `transparent-white-1000` +- `transparent-black-25` +- `transparent-black-50` +- `transparent-black-75` +- `transparent-black-1000` +- `gray-25` +- `gray-1000` +- `blue-1500` +- `blue-1600` +- `red-1500` +- `red-1600` +- `orange-1500` +- `orange-1600` +- `yellow-1500` +- `yellow-1600` +- `chartreuse-1500` +- `chartreuse-1600` +- `celery-1500` +- `celery-1600` +- `green-1500` +- `green-1600` +- `seafoam-1500` +- `seafoam-1600` +- `cyan-1500` +- `cyan-1600` +- `indigo-1500` +- `indigo-1600` +- `purple-1500` +- `purple-1600` +- `fuchsia-1500` +- `fuchsia-1600` +- `magenta-1500` +- `magenta-1600` +- `pink-100` +- `pink-200` +- `pink-300` +- `pink-400` +- `pink-500` +- `pink-600` +- `pink-700` +- `pink-800` +- `pink-900` +- `pink-1000` +- `pink-1100` +- `pink-1200` +- `pink-1300` +- `pink-1400` +- `pink-1500` +- `pink-1600` +- `turquoise-100` +- `turquoise-200` +- `turquoise-300` +- `turquoise-400` +- `turquoise-500` +- `turquoise-600` +- `turquoise-700` +- `turquoise-800` +- `turquoise-900` +- `turquoise-1000` +- `turquoise-1100` +- `turquoise-1200` +- `turquoise-1300` +- `turquoise-1400` +- `turquoise-1500` +- `turquoise-1600` +- `brown-100` +- `brown-200` +- `brown-300` +- `brown-400` +- `brown-500` +- `brown-600` +- `brown-700` +- `brown-800` +- `brown-900` +- `brown-1000` +- `brown-1100` +- `brown-1200` +- `brown-1300` +- `brown-1400` +- `brown-1500` +- `brown-1600` +- `silver-100` +- `silver-200` +- `silver-300` +- `silver-400` +- `silver-500` +- `silver-600` +- `silver-700` +- `silver-800` +- `silver-900` +- `silver-1000` +- `silver-1100` +- `silver-1200` +- `silver-1300` +- `silver-1400` +- `silver-1500` +- `silver-1600` +- `cinnamon-100` +- `cinnamon-200` +- `cinnamon-300` +- `cinnamon-400` +- `cinnamon-500` +- `cinnamon-600` +- `cinnamon-700` +- `cinnamon-800` +- `cinnamon-900` +- `cinnamon-1000` +- `cinnamon-1100` +- `cinnamon-1200` +- `cinnamon-1300` +- `cinnamon-1400` +- `cinnamon-1500` +- `cinnamon-1600` +- `menu-item-background-color-default` +- `menu-item-background-color-hover` +- `menu-item-background-color-down` +- `menu-item-background-color-keyboard-focus` +- `menu-item-background-color-disabled` +- `popover-border-color` +- `popover-border-opacity` +- `coach-indicator-color` +- `swatch-group-border-color` +- `avatar-border-color` +- `standard-panel-gripper-color-drag` +- `standard-panel-gripper-color` +- `bar-panel-gripper-color` +- `bar-panel-gripper-color-drag` +- `select-box-selected-border-color` +- `tree-view-row-background-hover` +- `tree-view-selected-row-background-color-emphasized` +- `tree-view-selected-row-background-default` +- `tree-view-selected-row-background-hover` +- `color-wheel-border-color` +- `color-wheel-border-opacity` +- `action-bar-border-color` +- `background-elevated-color` +- `background-pasteboard-color` +- `brown-visual-color` +- `cinnamon-visual-color` +- `pink-visual-color` +- `silver-visual-color` +- `turquoise-visual-color` +- `brown-background-color-default` +- `cinnamon-background-color-default` +- `pink-background-color-default` +- `silver-background-color-default` +- `turquoise-background-color-default` +- `title-color` +- `drop-shadow-color-100` +- `drop-shadow-color-200` +- `drop-shadow-color-300` +- `drop-shadow-emphasized-default-color` +- `drop-shadow-emphasized-hover-color` +- `drop-shadow-elevated-color` +- `neutral-subtle-background-color-default` +- `static-black-text-color` +- `static-white-text-color` +- `track-color` +- `static-black-track-color` +- `static-white-track-color` +- `static-black-track-indicator-color` +- `static-white-track-indicator-color` +- `drop-shadow-dragged-color` +- `gray-subtle-background-color-default` +- `blue-subtle-background-color-default` +- `green-subtle-background-color-default` +- `orange-subtle-background-color-default` +- `red-subtle-background-color-default` +- `brown-subtle-background-color-default` +- `cinnamon-subtle-background-color-default` +- `celery-subtle-background-color-default` +- `chartreuse-subtle-background-color-default` +- `cyan-subtle-background-color-default` +- `fuchsia-subtle-background-color-default` +- `indigo-subtle-background-color-default` +- `magenta-subtle-background-color-default` +- `pink-subtle-background-color-default` +- `purple-subtle-background-color-default` +- `seafoam-subtle-background-color-default` +- `silver-subtle-background-color-default` +- `turquoise-subtle-background-color-default` +- `yellow-subtle-background-color-default` + +
    + +Updated (1592) + +
    Added Properties (84) + +- `heading-sans-serif-font-weight` + - value: extra-bold-font-weight +- `heading-serif-font-weight` + - value: bold-font-weight +- `heading-cjk-font-weight` + - value: extra-bold-font-weight +- `heading-sans-serif-emphasized-font-weight` + - value: extra-bold-font-weight +- `heading-serif-emphasized-font-weight` + - value: bold-font-weight +- `accent-color-100` + - value: blue-100 +- `accent-color-200` + - value: blue-200 +- `accent-color-300` + - value: blue-300 +- `accent-color-400` + - value: blue-400 +- `accent-color-500` + - value: blue-500 +- `accent-color-600` + - value: blue-600 +- `accent-color-700` + - value: blue-700 +- `accent-color-800` + - value: blue-800 +- `accent-color-900` + - value: blue-900 +- `accent-color-1000` + - value: blue-1000 +- `accent-color-1100` + - value: blue-1100 +- `accent-color-1200` + - value: blue-1200 +- `accent-color-1300` + - value: blue-1300 +- `accent-color-1400` + - value: blue-1400 +- `corner-radius-75` + - value: 3px +- `corner-radius-100` + - value: 4px +- `corner-radius-200` + - value: 5px +- `border-width-100` + - value: 1px +- `side-label-character-count-top-margin-small` + - value: 0px +- `side-label-character-count-top-margin-medium` + - value: 0px +- `side-label-character-count-top-margin-large` + - value: 0px +- `side-label-character-count-top-margin-extra-large` + - value: 0px +- `checkbox-control-size-small` + - desktop.schema: dimension.json + - desktop.value: 14px + - desktop.uuid: 460e8170-de69-4f8e-8420-6c87a1f6f5cd + - mobile.schema: dimension.json + - mobile.value: 18px + - mobile.uuid: af31c1a5-ffce-4a54-8862-3e711ca53d25 +- `checkbox-control-size-medium` + - desktop.schema: dimension.json + - desktop.value: 16px + - desktop.uuid: 86288454-7192-4e4c-b55f-fc509fc58c01 + - mobile.schema: dimension.json + - mobile.value: 20px + - mobile.uuid: 00fee3f7-a743-45d6-a2b6-028d5d96964a +- `checkbox-control-size-large` + - desktop.schema: dimension.json + - desktop.value: 18px + - desktop.uuid: 839a52bc-b9ee-473f-acde-0799b4f55ded + - mobile.schema: dimension.json + - mobile.value: 22px + - mobile.uuid: b4367578-989e-438d-9a3e-7cb077f2f7c9 +- `checkbox-control-size-extra-large` + - desktop.schema: dimension.json + - desktop.value: 20px + - desktop.uuid: 4ba47ba1-c9bd-447e-8948-009d5b424e0d + - mobile.schema: dimension.json + - mobile.value: 26px + - mobile.uuid: 13093f8b-e38e-449f-a982-7f960bb84dfa +- `checkbox-top-to-control-small` + - desktop.schema: dimension.json + - desktop.value: 5px + - desktop.uuid: 20518175-5bc7-4659-8007-e74339c39433 + - mobile.schema: dimension.json + - mobile.value: 6px + - mobile.uuid: f254146e-f469-44b1-b0c9-1ac72e88f9e3 +- `checkbox-top-to-control-medium` + - desktop.schema: dimension.json + - desktop.value: 8px + - desktop.uuid: dcde5d2d-60f8-4d56-bfb1-bba44a087515 + - mobile.schema: dimension.json + - mobile.value: 10px + - mobile.uuid: e3751526-2db9-421c-85f9-d60071aac49b +- `checkbox-top-to-control-large` + - desktop.schema: dimension.json + - desktop.value: 11px + - desktop.uuid: 93edae08-5320-4e7e-a006-a9af1d3665ad + - mobile.schema: dimension.json + - mobile.value: 14px + - mobile.uuid: d040d2f4-9bb4-4d27-adac-40fef079d958 +- `checkbox-top-to-control-extra-large` + - desktop.schema: dimension.json + - desktop.value: 14px + - desktop.uuid: 3c4217bb-91f2-4347-9f65-a0528992f600 + - mobile.schema: dimension.json + - mobile.value: 17px + - mobile.uuid: b3be5ac8-2415-4490-8b4a-c08661ec84d1 +- `switch-control-width-small` + - desktop.schema: dimension.json + - desktop.value: 22px + - desktop.uuid: f4d6fe1a-70bd-473a-9fa5-477865ea898e + - mobile.schema: dimension.json + - mobile.value: 30px + - mobile.uuid: ca939c4d-9369-498c-81cb-61df1397f657 +- `switch-control-width-medium` + - desktop.schema: dimension.json + - desktop.value: 26px + - desktop.uuid: d329eda6-f13d-4a44-b962-ff06c371ed93 + - mobile.schema: dimension.json + - mobile.value: 34px + - mobile.uuid: ec2f3b6b-80db-4c43-bdd2-caee98796775 +- `switch-control-width-large` + - desktop.schema: dimension.json + - desktop.value: 30px + - desktop.uuid: cef839a5-2ba7-4e47-9a85-d94260a8ff10 + - mobile.schema: dimension.json + - mobile.value: 38px + - mobile.uuid: 5c7bdcc9-63f8-4c4b-b26f-97b39f53dbea +- `switch-control-width-extra-large` + - desktop.schema: dimension.json + - desktop.value: 34px + - desktop.uuid: f3102afd-e5df-4912-9203-8226ce37fed5 + - mobile.schema: dimension.json + - mobile.value: 46px + - mobile.uuid: 4e9d9b63-989a-4b63-b74d-22b5188f8df7 +- `switch-control-height-small` + - desktop.schema: dimension.json + - desktop.value: 14px + - desktop.uuid: 3bf75a24-5e95-4c18-9da2-b7088377fe21 + - mobile.schema: dimension.json + - mobile.value: 18px + - mobile.uuid: a1dbcaf0-bbcf-444d-9d22-7f86db20303a +- `switch-control-height-medium` + - desktop.schema: dimension.json + - desktop.value: 16px + - desktop.uuid: f97f0f1b-c0c2-410f-b116-86d30f4d52cf + - mobile.schema: dimension.json + - mobile.value: 20px + - mobile.uuid: 0d5f13f2-4d5b-4c30-b3a3-fa4fcc33b928 +- `switch-control-height-large` + - desktop.schema: dimension.json + - desktop.value: 18px + - desktop.uuid: 8301bfca-a086-4efd-a22f-1d348cbd6dcf + - mobile.schema: dimension.json + - mobile.value: 22px + - mobile.uuid: 91b828ce-8ff9-4d32-958e-a8a23ef9b345 +- `switch-control-height-extra-large` + - desktop.schema: dimension.json + - desktop.value: 20px + - desktop.uuid: 2372d602-78ce-45a7-9dff-152152e55117 + - mobile.schema: dimension.json + - mobile.value: 26px + - mobile.uuid: b7ae7b32-b347-4e09-9978-3b0b92a4dbab +- `switch-top-to-control-small` + - desktop.schema: dimension.json + - desktop.value: 6px + - desktop.uuid: 8a907825-236c-4548-91c4-2123e095726c + - mobile.schema: dimension.json + - mobile.value: 7px + - mobile.uuid: f379c453-da21-41f6-92d1-9b6bdb95fd86 +- `switch-top-to-control-medium` + - desktop.schema: dimension.json + - desktop.value: 9px + - desktop.uuid: 0135b823-5097-43bb-9911-9f731146af3b + - mobile.schema: dimension.json + - mobile.value: 11px + - mobile.uuid: 68276028-41d8-49e1-b0d4-f70cd27ab149 +- `switch-top-to-control-large` + - desktop.schema: dimension.json + - desktop.value: 12px + - desktop.uuid: f2c965e6-89fb-4b9d-843d-cfde31b7703d + - mobile.schema: dimension.json + - mobile.value: 15px + - mobile.uuid: 035e786b-17f2-488e-a049-84b257a3312f +- `switch-top-to-control-extra-large` + - desktop.schema: dimension.json + - desktop.value: 15px + - desktop.uuid: fbc21571-970f-4bb2-8280-f6262446896b + - mobile.schema: dimension.json + - mobile.value: 19px + - mobile.uuid: 7e95ad9a-ca10-4f06-9c19-8dd2270cfdad +- `radio-button-control-size-small` + - desktop.schema: dimension.json + - desktop.value: 12px + - desktop.uuid: 407304fc-7c74-4427-9032-b44ab03c07ce + - mobile.schema: dimension.json + - mobile.value: 16px + - mobile.uuid: 90a2b18a-61c7-40d8-926c-d6b18a641010 +- `radio-button-control-size-medium` + - desktop.schema: dimension.json + - desktop.value: 14px + - desktop.uuid: 9de5b045-532c-48ef-872e-bd3c22f89a41 + - mobile.schema: dimension.json + - mobile.value: 18px + - mobile.uuid: 2eef4003-e666-48e7-b25b-8c50063ce400 +- `radio-button-control-size-large` + - desktop.schema: dimension.json + - desktop.value: 16px + - desktop.uuid: cadf4b9e-b4d4-4ff5-808b-557864cf7dc8 + - mobile.schema: dimension.json + - mobile.value: 20px + - mobile.uuid: 23d0a4aa-693d-4b79-b942-3898f9cf0b80 +- `radio-button-control-size-extra-large` + - desktop.schema: dimension.json + - desktop.value: 18px + - desktop.uuid: f8f1d29b-4093-40ed-b73c-7a27e27a63a4 + - mobile.schema: dimension.json + - mobile.value: 22px + - mobile.uuid: cc041f48-aaa4-4c20-8990-599e0c56134e +- `radio-button-top-to-control-small` + - desktop.schema: dimension.json + - desktop.value: 6px + - desktop.uuid: b775d7e9-d182-4818-9ae0-b3765a0ecbf7 + - mobile.schema: dimension.json + - mobile.value: 7px + - mobile.uuid: 02438c4c-161d-45eb-935d-b083ab830876 +- `radio-button-top-to-control-medium` + - desktop.schema: dimension.json + - desktop.value: 9px + - desktop.uuid: dcc0155a-6bd1-4148-acaf-e255a7f4d22a + - mobile.schema: dimension.json + - mobile.value: 11px + - mobile.uuid: 2f805530-cefe-420a-89e6-a6a81c0faea0 +- `radio-button-top-to-control-large` + - desktop.schema: dimension.json + - desktop.value: 12px + - desktop.uuid: 309c9559-1763-4345-8090-aaa12f570889 + - mobile.schema: dimension.json + - mobile.value: 15px + - mobile.uuid: 41d0dde7-de34-4e99-96d0-4f727ed71673 +- `radio-button-top-to-control-extra-large` + - desktop.schema: dimension.json + - desktop.value: 15px + - desktop.uuid: f4620f0a-43ba-4650-8640-9425ed1a1260 + - mobile.schema: dimension.json + - mobile.value: 19px + - mobile.uuid: c478710f-1747-455b-998a-6fa837762905 +- `field-label-top-margin-medium` + - value: 0px +- `field-label-top-margin-large` + - value: 0px +- `field-label-top-margin-extra-large` + - value: 0px +- `status-light-dot-size-small` + - desktop.schema: dimension.json + - desktop.value: 8px + - desktop.uuid: 04485265-2983-4377-9ec5-f2456863a1df + - mobile.schema: dimension.json + - mobile.value: 10px + - mobile.uuid: 5945e9fe-311a-4d2c-8052-ca4eae4c7c63 +- `action-bar-height` + - value: component-height-400 +- `action-bar-top-to-item-counter` + - value: component-top-to-text-300 +- `picker-border-width` + - value: border-width-100 +- `breadcrumbs-top-to-truncated-menu` + - value: 0px +- `breadcrumbs-truncated-menu-to-bottom-text` + - desktop.schema: dimension.json + - desktop.value: 4px + - desktop.uuid: 2285d870-68ec-469f-a034-2fdeb31e33f0 + - mobile.schema: dimension.json + - mobile.value: 5px + - mobile.uuid: 154bce30-bfe2-445b-bbdd-69efce5565ae +- `in-field-button-fill-stacked-inner-border-rounding` + - value: 0px +- `in-field-button-stacked-inner-edge-to-fill` + - value: 0px +- `in-field-button-outer-edge-to-disclosure-icon-stacked-medium` + - value: 3px +- `in-field-button-outer-edge-to-disclosure-icon-stacked-large` + - value: 4px +- `in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large` + - value: 5px +- `in-field-button-inner-edge-to-disclosure-icon-stacked-small` + - value: in-field-button-outer-edge-to-disclosure-icon-stacked-small +- `in-field-button-inner-edge-to-disclosure-icon-stacked-medium` + - value: in-field-button-outer-edge-to-disclosure-icon-stacked-medium +- `in-field-button-inner-edge-to-disclosure-icon-stacked-large` + - value: in-field-button-outer-edge-to-disclosure-icon-stacked-large +- `in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large` + - value: in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large +- `icon-color-green-primary-default` + - value: green-800 +- `background-base-color` + - value: gray-25 +- `background-layer-1-color` + - value: gray-50 +- `neutral-background-color-default` + - value: gray-800 +- `neutral-background-color-hover` + - value: gray-900 +- `neutral-background-color-down` + - value: gray-900 +- `neutral-background-color-key-focus` + - value: gray-900 +- `neutral-background-color-selected-default` + - value: gray-800 +- `neutral-background-color-selected-hover` + - value: gray-900 +- `neutral-background-color-selected-down` + - value: gray-900 +- `neutral-background-color-selected-key-focus` + - value: gray-900 + +
    +
    Deleted Properties (840) + +- `font-size-25` + - uuid: f0c5ab51-5fc0-417d-a57a-edd12a62847e +- `font-size-50` + - uuid: daa864c1-e91e-4357-bcfc-02f3a5037f9c +- `font-size-75` + - uuid: 5cf4dd2a-2a85-4eb6-b163-fa6737e4f838 +- `font-size-100` + - uuid: 86103cc9-4510-45af-8139-a81ea3b69da7 +- `font-size-200` + - uuid: 0cfbf6f7-7e79-44bb-af03-6355f412f590 +- `font-size-300` + - uuid: cd34b2cb-e7fa-41dd-bd1e-cb1e8113554a +- `font-size-400` + - uuid: c5ae539c-9b16-489a-a39b-c9cee1a1701b +- `font-size-500` + - uuid: ff5914d7-5d19-4b21-b633-c742d95942db +- `font-size-600` + - uuid: ed0c86e1-f062-405e-a1c4-ce74f62c0ea7 +- `font-size-700` + - uuid: b2b59d6e-50f8-4e72-a5c5-993a87971e3d +- `font-size-800` + - uuid: 3b3711a6-44fd-44b5-b273-e2c775a15986 +- `font-size-900` + - uuid: b164fd8e-2d83-45fc-b636-dba832faad37 +- `font-size-1000` + - uuid: db55c6a2-c72d-4e63-838c-5f30d467bb66 +- `font-size-1100` + - uuid: 56149ad7-84a7-4067-bad8-c5b143dd0561 +- `font-size-1200` + - uuid: 164b0eae-cd17-4e2c-8f30-436c0df7d4c9 +- `font-size-1300` + - uuid: db26e411-a118-4bef-a413-eeb383e85f37 +- `heading-sans-serif-font-weight` + - component: heading + - spectrum.schema: alias.json + - spectrum.value: bold-font-weight + - spectrum.uuid: 1d4d09b4-021a-48e8-a724-bfecc13df325 + - express.schema: alias.json + - express.value: black-font-weight + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: e5bfbd82-a8e6-43dc-b2b6-dc1e171f48aa +- `heading-serif-font-weight` + - component: heading + - spectrum.schema: alias.json + - spectrum.value: bold-font-weight + - spectrum.uuid: 350aa193-9996-49c8-b5e4-54d4f7bef3c2 + - express.schema: alias.json + - express.value: black-font-weight + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 36bea3bb-06b8-4c66-87ad-ffc86be18243 +- `heading-cjk-font-weight` + - component: heading + - spectrum.schema: alias.json + - spectrum.value: extra-bold-font-weight + - spectrum.uuid: bd54516c-2fda-4421-ab62-720c3a887a34 + - express.schema: alias.json + - express.value: black-font-weight + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 21643fcd-b1da-4057-8fb5-e75167c0d89f +- `heading-sans-serif-emphasized-font-weight` + - component: heading + - spectrum.schema: alias.json + - spectrum.value: bold-font-weight + - spectrum.uuid: e4a183fd-53c5-4dbb-afd1-6308e2e74f80 + - express.schema: alias.json + - express.value: black-font-weight + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 723c8306-12fb-4cb5-9fd2-3ad40d57bb25 +- `heading-serif-emphasized-font-weight` + - component: heading + - spectrum.schema: alias.json + - spectrum.value: bold-font-weight + - spectrum.uuid: a0983216-b0c5-4a3f-97dc-96ee711acb1f + - express.schema: alias.json + - express.value: black-font-weight + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: e9b3a7b0-ae46-48be-a143-f26463860d3f +- `accent-color-100` + - spectrum.schema: alias.json + - spectrum.value: blue-100 + - spectrum.uuid: 2e080bb5-6f2c-4fd9-96a2-bf9fc19d2649 + - express.schema: alias.json + - express.value: indigo-100 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: f9fc7606-b699-46e7-b139-aeefc287923c +- `accent-color-200` + - spectrum.schema: alias.json + - spectrum.value: blue-200 + - spectrum.uuid: cf583998-4dfd-4222-a554-8e05ed7fb5d6 + - express.schema: alias.json + - express.value: indigo-200 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 78e50d0b-78a0-46c4-8262-417143f00902 +- `accent-color-300` + - spectrum.schema: alias.json + - spectrum.value: blue-300 + - spectrum.uuid: ea67f054-1f42-427e-a768-beb8d21de2a3 + - express.schema: alias.json + - express.value: indigo-300 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: d014e1e8-a5f8-4169-8c43-d69afd07847a +- `accent-color-400` + - spectrum.schema: alias.json + - spectrum.value: blue-400 + - spectrum.uuid: a249e4b1-e6f9-4ef3-96c6-1559059839a7 + - express.schema: alias.json + - express.value: indigo-400 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 1b70bc67-7877-4f92-8ce4-1abd2665fab1 +- `accent-color-500` + - spectrum.schema: alias.json + - spectrum.value: blue-500 + - spectrum.uuid: c1c0e6fb-ce21-49d7-91bb-73ce873aa69f + - express.schema: alias.json + - express.value: indigo-500 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 06246e8e-44da-49a3-8d65-7f3ce1ec8128 +- `accent-color-600` + - spectrum.schema: alias.json + - spectrum.value: blue-600 + - spectrum.uuid: 5a2000be-5640-4389-a128-b2c164ad2253 + - express.schema: alias.json + - express.value: indigo-600 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: eaee7f34-1725-411e-9a23-2331167e08f5 +- `accent-color-700` + - spectrum.schema: alias.json + - spectrum.value: blue-700 + - spectrum.uuid: a8fbe39b-db6d-4bb4-a7c5-8a235060d2ae + - express.schema: alias.json + - express.value: indigo-700 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 5c7ac5cc-4fe4-4392-a5c3-4274cd15a48e +- `accent-color-800` + - spectrum.schema: alias.json + - spectrum.value: blue-800 + - spectrum.uuid: 87a2c8f0-54fd-4939-8f42-3124fde1e49e + - express.schema: alias.json + - express.value: indigo-800 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 3cf62c35-1e2e-4400-886f-473de9e8a958 +- `accent-color-900` + - spectrum.schema: alias.json + - spectrum.value: blue-900 + - spectrum.uuid: 90d82778-1cbb-47c0-aab9-b6e38a9cdc54 + - express.schema: alias.json + - express.value: indigo-900 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 42d37753-8b78-4328-a895-7b74d9a7aa86 +- `accent-color-1000` + - spectrum.schema: alias.json + - spectrum.value: blue-1000 + - spectrum.uuid: 9bf3fa2f-75d3-44d3-ae30-d88893665366 + - express.schema: alias.json + - express.value: indigo-1000 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: b848c6ce-f921-4303-b298-20e359a1aa2e +- `accent-color-1100` + - spectrum.schema: alias.json + - spectrum.value: blue-1100 + - spectrum.uuid: f7f853a5-f091-4a7e-8aea-68d060c840f0 + - express.schema: alias.json + - express.value: indigo-1100 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 46991cf0-e4e5-4c32-a140-4589e2456523 +- `accent-color-1200` + - spectrum.schema: alias.json + - spectrum.value: blue-1200 + - spectrum.uuid: 7c141cdb-1e5e-468a-ba48-0df01b275402 + - express.schema: alias.json + - express.value: indigo-1200 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 7de1e3f0-a5b3-4a09-955b-242ff78dbaa9 +- `accent-color-1300` + - spectrum.schema: alias.json + - spectrum.value: blue-1300 + - spectrum.uuid: f7307eba-e311-41a8-bb50-0b1e96833dfa + - express.schema: alias.json + - express.value: indigo-1300 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: a598813b-347f-4528-aa35-94b6642985db +- `accent-color-1400` + - spectrum.schema: alias.json + - spectrum.value: blue-1400 + - spectrum.uuid: 06585cf4-a924-49b2-b6c8-f0e80b57c576 + - express.schema: alias.json + - express.value: indigo-1400 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 12c250df-6088-4c20-8b04-59814d53ed7a +- `corner-radius-75` + - spectrum.schema: dimension.json + - spectrum.value: 2px + - spectrum.uuid: ecb9d03a-7340-4b43-8aa7-f89eef9f3a20 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 3px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: ff10f01b-82a9-46cb-8581-3b02f3dc988d + - express.mobile.schema: dimension.json + - express.mobile.value: 4px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: a02a1154-142f-43bf-b3d7-91dafdc4a40d + - express.uuid: 8876ffa3-b0af-4cf5-ae8d-5c4ae3766cca +- `corner-radius-100` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 4px + - spectrum.desktop.uuid: bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 5px + - spectrum.mobile.uuid: e22537bb-a29f-47e5-be13-7e2775ee1103 + - spectrum.uuid: 67b83ee8-2782-48a5-ba27-70f690c95b4a + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 6px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 36d9fa63-3f0f-4ce3-8cc6-2d70472e519c + - express.mobile.schema: dimension.json + - express.mobile.value: 8px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 2bc66f64-7546-4501-9604-d40759b10062 + - express.uuid: 179b1a27-66f9-47b9-9af9-648c0a3dbbfb +- `corner-radius-200` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 8px + - spectrum.desktop.uuid: 52ad01be-f512-4fa3-ae67-8c6cef70810c + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 10px + - spectrum.mobile.uuid: 23f751eb-a076-487d-a5e1-1c0eb2937018 + - spectrum.uuid: 39fdb6a8-579e-4a14-8cee-f2f877efa262 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 12px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 72f53c69-0ce4-4d02-835d-4513838db9e8 + - express.mobile.schema: dimension.json + - express.mobile.value: 16px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: c6a87683-3fc2-494a-9650-8edc3d75cba9 + - express.uuid: 91db63f4-2719-4d6a-8817-3518bd163e40 +- `drop-shadow-x` + - spectrum.schema: dimension.json + - spectrum.value: 0px + - spectrum.uuid: 81415747-aa3f-4ef3-b0bc-7c33f07a4316 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 0px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: b2f11af3-12fe-436a-aa83-9e96a08c7cf5 + - express.mobile.schema: dimension.json + - express.mobile.value: 0px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: d40c3468-2f10-41be-940b-96933464efae + - express.uuid: 38b1404c-eb80-493f-acc2-305017351d4b +- `drop-shadow-y` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 1px + - spectrum.desktop.uuid: c530129f-248c-4e36-ba7f-05d6d6a53962 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 2px + - spectrum.mobile.uuid: 32950bbd-7292-452d-a445-4eb6de66c77d + - spectrum.uuid: 03b1bdf3-05d0-4557-999d-d33b4720113a + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 4px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: c76888b3-57c0-45fb-9c55-ac21d95a9263 + - express.mobile.schema: dimension.json + - express.mobile.value: 4px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: a4213f34-f0ee-45a1-a2ed-225bbe0ec857 + - express.uuid: 5b5d8ba2-7724-4e26-889c-a7cea9bbfa1c +- `drop-shadow-blur` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 4px + - spectrum.desktop.uuid: ac20a6da-31a7-4c8b-b361-0ad820cd8429 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 6px + - spectrum.mobile.uuid: 374f321e-8b0b-442b-9494-6a2ae9936c6b + - spectrum.uuid: 02eb1f7e-4bce-444f-bf93-0a45ab56806a + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 16px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: b2677a44-abf9-44db-9d06-35039ffa47fd + - express.mobile.schema: dimension.json + - express.mobile.value: 16px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 2529adec-ab2e-4e04-aa83-fa9cdd7df1f2 + - express.uuid: 0682005e-7411-4680-9db7-6df9482f5b95 +- `text-to-visual-50` + - uuid: 45ffa741-ec89-407b-83c2-39e6804308f8 +- `text-to-visual-75` + - uuid: d9b8cf33-161d-4b3b-9c7d-7f5360a94e64 +- `text-to-visual-100` + - uuid: b877c328-b5bd-48f1-9fdc-4a6c557313bb +- `text-to-visual-200` + - uuid: 90cae9f7-835c-4851-95eb-cce34d453c20 +- `text-to-visual-300` + - uuid: add08b8b-d180-4fa6-badb-a766187ceb6b +- `text-to-control-75` + - uuid: 575fe03c-2997-4492-ba59-f590aa34820c +- `text-to-control-100` + - uuid: 4870a9a6-d2c6-4d6d-befb-933921c3d182 +- `text-to-control-200` + - uuid: e6dca753-d2f4-4502-9ea4-2d632a8f40de +- `text-to-control-300` + - uuid: 081770e3-71c4-4ffb-b2e0-92ca7879c4cb +- `component-height-50` + - uuid: 13c3b57a-2950-4189-883d-844443ec0645 +- `component-height-75` + - uuid: 1a38cc62-cb04-411e-b930-a851e2a9fc80 +- `component-height-100` + - uuid: 86326f77-c65f-472f-b440-828f5735dbb6 +- `component-height-200` + - uuid: cd07b99a-ce5c-4bc8-bbb8-fa56124cf8ee +- `component-height-300` + - uuid: dbbbffcf-cf35-4a0e-993e-488a6becc72f +- `component-height-400` + - uuid: 47e795c1-92ce-4f6c-8f90-a658746ab0d1 +- `component-height-500` + - uuid: 44c5972b-cd50-4fc6-b3e6-e65400f0d611 +- `border-width-100` + - spectrum.schema: dimension.json + - spectrum.value: 1px + - spectrum.uuid: b5525080-28e7-4eb7-aee9-fb2c71a16f68 + - express.schema: dimension.json + - express.value: 2px + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 84d5fd5a-8245-44b0-8ce5-2ca22a0bc75c +- `component-pill-edge-to-visual-75` + - uuid: 8e75a202-e6ad-41b5-bdb4-5a9c6adcfb35 +- `component-pill-edge-to-visual-100` + - uuid: 4fe71ba1-df88-4ba4-b684-ee01862e6b16 +- `component-pill-edge-to-visual-200` + - uuid: 5f14c09d-8b25-4a83-9804-d04d510dd78c +- `component-pill-edge-to-visual-300` + - uuid: b62d9c6a-c3be-4352-836d-603f3c54b175 +- `component-pill-edge-to-visual-only-75` + - uuid: 403c6e59-3a0a-4933-8487-8759f27b78ad +- `component-pill-edge-to-visual-only-100` + - uuid: 5fbb20c1-14c1-46f7-97c9-9268b86ecda6 +- `component-pill-edge-to-visual-only-200` + - uuid: 97f2e11f-7776-4c91-8d31-c53c0ba948bc +- `component-pill-edge-to-visual-only-300` + - uuid: 340e4059-a57e-4f8a-84ff-f1a249803b6e +- `component-pill-edge-to-text-75` + - uuid: 7d21104f-2c26-4b3a-85d7-7d6ca0f4dc40 +- `component-pill-edge-to-text-100` + - uuid: 626e4e4d-99ca-428c-9cde-0db795355a72 +- `component-pill-edge-to-text-200` + - uuid: f8f40a41-0cb2-40d8-a3fd-17470087db9a +- `component-pill-edge-to-text-300` + - uuid: 3e2dc939-a6c5-4654-bfe8-cf74f53cc75a +- `component-edge-to-visual-50` + - uuid: 7fb10519-3f10-4ba2-8332-4ff4472eac8c +- `component-edge-to-visual-75` + - uuid: ba705d7c-f284-4236-8167-a9e5594fd8f1 +- `component-edge-to-visual-100` + - uuid: 8403ddee-81cf-4d2c-b370-93b3b22669d7 +- `component-edge-to-visual-200` + - uuid: 82dbca52-b2a9-443a-a853-2d34b003e6d8 +- `component-edge-to-visual-300` + - uuid: c2a9eb95-d607-4ed2-b565-64782e1764cf +- `component-edge-to-visual-only-50` + - uuid: 0bcf5bdc-9c4f-4200-a5a4-94373b65a362 +- `component-edge-to-visual-only-75` + - uuid: 1a2a7e3d-8a64-4194-a8f2-a3cdc4fd716b +- `component-edge-to-visual-only-100` + - uuid: d7116e16-1489-41e3-a3cd-e022bea7467a +- `component-edge-to-visual-only-200` + - uuid: dc62e6e5-8da0-4059-898e-c054f06421eb +- `component-edge-to-visual-only-300` + - uuid: 2a0372fa-c799-41c8-bd8c-6649de123388 +- `component-edge-to-text-50` + - uuid: bb17abc8-9204-4115-8a26-1555561121aa +- `component-edge-to-text-75` + - uuid: a59f2433-297e-4507-88d0-fd86f7f12be7 +- `component-edge-to-text-100` + - uuid: f6173de9-ea58-48d0-a15f-f7622701ab4b +- `component-edge-to-text-200` + - uuid: 17b56bf2-6fb2-47a0-8e45-3586eef29324 +- `component-edge-to-text-300` + - uuid: 82f28efb-5fd8-4a77-bc5e-59ff083bf82a +- `component-top-to-workflow-icon-50` + - uuid: 2a08f224-2540-4cc1-ac4e-2f6a51769a5f +- `component-top-to-workflow-icon-75` + - uuid: 494cd69a-7196-41c7-9817-60bc435c9b40 +- `component-top-to-workflow-icon-100` + - uuid: 6128dae3-46d7-4948-9095-6506ae501323 +- `component-top-to-workflow-icon-200` + - uuid: 7daefac9-1331-4775-913d-4fafc976bc3a +- `component-top-to-workflow-icon-300` + - uuid: 1a08144d-7a4b-4c3c-89e3-9f50f23a5da7 +- `component-top-to-text-50` + - uuid: 0235ab3a-7c70-4e78-9208-8ed4e60ad2d2 +- `component-top-to-text-75` + - uuid: b9430981-8544-4a73-912b-f06209e2f6f9 +- `component-top-to-text-100` + - uuid: 85b23576-1071-4563-80b2-2b6b65755a5d +- `component-top-to-text-200` + - uuid: 32131b82-2cf1-45d5-9d94-2663a3585a83 +- `component-top-to-text-300` + - uuid: f9a24565-3414-497c-99e9-16a9f27b3926 +- `component-bottom-to-text-50` + - uuid: 5960d321-4b6a-4f0c-8e9b-8b59bd483e17 +- `component-bottom-to-text-75` + - uuid: 47a641c0-5255-4558-9edd-dd525e14f1d0 +- `component-bottom-to-text-100` + - uuid: 360272cc-c406-45ca-8a8e-4720a60c5af4 +- `component-bottom-to-text-200` + - uuid: f1d6de68-8b40-4119-8326-66fd19afafac +- `component-bottom-to-text-300` + - uuid: 1d0da882-d145-4ede-8c27-42a174d757ec +- `component-to-menu-small` + - uuid: ed847a42-b5cc-4021-a2c1-047318f63248 +- `component-to-menu-medium` + - uuid: 5bd2b0aa-7319-4049-b41f-b002a56144ec +- `component-to-menu-large` + - uuid: 48117dc9-284e-4f67-ad97-18d17e1f9be3 +- `component-to-menu-extra-large` + - uuid: 20a4ee4f-c6c6-4268-bd80-27d5334d11d8 +- `field-edge-to-disclosure-icon-75` + - uuid: a64a38da-9fe3-4af5-8fda-78482db6a1da +- `field-edge-to-disclosure-icon-100` + - uuid: d36e894c-0d0c-47cc-9cf1-5fc63e5e93e0 +- `field-edge-to-disclosure-icon-200` + - uuid: 9fd501a5-8840-43ee-b0f5-ba0646b1eee4 +- `field-edge-to-disclosure-icon-300` + - uuid: 0baf490e-6524-4b8a-b034-657c3cd5c802 +- `field-end-edge-to-disclosure-icon-75` + - uuid: a38d41cf-b4cb-4293-9ba9-152f2350c7ff +- `field-end-edge-to-disclosure-icon-100` + - uuid: 7b1baf11-35a1-4ddb-be95-5eee88251e5c +- `field-end-edge-to-disclosure-icon-200` + - uuid: f75ad2a8-ad22-4c63-9624-15aad22b4d5c +- `field-end-edge-to-disclosure-icon-300` + - uuid: 0f2ae777-813a-42cf-83e8-581823edcb83 +- `field-top-to-disclosure-icon-75` + - uuid: 85a92eb8-0462-42f2-8b6f-f4df85bb6618 +- `field-top-to-disclosure-icon-100` + - uuid: 23b71bea-4132-4147-8b43-c122318f7e43 +- `field-top-to-disclosure-icon-200` + - uuid: 86c7337b-7822-4f9b-a9d5-e951329388db +- `field-top-to-disclosure-icon-300` + - uuid: dd1fb027-a246-4582-80f2-b0f99afd74d9 +- `field-top-to-alert-icon-small` + - uuid: d37b4194-0a79-4fc4-b320-b87dcba9a7ff +- `field-top-to-alert-icon-medium` + - uuid: 67a98dd3-363f-4efc-ac13-aed238653431 +- `field-top-to-alert-icon-large` + - uuid: 817c73de-49d0-4f27-980e-63578db71c6c +- `field-top-to-alert-icon-extra-large` + - uuid: db3c0afa-1c9d-421e-a577-f61f5e31e5d2 +- `field-top-to-validation-icon-small` + - uuid: 3308b2e4-9057-482d-b5fd-d6d46531cced +- `field-top-to-validation-icon-medium` + - uuid: ab32ee76-c561-43c2-baf7-8c3db125e5c6 +- `field-top-to-validation-icon-large` + - uuid: 775f3bd0-63ec-43ae-83e6-7f66dea66607 +- `field-top-to-validation-icon-extra-large` + - uuid: f95ff454-e453-4c6d-be7c-2e01d85728a3 +- `field-top-to-progress-circle-small` + - uuid: 5bfcdf4a-be6a-45dc-9866-5c57b687629b +- `field-top-to-progress-circle-medium` + - uuid: b061d527-c92c-4786-93c4-e51ddb8c97c8 +- `field-top-to-progress-circle-large` + - uuid: 4a775115-bbe4-4885-aee9-1a74b2a266a6 +- `field-top-to-progress-circle-extra-large` + - uuid: 528f5802-0d21-4b83-b997-b8336694c6e8 +- `field-edge-to-alert-icon-small` + - uuid: 0dfba3ee-758b-4cc0-ada5-a1411ff734cd +- `field-edge-to-alert-icon-medium` + - uuid: 6b74a006-ac79-49b9-a16e-fcd43554ac3b +- `field-edge-to-alert-icon-large` + - uuid: 883877b4-1b4f-4f52-9016-27b04a72b332 +- `field-edge-to-alert-icon-extra-large` + - uuid: 0110b7bf-e4ef-4bbd-af35-a3bac8ecdbea +- `field-edge-to-validation-icon-small` + - uuid: 281499ca-f0ee-4864-8dee-7f51ab85b706 +- `field-edge-to-validation-icon-medium` + - uuid: e4d505d2-5109-447a-a47d-57171d653770 +- `field-edge-to-validation-icon-large` + - uuid: c08504fc-9b7a-4bfa-9544-4f6b9a52a0bc +- `field-edge-to-validation-icon-extra-large` + - uuid: f2b95331-5166-418a-b429-976ef95b95f1 +- `field-text-to-alert-icon-small` + - uuid: 52dda1a3-282a-47a2-a867-d846f7f19471 +- `field-text-to-alert-icon-medium` + - uuid: fdcd5d41-c5bf-4ec7-9258-d91384403221 +- `field-text-to-alert-icon-large` + - uuid: 3b2c9e64-0eff-47df-afca-60cd8f2f36f2 +- `field-text-to-alert-icon-extra-large` + - uuid: d2b8b5ce-c2e2-4998-bdd7-9816543d91cb +- `field-text-to-validation-icon-small` + - uuid: d017a7c2-6dda-4560-8c96-09f6265f44f5 +- `field-text-to-validation-icon-medium` + - uuid: cd13895d-54d2-4cec-ad90-e34af8d83ddb +- `field-text-to-validation-icon-large` + - uuid: de02692e-742c-428b-9331-edf2984c5198 +- `field-text-to-validation-icon-extra-large` + - uuid: f6f8e52f-02ae-4135-8d2d-22bb06e549a4 +- `field-width` + - uuid: 5f0c388a-b159-412b-aca4-f31a35a28674 +- `character-count-to-field-quiet-small` + - uuid: 23450319-d853-48e0-81dc-70bc7079d8aa +- `character-count-to-field-quiet-medium` + - uuid: 518b6d81-97c9-4ffc-9332-1ad3097c684a +- `character-count-to-field-quiet-large` + - uuid: 93632f57-880a-44aa-a0b3-31bdaaee559d +- `character-count-to-field-quiet-extra-large` + - uuid: ac67b79b-e1df-4873-b152-75124eb12777 +- `side-label-character-count-to-field` + - uuid: ea77b9b5-6b36-48a7-b275-08726a1937cc +- `side-label-character-count-top-margin-small` + - desktop.schema: dimension.json + - desktop.value: 4px + - desktop.uuid: a86ae363-b6b4-4da0-9630-97336922b3a1 + - mobile.schema: dimension.json + - mobile.value: 5px + - mobile.uuid: 9196a2ad-67cd-44d8-b4c6-bca25e37eb4a +- `side-label-character-count-top-margin-medium` + - desktop.schema: dimension.json + - desktop.value: 8px + - desktop.uuid: 4d93210f-f01a-4d1c-8c10-2cb4b9d14626 + - mobile.schema: dimension.json + - mobile.value: 10px + - mobile.uuid: a2b20c88-d28c-4261-8160-62630c5e0da8 +- `side-label-character-count-top-margin-large` + - desktop.schema: dimension.json + - desktop.value: 11px + - desktop.uuid: e2d9e241-469a-4b03-bd6a-a105a8ed5e00 + - mobile.schema: dimension.json + - mobile.value: 14px + - mobile.uuid: ca10a5d6-a8b2-414d-978a-14481e2a21cb +- `side-label-character-count-top-margin-extra-large` + - desktop.schema: dimension.json + - desktop.value: 14px + - desktop.uuid: 9b1f15bf-ea4f-4f82-8c4f-3770b7f47353 + - mobile.schema: dimension.json + - mobile.value: 18px + - mobile.uuid: c2c4ddf3-f273-4e23-9be0-e1227e9999a8 +- `disclosure-indicator-top-to-disclosure-icon-small` + - uuid: c8b11a24-76e6-47be-8ccb-d8fc8f9d7b37 +- `disclosure-indicator-top-to-disclosure-icon-medium` + - uuid: 84ad72d9-2639-4a7f-8300-0a717287cf39 +- `disclosure-indicator-top-to-disclosure-icon-large` + - uuid: 736e1b2c-75e1-47a8-a238-ac3acebce092 +- `disclosure-indicator-top-to-disclosure-icon-extra-large` + - uuid: f4459309-c64b-4b7b-8247-6c54cd1810c4 +- `navigational-indicator-top-to-back-icon-small` + - uuid: 813ad969-82f0-437b-b595-4d5f4839fc90 +- `navigational-indicator-top-to-back-icon-medium` + - uuid: f634deb6-920c-4c14-867e-7b10010ba391 +- `navigational-indicator-top-to-back-icon-large` + - uuid: 82bf0b1c-f289-4b90-a033-db1f0affe297 +- `navigational-indicator-top-to-back-icon-extra-large` + - uuid: d09f3117-e7d6-48d5-86ef-3652cf176450 +- `color-control-track-width` + - uuid: b844f3de-6179-4326-ad9c-740eb8b7b8d1 +- `checkbox-control-size-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 12px + - spectrum.desktop.uuid: 460e8170-de69-4f8e-8420-6c87a1f6f5cd + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 16px + - spectrum.mobile.uuid: af31c1a5-ffce-4a54-8862-3e711ca53d25 + - spectrum.uuid: ee93bc59-4223-4538-9051-4fc0f78ade57 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 14px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 1df233fb-fa60-4690-9a7a-0a045b4ff732 + - express.mobile.schema: dimension.json + - express.mobile.value: 18px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 13cd75f5-63de-4eb1-b3a6-528a9a853111 + - express.uuid: 5d1fc913-cf08-43c0-94f9-62d538e3ac5d + - uuid: 3c21a6b5-0672-4e1c-b2a4-165ec6149b6d +- `checkbox-control-size-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 14px + - spectrum.desktop.uuid: 86288454-7192-4e4c-b55f-fc509fc58c01 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 18px + - spectrum.mobile.uuid: 00fee3f7-a743-45d6-a2b6-028d5d96964a + - spectrum.uuid: 0d7dbbdf-726c-4b38-ae5c-8aae4a76b385 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 16px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 4612c7a8-c55f-44e8-baed-24c504f90412 + - express.mobile.schema: dimension.json + - express.mobile.value: 20px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: a4a66e58-f688-4b8e-bb22-66499697eebd + - express.uuid: 5938a3e2-01ae-49a5-b9b7-67bb1fcbf637 + - uuid: a0e56975-aaaa-4fa7-8dfe-b4d687f839cd +- `checkbox-control-size-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 16px + - spectrum.desktop.uuid: 839a52bc-b9ee-473f-acde-0799b4f55ded + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 20px + - spectrum.mobile.uuid: b4367578-989e-438d-9a3e-7cb077f2f7c9 + - spectrum.uuid: c0fca44a-1dd6-43d8-bdeb-19964ba3f05f + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 18px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 72ae3a99-d684-4e96-bbd8-867e3f6a9ba9 + - express.mobile.schema: dimension.json + - express.mobile.value: 22px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: e91c542f-aab9-42e7-a92b-1019f0c2d83d + - express.uuid: 1c2ab94f-5e8b-4948-abf3-0ef29638a517 + - uuid: 94305933-512a-480d-a44a-a0ba990d0626 +- `checkbox-control-size-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 18px + - spectrum.desktop.uuid: 4ba47ba1-c9bd-447e-8948-009d5b424e0d + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 22px + - spectrum.mobile.uuid: 13093f8b-e38e-449f-a982-7f960bb84dfa + - spectrum.uuid: b38bbf4b-b515-4e5c-b339-1f604b865a9f + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 20px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 0e9c6726-327b-4771-841d-8864a7ccd984 + - express.mobile.schema: dimension.json + - express.mobile.value: 26px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 028907b9-cfea-4464-8069-f796ff45871a + - express.uuid: 40515720-9283-41bb-aaeb-7cfbe90239fc + - uuid: 2f0c52c5-41b6-4d92-9345-50c448b9a79c +- `checkbox-top-to-control-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 6px + - spectrum.desktop.uuid: 20518175-5bc7-4659-8007-e74339c39433 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 7px + - spectrum.mobile.uuid: f254146e-f469-44b1-b0c9-1ac72e88f9e3 + - spectrum.uuid: 0218ee16-f0d6-4e66-b9e0-680827ef3804 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 5px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 102073d3-985e-41f5-927f-c477be6557d5 + - express.mobile.schema: dimension.json + - express.mobile.value: 6px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: e3a31d3c-a3ef-4644-9ad0-ee6ee196f3fc + - express.uuid: db12768c-90b0-479c-905b-ae9589f5a0d7 + - uuid: 6293cb5a-79ce-4a80-8621-44b6e48175da +- `checkbox-top-to-control-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 9px + - spectrum.desktop.uuid: dcde5d2d-60f8-4d56-bfb1-bba44a087515 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 11px + - spectrum.mobile.uuid: e3751526-2db9-421c-85f9-d60071aac49b + - spectrum.uuid: f828021f-4a1f-466c-b11f-7b146bd36832 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 8px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 96094695-7843-4144-9d6c-8e90b0c8f11e + - express.mobile.schema: dimension.json + - express.mobile.value: 10px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 19c53e39-2529-400e-849a-04210d29f022 + - express.uuid: 3c1cc90f-0e1d-4e83-afe9-7677e7ad39c6 + - uuid: 278b4c19-a365-465d-9169-f07611b0e6a4 +- `checkbox-top-to-control-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 12px + - spectrum.desktop.uuid: 93edae08-5320-4e7e-a006-a9af1d3665ad + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 15px + - spectrum.mobile.uuid: d040d2f4-9bb4-4d27-adac-40fef079d958 + - spectrum.uuid: fb853ce5-65d1-475b-9867-0e71d4af9536 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 11px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 771f42bc-63af-4b02-ab72-419913b9f72b + - express.mobile.schema: dimension.json + - express.mobile.value: 14px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 9952f0e9-8cf1-4a72-a584-99fe4b708b0e + - express.uuid: f94fe1d8-a682-45b9-b005-1121b8788e67 + - uuid: 4d8d78c3-4f20-480a-9b92-bfa2ecd6d7ab +- `checkbox-top-to-control-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 15px + - spectrum.desktop.uuid: 3c4217bb-91f2-4347-9f65-a0528992f600 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 19px + - spectrum.mobile.uuid: b3be5ac8-2415-4490-8b4a-c08661ec84d1 + - spectrum.uuid: 77e9a03f-4936-43ca-8558-70d0f648618b + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 14px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 9b372f9e-f3b9-4fa6-9a12-fc50696c7e4e + - express.mobile.schema: dimension.json + - express.mobile.value: 17px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: f21573b4-a8e6-4209-9bc0-6030a542308f + - express.uuid: f3bd16e7-db20-463b-89df-82886b0e7ef7 + - uuid: 28800a46-8103-4a0c-9e9e-753ecccd8160 +- `switch-control-width-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 23px + - spectrum.desktop.uuid: f4d6fe1a-70bd-473a-9fa5-477865ea898e + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 32px + - spectrum.mobile.uuid: ca939c4d-9369-498c-81cb-61df1397f657 + - spectrum.uuid: 0c641ef6-cd8b-4183-9ea9-29b3f30b90b2 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 25px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 0693a733-603d-4ff8-90b4-6b1bc3bd1681 + - express.mobile.schema: dimension.json + - express.mobile.value: 32px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 76c9ee44-720a-4ce0-88a5-15d93c6f9e32 + - express.uuid: 0719f43a-aa80-498b-8167-66bfa30d6fef + - uuid: 8522cca3-2174-4d2f-96d8-443a4346442b +- `switch-control-width-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 26px + - spectrum.desktop.uuid: d329eda6-f13d-4a44-b962-ff06c371ed93 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 36px + - spectrum.mobile.uuid: ec2f3b6b-80db-4c43-bdd2-caee98796775 + - spectrum.uuid: a10c659f-6fb9-4cde-b996-42fa1e94d758 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 28px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 0897d478-5e14-4147-bb98-ba6566523009 + - express.mobile.schema: dimension.json + - express.mobile.value: 36px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: bd5c5024-4e29-4aef-86e4-6a4f7568ca2f + - express.uuid: 06a0ba1f-a914-4f9c-bade-1e930bb5273a + - uuid: 22eb4f1e-4fbc-4088-8296-6abf56cb0126 +- `switch-control-width-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 29px + - spectrum.desktop.uuid: cef839a5-2ba7-4e47-9a85-d94260a8ff10 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 41px + - spectrum.mobile.uuid: 5c7bdcc9-63f8-4c4b-b26f-97b39f53dbea + - spectrum.uuid: f9e23291-6110-4770-abeb-ec1bd6ef529c + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 32px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 4703d454-0374-4304-87c9-cc4ae86e4d59 + - express.mobile.schema: dimension.json + - express.mobile.value: 41px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 5fa423b6-faa2-497e-9bbd-59cac5c9c696 + - express.uuid: 06cb2cd0-e437-48d4-850e-c6bb70f6bac5 + - uuid: 76311a72-2906-46c2-bd2f-e1cf55a1761c +- `switch-control-width-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 33px + - spectrum.desktop.uuid: f3102afd-e5df-4912-9203-8226ce37fed5 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 46px + - spectrum.mobile.uuid: 4e9d9b63-989a-4b63-b74d-22b5188f8df7 + - spectrum.uuid: 28d7a626-dbbf-401b-8c7b-5fa59f54242e + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 35px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 8efecc6d-6939-40ec-b7c9-077dddc2e4da + - express.mobile.schema: dimension.json + - express.mobile.value: 46px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 0f253bb1-11d1-4af3-901b-b7b4877d02fa + - express.uuid: 6347a50c-ab8c-474c-b023-f240971a8dd3 + - uuid: 74704e52-a27a-4542-9172-21c7e8e94e01 +- `switch-control-height-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 12px + - spectrum.desktop.uuid: 3bf75a24-5e95-4c18-9da2-b7088377fe21 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 16px + - spectrum.mobile.uuid: a1dbcaf0-bbcf-444d-9d22-7f86db20303a + - spectrum.uuid: a795d784-a67e-4689-8a30-029f096703b0 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 14px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 44ed85d1-9e7c-4d81-9150-ad83fdafc328 + - express.mobile.schema: dimension.json + - express.mobile.value: 18px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: a0df76f3-334c-404e-af94-651dc1631551 + - express.uuid: dd76c4a0-5a57-4285-9dd7-9ce340373a1b + - uuid: 98407df8-86cd-4c7e-a1f5-ac658f3acac0 +- `switch-control-height-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 14px + - spectrum.desktop.uuid: f97f0f1b-c0c2-410f-b116-86d30f4d52cf + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 18px + - spectrum.mobile.uuid: 0d5f13f2-4d5b-4c30-b3a3-fa4fcc33b928 + - spectrum.uuid: d723ac24-d571-4680-85a2-df9bad339742 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 16px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 689162cb-9515-4d7d-bff3-8ae261aa314d + - express.mobile.schema: dimension.json + - express.mobile.value: 20px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 4d30aa11-6dfd-4049-97fb-becec10241d6 + - express.uuid: 3278cc86-d59d-4316-a4bd-4f7dd2a6d360 + - uuid: fa372672-47db-4a93-9c3f-9736305f8bfc +- `switch-control-height-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 16px + - spectrum.desktop.uuid: 8301bfca-a086-4efd-a22f-1d348cbd6dcf + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 20px + - spectrum.mobile.uuid: 91b828ce-8ff9-4d32-958e-a8a23ef9b345 + - spectrum.uuid: 888da305-52db-492c-9133-1888ea0a0fe6 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 18px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: b8f10f46-a1f8-4c73-ae1a-a3d70258d894 + - express.mobile.schema: dimension.json + - express.mobile.value: 22px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: db3ec089-c51c-48f6-9f3e-0588173bb5f2 + - express.uuid: 0f36a04c-8562-4cff-a1a4-0a16143eeeb4 + - uuid: c4264736-04eb-4f9c-a26b-f77dfc9af0fe +- `switch-control-height-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 18px + - spectrum.desktop.uuid: 2372d602-78ce-45a7-9dff-152152e55117 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 22px + - spectrum.mobile.uuid: b7ae7b32-b347-4e09-9978-3b0b92a4dbab + - spectrum.uuid: bdae73c7-1606-4388-a35f-fde686f340f9 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 20px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 7891f610-9a54-4889-a5e7-747637939809 + - express.mobile.schema: dimension.json + - express.mobile.value: 26px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 00e246ce-9510-4429-bbc9-74b442865798 + - express.uuid: f4770609-e927-4689-92eb-81b4b0667519 + - uuid: 3c695f82-7648-4565-85a9-c2aa0b5f0c83 +- `switch-top-to-control-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 6px + - spectrum.desktop.uuid: 8a907825-236c-4548-91c4-2123e095726c + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 7px + - spectrum.mobile.uuid: f379c453-da21-41f6-92d1-9b6bdb95fd86 + - spectrum.uuid: 38308100-a1fc-45bb-9aa6-a5aca196e168 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 5px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 6e1df1c4-6a80-4b8c-99aa-24308cc68c94 + - express.mobile.schema: dimension.json + - express.mobile.value: 6px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 85c920b2-1f23-4bf1-90ae-e5c92d854c77 + - express.uuid: bc106555-0cda-4550-927a-671ae62b8adb + - uuid: 5eb5b6a0-48fc-4200-8497-55db7da7e135 +- `switch-top-to-control-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 9px + - spectrum.desktop.uuid: 0135b823-5097-43bb-9911-9f731146af3b + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 11px + - spectrum.mobile.uuid: 68276028-41d8-49e1-b0d4-f70cd27ab149 + - spectrum.uuid: c179855f-8577-4f10-9c9d-a2e822c30022 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 8px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: f5575230-258b-474c-b078-8935a9f02f23 + - express.mobile.schema: dimension.json + - express.mobile.value: 10px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 7ba17c8b-51a1-47e3-a3be-7c8a746ab04c + - express.uuid: d5370d57-4b1c-4cca-8c6d-d54bb4219d5e + - uuid: aca3a431-36b6-43b9-b0b0-d64e84c350d4 +- `switch-top-to-control-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 12px + - spectrum.desktop.uuid: f2c965e6-89fb-4b9d-843d-cfde31b7703d + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 15px + - spectrum.mobile.uuid: 035e786b-17f2-488e-a049-84b257a3312f + - spectrum.uuid: 162f29ee-4f53-4947-81a3-3c0e003f7997 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 11px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 2aae56b2-4639-41a4-9037-409412564fd0 + - express.mobile.schema: dimension.json + - express.mobile.value: 14px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 43037e51-b895-4599-9d67-afcd17b0d9de + - express.uuid: f5f708d8-967d-427d-9ea2-6617b4d9f28d + - uuid: c701b308-8f16-4ea1-8654-72a2779f7500 +- `switch-top-to-control-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 15px + - spectrum.desktop.uuid: fbc21571-970f-4bb2-8280-f6262446896b + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 19px + - spectrum.mobile.uuid: 7e95ad9a-ca10-4f06-9c19-8dd2270cfdad + - spectrum.uuid: 0b6d95f7-8c05-4d78-83b9-f74bae363c32 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 14px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: b7e7048a-2a27-4ccc-8f4d-717c09fb5b3f + - express.mobile.schema: dimension.json + - express.mobile.value: 17px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 67f76075-33fb-4cbf-8785-cb1d626d2a04 + - express.uuid: 1f74569f-7529-4a33-ba04-36ee1fdb9a95 + - uuid: 89647edb-2cce-4be8-9644-e78d292d8d71 +- `radio-button-control-size-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 12px + - spectrum.desktop.uuid: 407304fc-7c74-4427-9032-b44ab03c07ce + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 16px + - spectrum.mobile.uuid: 90a2b18a-61c7-40d8-926c-d6b18a641010 + - spectrum.uuid: b934fcbd-f58e-4b8b-a890-698920829d3e + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 14px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: da052fde-007d-4c69-b112-67f50452755a + - express.mobile.schema: dimension.json + - express.mobile.value: 18px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: cf3edaa4-3897-491a-add0-53f8057925da + - express.uuid: b122f7a1-df01-4c68-b980-cbcecf201307 + - uuid: 55afc37a-81ce-4065-96ca-556fc49e43bf +- `radio-button-control-size-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 14px + - spectrum.desktop.uuid: 9de5b045-532c-48ef-872e-bd3c22f89a41 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 18px + - spectrum.mobile.uuid: 2eef4003-e666-48e7-b25b-8c50063ce400 + - spectrum.uuid: 6926490d-dc56-4ca2-b733-848ea6a132da + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 16px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 14ea1874-1a46-404f-8baf-1c0c0832ff33 + - express.mobile.schema: dimension.json + - express.mobile.value: 20px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: ae670151-1eaa-4de5-9a67-2e7a553b7b63 + - express.uuid: 7a50d806-bba1-45a0-bfb2-2d71b0086c09 + - uuid: 20f7aebf-f4c1-4e18-87a1-3726eb475b45 +- `radio-button-control-size-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 16px + - spectrum.desktop.uuid: cadf4b9e-b4d4-4ff5-808b-557864cf7dc8 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 20px + - spectrum.mobile.uuid: 23d0a4aa-693d-4b79-b942-3898f9cf0b80 + - spectrum.uuid: 1f303f57-24c3-447f-a2b8-3f9ff9d9bef0 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 18px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: ec32e1d6-da75-47f4-ae14-f47d28912187 + - express.mobile.schema: dimension.json + - express.mobile.value: 22px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 2d0cb7dc-68e0-4e88-a2eb-5b4feac5c800 + - express.uuid: 4074251c-034d-4eff-916f-1cf3ac39e175 + - uuid: d12c6733-a8bc-4dac-8a02-b876a53509ce +- `radio-button-control-size-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 18px + - spectrum.desktop.uuid: f8f1d29b-4093-40ed-b73c-7a27e27a63a4 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 22px + - spectrum.mobile.uuid: cc041f48-aaa4-4c20-8990-599e0c56134e + - spectrum.uuid: 30ff09c2-c18c-4dfa-bb30-361640e478c1 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 20px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: be02f790-a7a2-4570-9065-5942b690c7ed + - express.mobile.schema: dimension.json + - express.mobile.value: 26px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: c5f734ba-bf7a-4b64-8d70-8109fead6a90 + - express.uuid: 70167288-2023-4c23-bf26-420501bae9c2 + - uuid: 68b995ce-bbd8-44ba-9d72-df121fdfdd89 +- `radio-button-top-to-control-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 6px + - spectrum.desktop.uuid: b775d7e9-d182-4818-9ae0-b3765a0ecbf7 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 7px + - spectrum.mobile.uuid: 02438c4c-161d-45eb-935d-b083ab830876 + - spectrum.uuid: e8ec5366-9291-4c0f-9522-10367b2e5b2d + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 5px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 587b784a-09b3-48cb-987b-6e0ca4eff810 + - express.mobile.schema: dimension.json + - express.mobile.value: 6px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 39ae9b23-fc0d-45d7-beaa-42e7489fbd6e + - express.uuid: bb480f70-b3da-4158-bfac-2c59301f5acf + - uuid: 2d2f9e65-7ced-446f-9592-fe7bf530cf62 +- `radio-button-top-to-control-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 9px + - spectrum.desktop.uuid: dcc0155a-6bd1-4148-acaf-e255a7f4d22a + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 11px + - spectrum.mobile.uuid: 2f805530-cefe-420a-89e6-a6a81c0faea0 + - spectrum.uuid: c43d7fdb-420e-4909-a6ee-795495cb7c9d + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 8px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 53cf73f2-b7ad-4daf-88c0-c3285898120a + - express.mobile.schema: dimension.json + - express.mobile.value: 10px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 8629a0e6-b0bc-4447-b17d-8717b766579c + - express.uuid: c91222de-62f2-4c42-a50e-87827f06d9ec + - uuid: 783325cf-300a-46e3-baad-4b865c6df12f +- `radio-button-top-to-control-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 12px + - spectrum.desktop.uuid: 309c9559-1763-4345-8090-aaa12f570889 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 15px + - spectrum.mobile.uuid: 41d0dde7-de34-4e99-96d0-4f727ed71673 + - spectrum.uuid: 8283fca4-caa5-4262-a626-85fffa65d9fb + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 11px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 5315bd57-b934-4668-8204-e64d2eec70e6 + - express.mobile.schema: dimension.json + - express.mobile.value: 14px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 9db66e19-9553-47ca-ac5c-118a6b5f043a + - express.uuid: 1e2896f0-3910-4a1e-8557-7929040f0155 + - uuid: e114b720-a1ad-4394-b8ce-6622d9886f8e +- `radio-button-top-to-control-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 15px + - spectrum.desktop.uuid: f4620f0a-43ba-4650-8640-9425ed1a1260 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 19px + - spectrum.mobile.uuid: c478710f-1747-455b-998a-6fa837762905 + - spectrum.uuid: dbeeb464-daab-4ac3-ab0c-63d3f0415554 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 14px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 37397c94-a464-4ae7-9448-720b4696bbdb + - express.mobile.schema: dimension.json + - express.mobile.value: 17px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 42768b7d-b75d-4236-a8d3-e14d1d6e6f55 + - express.uuid: 59e82c86-c8d7-4c47-8151-7e3efef51101 + - uuid: 741e1396-c77c-4ac8-8292-eb11963ef18b +- `field-label-text-to-asterisk-small` + - uuid: a02163f0-6509-4b95-9d41-9d992ac5deef +- `field-label-text-to-asterisk-medium` + - uuid: 2aab2a3d-b2d4-49f8-9467-4e35d3564637 +- `field-label-text-to-asterisk-large` + - uuid: 671e4951-7e50-4dec-aff1-2833deb6a950 +- `field-label-text-to-asterisk-extra-large` + - uuid: 9b85fe75-9b6c-47e7-bfbe-dddfcdfdac79 +- `field-label-top-to-asterisk-small` + - uuid: 376801d0-554e-4889-91f4-cad3a023e486 +- `field-label-top-to-asterisk-medium` + - uuid: b7d0b135-04ad-43fd-ad0e-ef9675c855dd +- `field-label-top-to-asterisk-large` + - uuid: 301d5efa-c1b8-476d-897b-75f4988c99e3 +- `field-label-top-to-asterisk-extra-large` + - uuid: aaabc5b5-73a3-4d26-8a44-932981634cbd +- `field-label-top-margin-medium` + - desktop.schema: dimension.json + - desktop.value: 4px + - desktop.uuid: b5243f56-7985-4686-b41f-9b9b9a18b047 + - mobile.schema: dimension.json + - mobile.value: 5px + - mobile.uuid: 9d00a023-3a33-4b98-819e-3229e03d103b +- `field-label-top-margin-large` + - desktop.schema: dimension.json + - desktop.value: 5px + - desktop.uuid: f7dd90d8-91e6-4090-a5a9-6b30087860a4 + - mobile.schema: dimension.json + - mobile.value: 6px + - mobile.uuid: f83b208f-dfdb-49a8-aedd-08fe8c7a86a9 +- `field-label-top-margin-extra-large` + - desktop.schema: dimension.json + - desktop.value: 5px + - desktop.uuid: 5c14d528-fe17-4b0b-a123-edbdb93fd173 + - mobile.schema: dimension.json + - mobile.value: 6px + - mobile.uuid: c4c5e251-d514-42cf-b9e3-56694910e95b +- `field-label-to-component-quiet-small` + - uuid: c29a472d-800e-4d65-b493-5a635047bd64 +- `field-label-to-component-quiet-medium` + - uuid: 1805d2b6-66ab-40aa-9410-60ed20fe0bfd +- `field-label-to-component-quiet-large` + - uuid: a8efae7b-e0b5-4816-89d3-25fc716580f2 +- `field-label-to-component-quiet-extra-large` + - uuid: 4d4dbbb1-4d22-4803-836f-8b89a8794302 +- `help-text-top-to-workflow-icon-small` + - uuid: 031892d3-31f2-433f-bed0-72c5b3ab0432 +- `help-text-top-to-workflow-icon-medium` + - uuid: 86ac0bd3-7ea6-4f80-9c73-c0c77616f246 +- `help-text-top-to-workflow-icon-large` + - uuid: e5517e20-dd37-4e43-9880-6042eb4c91bb +- `help-text-top-to-workflow-icon-extra-large` + - uuid: 2969e536-134d-462c-b7c3-2bd4490ce23c +- `status-light-dot-size-small` + - value: 8px + - uuid: 04485265-2983-4377-9ec5-f2456863a1df +- `status-light-dot-size-medium` + - uuid: 268c4731-1c52-47e1-b50d-e17b0fb1b1aa +- `status-light-dot-size-large` + - uuid: 1de5181f-8fb5-4123-85dd-c06a1382865f +- `status-light-dot-size-extra-large` + - uuid: c1561e03-afdd-4c60-ba43-9c850aefd20a +- `status-light-top-to-dot-small` + - uuid: dcb4e3bd-ebee-45d9-ad30-c91307c7a0a5 +- `status-light-top-to-dot-medium` + - uuid: 2e620445-18c0-4fdf-9d6b-ba05960cb254 +- `status-light-top-to-dot-large` + - uuid: abebffcd-877a-40ed-b538-10928353d74e +- `status-light-top-to-dot-extra-large` + - uuid: a8230bf5-89c7-4056-b8c7-29994e5524a0 +- `action-button-edge-to-hold-icon-medium` + - uuid: 2ffb06a4-6d3e-4b04-ab4e-53c8af557540 +- `action-button-edge-to-hold-icon-large` + - uuid: 8c025c63-8f5a-43b7-a1d7-658ca92409ff +- `action-button-edge-to-hold-icon-extra-large` + - uuid: 40e6526a-67c3-42b4-994e-6d30184dbfd0 +- `tooltip-tip-width` + - uuid: a3e2c245-2819-491f-81d1-4455746231b0 +- `tooltip-tip-height` + - uuid: c91eb240-75de-47f2-ada0-c4fa48b4a062 +- `tooltip-maximum-width` + - uuid: 02a0befa-2079-4104-b00e-08f6e41648fa +- `progress-circle-size-small` + - uuid: 80dfceb1-2bd0-49a5-b1e4-c5ec0f1717b4 +- `progress-circle-size-medium` + - uuid: 5ebff1b9-30c0-42ef-854a-d24dd35e5a73 +- `progress-circle-size-large` + - uuid: 75855fb6-77c1-4bf0-b7a7-cdcea70fe114 +- `progress-circle-thickness-small` + - uuid: 243aff09-e196-4c70-94fc-9b2bc7f0eaf5 +- `progress-circle-thickness-medium` + - uuid: 16e18a45-36dd-49e6-8f7a-9f98b2d43f1e +- `progress-circle-thickness-large` + - uuid: aec2d866-6282-40e2-a3ac-62cb7972aac8 +- `toast-height` + - uuid: 616ccaf7-d757-45f0-b212-782d7bee21fd +- `toast-maximum-width` + - uuid: a1b4c509-39db-436f-bece-147fe30760a7 +- `toast-top-to-workflow-icon` + - uuid: 657689f7-d729-4707-9939-2006a8f55397 +- `toast-top-to-text` + - uuid: 3654a646-a72d-4e5e-aec7-c388d21edf7f +- `toast-bottom-to-text` + - uuid: 01851120-86da-4060-9473-af6a6a3de7f5 +- `action-bar-height` + - desktop.schema: dimension.json + - desktop.value: 48px + - desktop.uuid: e67822de-d0cd-4b49-8e90-6c43523bb4dd + - mobile.schema: dimension.json + - mobile.value: 56px + - mobile.uuid: 4be2cf45-1ba5-4a6f-a004-8d26ecbb4c2f +- `action-bar-top-to-item-counter` + - desktop.schema: dimension.json + - desktop.value: 14px + - desktop.uuid: 73f82d09-7927-461c-b7d7-ab0bc6b3e3f9 + - mobile.schema: dimension.json + - mobile.value: 16px + - mobile.uuid: b8466a83-3409-47c0-a329-b8e83b83abdb +- `swatch-size-extra-small` + - uuid: 09fcadd8-5a2b-4a12-a6c9-9c21f119ddc7 +- `swatch-size-small` + - uuid: b4e9a9b9-ced1-4dc9-bb56-ee4f5aeb3824 +- `swatch-size-medium` + - uuid: 1b03fbc4-00a7-45cd-b328-f7180743a7bc +- `swatch-size-large` + - uuid: 2544beb5-a218-4fbe-992d-b282a732e7ed +- `progress-bar-thickness-small` + - uuid: a5bf84aa-2719-4204-b9f1-e7463ad010da +- `progress-bar-thickness-medium` + - uuid: 76bb6912-2bca-493f-a198-20aa7e1636b3 +- `progress-bar-thickness-large` + - uuid: 2f57822d-5feb-425c-b76a-d2d393c4ee8e +- `progress-bar-thickness-extra-large` + - uuid: 83950b17-a2f2-404c-a76c-74bf43c0f663 +- `meter-width` + - uuid: 25d19f48-7ab7-4176-b745-0bef75ebfe44 +- `meter-thickness-small` + - uuid: c4e3b88c-9539-4741-a5ea-0e84953dc499 +- `meter-thickness-large` + - uuid: 9e406a2a-3456-4d9d-8ad8-21ab27ec1be2 +- `tag-top-to-avatar-small` + - uuid: e493f30d-e05e-46bd-80ec-cfe84fa0a5b5 +- `tag-top-to-avatar-medium` + - uuid: 10f21fe1-6310-43a0-bdf1-0b4543914cf1 +- `tag-top-to-avatar-large` + - uuid: b5b37323-fd9a-4f63-a222-9587cf71bfd0 +- `tag-top-to-cross-icon-small` + - uuid: ca9917ec-e850-41f6-84af-496734f8a540 +- `tag-top-to-cross-icon-medium` + - uuid: 7cbb04dd-d793-4749-b6f2-61a265b64787 +- `tag-top-to-cross-icon-large` + - uuid: 7672a296-b875-4076-b342-695ff110246c +- `popover-top-to-content-area` + - desktop.schema: dimension.json + - desktop.value: 4px + - desktop.uuid: f97488e8-b1c1-442e-b98c-0ae6cff0b774 + - mobile.schema: dimension.json + - mobile.value: 5px + - mobile.uuid: 6165bae4-7148-4cb2-a1b4-38a25f2d8cde +- `menu-item-edge-to-content-not-selected-small` + - uuid: 6e23f979-9b82-4273-9221-b54a69fc4d99 +- `menu-item-edge-to-content-not-selected-medium` + - uuid: d05d20d8-2ad8-4a2a-880f-5f14c7c2907e +- `menu-item-edge-to-content-not-selected-large` + - uuid: 9d0e4967-c42d-4366-9e0e-5f75b3b1ee30 +- `menu-item-edge-to-content-not-selected-extra-large` + - uuid: 8d03e277-4105-45b0-adb6-d31d03a325dc +- `menu-item-top-to-disclosure-icon-small` + - uuid: 4fbc0a14-95ad-44d6-81d1-1115267dd83d +- `menu-item-top-to-disclosure-icon-medium` + - uuid: 0609f98d-936d-49df-905c-8d8beebbf900 +- `menu-item-top-to-disclosure-icon-large` + - uuid: d0443e32-2ffe-4511-96a9-074ac27018dd +- `menu-item-top-to-disclosure-icon-extra-large` + - uuid: ef0132be-8760-4217-a056-13bff34a217a +- `menu-item-top-to-selected-icon-small` + - uuid: 5c019740-3fac-48b6-975b-bdb91b9149ee +- `menu-item-top-to-selected-icon-medium` + - uuid: 3413b81e-4352-4d15-9c62-bd55d2b9c032 +- `menu-item-top-to-selected-icon-large` + - uuid: 113a8249-01fd-4395-a8a4-e26eec604a51 +- `menu-item-top-to-selected-icon-extra-large` + - uuid: 2fb80685-2b2b-4656-a01f-92eb5dcb5b24 +- `slider-track-thickness` + - spectrum.schema: dimension.json + - spectrum.value: 2px + - spectrum.uuid: 50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b + - express.schema: dimension.json + - express.value: 4px + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: c3844fed-2f84-46da-9b00-cc8e0dbf0336 +- `slider-handle-size-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 14px + - spectrum.desktop.uuid: 1384d419-bfad-44d7-847c-a0f2c195fb93 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 18px + - spectrum.mobile.uuid: 7feb3d57-59fb-4095-966e-e8ca0e91442f + - spectrum.uuid: 905e59c4-b869-4402-9e2e-f2074ab20da1 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 18px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: d59c3ced-b57a-4b42-8693-c71b3579f3a7 + - express.mobile.schema: dimension.json + - express.mobile.value: 22px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: f424a2ec-ed1f-4739-b619-494e36f880e7 + - express.uuid: 8e355710-0035-48e8-bdd7-a13825f55d81 + - uuid: 0d2dfe7b-454d-46dc-8a3f-2c2f5c0db5c4 +- `slider-handle-size-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 16px + - spectrum.desktop.uuid: a8a02181-c797-461d-a666-a63f7535a096 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 20px + - spectrum.mobile.uuid: 278fc618-f6c1-4d30-bf85-075654079003 + - spectrum.uuid: 0f08fea5-7d53-4926-993e-802718fef278 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 20px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 8e0e1863-e992-4ca4-b25e-ba93060a3746 + - express.mobile.schema: dimension.json + - express.mobile.value: 24px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 04bef018-e59f-4c3d-8ece-79b9614fd813 + - express.uuid: 31039254-52a5-4425-97f5-e1f9c6af489f + - uuid: 90b773f7-c468-4c4c-8550-348418ecf242 +- `slider-handle-size-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 18px + - spectrum.desktop.uuid: 3df3c866-faf0-43db-8c18-f442e7f94822 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 22px + - spectrum.mobile.uuid: 2a3fb9b0-d701-4e86-8180-9d81f68e91d5 + - spectrum.uuid: 06816d82-ca8a-4fe6-a8fe-6d72e22d0454 + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 22px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: bbf15614-e738-43fb-9eef-011662f50591 + - express.mobile.schema: dimension.json + - express.mobile.value: 28px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 1d5c2e61-9381-4434-b76f-2160e933ba79 + - express.uuid: b2c009ab-f8e9-4130-a320-6ec09d1367d7 + - uuid: 787fd218-8574-4fda-9018-4c0e0aea00cb +- `slider-handle-size-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 20px + - spectrum.desktop.uuid: 10ccce0d-5a2c-414e-8055-0be76709c180 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 26px + - spectrum.mobile.uuid: 413dc697-1f14-47c8-a7f2-e52254513e6e + - spectrum.uuid: 24e9bdd3-8813-4f10-a388-8f184be9ccfd + - express.schema: scale-set.json + - express.desktop.schema: dimension.json + - express.desktop.value: 24px + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 77fff5f5-8941-4cd4-b814-9eb5f0720e77 + - express.mobile.schema: dimension.json + - express.mobile.value: 30px + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 5edbd2bb-e986-4e3a-a627-04f62c94384f + - express.uuid: 401d401e-5b27-46e8-bcbb-fc047db69e37 + - uuid: 8b2ace76-b1ea-4531-abec-88125e5fa9de +- `slider-handle-border-width-down-small` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 5px + - spectrum.desktop.uuid: c9b7d8d9-c5ba-4d97-a03b-a214104ede23 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 7px + - spectrum.mobile.uuid: 683fb538-290c-423f-990b-d7134e485f51 + - spectrum.uuid: a35fb778-2eaf-4d59-bfbf-5524578cfac5 + - express.schema: scale-set.json + - express.desktop.schema: alias.json + - express.desktop.value: border-width-200 + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 02b0ad1e-392b-4db3-a002-e2893170d3ff + - express.mobile.schema: alias.json + - express.mobile.value: border-width-200 + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 42c33935-3d84-4aef-a701-082db752cd15 + - express.uuid: 2308b8d4-1452-465e-b066-dddddba49d84 + - uuid: b8cc4125-f3f5-4aed-ac77-fa188656eeea +- `slider-handle-border-width-down-medium` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 6px + - spectrum.desktop.uuid: 63c65cd6-a2c2-4430-a1e9-cf82ae0a3f25 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 8px + - spectrum.mobile.uuid: 25959ff8-6c2f-4612-8d69-b95bfe485ce4 + - spectrum.uuid: 385352b1-950f-4504-b379-0078d9fcffc0 + - express.schema: scale-set.json + - express.desktop.schema: alias.json + - express.desktop.value: border-width-200 + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 8b9ec3a7-393b-4cce-82ce-3d75963f03f7 + - express.mobile.schema: alias.json + - express.mobile.value: border-width-200 + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 9ae32e64-309f-4732-b01b-3bebfb77d286 + - express.uuid: c41ea955-7214-4fe2-98a2-bddab9726bf4 + - uuid: a405fec1-85f5-4cfe-b066-b2c716a29285 +- `slider-handle-border-width-down-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 7px + - spectrum.desktop.uuid: 525e7d74-2bc0-48ac-85ca-b07335819a31 + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 9px + - spectrum.mobile.uuid: 3bf8805b-b4f7-4d0d-af85-d227d6380539 + - spectrum.uuid: 873d633e-05b4-41ef-bb03-2ea881a177e2 + - express.schema: scale-set.json + - express.desktop.schema: alias.json + - express.desktop.value: border-width-200 + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: 2a8534ec-8949-4212-9ed1-03ac9fd0349a + - express.mobile.schema: alias.json + - express.mobile.value: border-width-200 + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: b8c147c1-f528-4878-bd5f-7438cac59070 + - express.uuid: 3cad035f-1b64-4d46-aecb-3ce12187c33c + - uuid: e6c7529c-75a0-4c62-9d46-39af7351bdf3 +- `slider-handle-border-width-down-extra-large` + - spectrum.schema: scale-set.json + - spectrum.desktop.schema: dimension.json + - spectrum.desktop.value: 8px + - spectrum.desktop.uuid: 47d025e2-0b26-4ebc-9b46-3cd1e470b9bc + - spectrum.mobile.schema: dimension.json + - spectrum.mobile.value: 11px + - spectrum.mobile.uuid: feac9f02-b52a-4694-a5d4-4b1930ab4f07 + - spectrum.uuid: c739756b-8b92-4069-97a7-ad2cedee1627 + - express.schema: scale-set.json + - express.desktop.schema: alias.json + - express.desktop.value: border-width-200 + - express.desktop.deprecated: true + - express.desktop.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.desktop.uuid: c13916ff-d225-4106-a625-daea77871a31 + - express.mobile.schema: alias.json + - express.mobile.value: border-width-200 + - express.mobile.deprecated: true + - express.mobile.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.mobile.uuid: 4e420f10-cf3a-478f-a355-8f4050ea1b06 + - express.uuid: 7667b831-1b40-48af-a2f1-3e5be2f529c1 + - uuid: fb430d9a-23b5-4e93-9657-29602f65a3d0 +- `slider-handle-gap` + - spectrum.schema: dimension.json + - spectrum.value: 4px + - spectrum.uuid: 1a257268-32e9-4c5c-8477-32a724ff1d42 + - express.schema: dimension.json + - express.value: 0px + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: f7aa286c-54d8-4e6b-98b6-46cf06566ea7 +- `slider-control-to-field-label-small` + - uuid: 06f79925-1918-4606-a51c-2b72f492a074 +- `slider-control-to-field-label-medium` + - uuid: 9ceeb406-afeb-49e9-9164-002c9453fc34 +- `slider-control-to-field-label-large` + - uuid: d181e55a-0c31-44bf-9a7e-24c37f5e387c +- `slider-control-to-field-label-extra-large` + - uuid: d639f201-40b0-48ab-bafa-9a7747286a6e +- `picker-visual-to-disclosure-icon-small` + - uuid: f09fc872-12e3-4c51-886a-5fcc5d37d7c4 +- `picker-visual-to-disclosure-icon-medium` + - uuid: 8fd9c553-476d-4e22-abd6-998c187adfad +- `picker-visual-to-disclosure-icon-large` + - uuid: 1666090c-68db-472c-b241-1613de626cb7 +- `picker-visual-to-disclosure-icon-extra-large` + - uuid: 9c18fc60-c69e-4432-9229-ed98c69445ca +- `picker-border-width` + - spectrum.schema: alias.json + - spectrum.value: border-width-100 + - spectrum.uuid: 69c28762-f456-4641-b6ce-7cb295e3a27d + - express.schema: alias.json + - express.value: 0 + - express.uuid: 45392d0b-b92e-4e60-8b82-4bcfef7877eb +- `text-area-minimum-width` + - uuid: 2c9da183-d751-4fb4-8540-79056530396f +- `text-area-minimum-height` + - uuid: 68e71997-0765-4b0f-ba7a-a0b8f4cc897c +- `combo-box-visual-to-field-button-small` + - desktop.schema: dimension.json + - desktop.value: 7px + - desktop.uuid: 5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8 + - mobile.schema: dimension.json + - mobile.value: 9px + - mobile.uuid: 4ccba158-da29-43a1-bbba-6531ecf98807 +- `combo-box-visual-to-field-button-medium` + - desktop.schema: dimension.json + - desktop.value: 8px + - desktop.uuid: c5a4baf2-effe-4d9a-92f3-b4ead5440d36 + - mobile.schema: dimension.json + - mobile.value: 10px + - mobile.uuid: fefb7088-21e0-4cdf-a8a4-af2a6dcc2a1a +- `combo-box-visual-to-field-button-large` + - desktop.schema: dimension.json + - desktop.value: 9px + - desktop.uuid: 356c4912-69c7-4a95-956b-c1aa78cb02cb + - mobile.schema: dimension.json + - mobile.value: 11px + - mobile.uuid: 1a529788-8b87-4eef-aa07-a4ffb955761c +- `combo-box-visual-to-field-button-extra-large` + - desktop.schema: dimension.json + - desktop.value: 10px + - desktop.uuid: 4a4ee415-1f25-4d36-928c-5ece0ce4abcc + - mobile.schema: dimension.json + - mobile.value: 13px + - mobile.uuid: 50ecd11d-6710-46e9-b1c6-923bb1d9f494 +- `thumbnail-size-50` + - uuid: 1bb0d68e-2f6d-4c1d-93e2-81f2ef9e12a3 +- `thumbnail-size-75` + - uuid: e9f84d37-cff3-46bb-bc13-5cf963b50dcc +- `thumbnail-size-100` + - uuid: 0763361e-1d9d-4a9b-92af-3dad58f5f98c +- `thumbnail-size-200` + - uuid: 6b6551aa-b460-45cd-8608-13a4d8d5cf6b +- `thumbnail-size-300` + - uuid: 844d91a7-258f-447d-b0d6-a6f3920896fc +- `thumbnail-size-400` + - uuid: d38ca4ff-ec98-421d-98a8-5acc711b91ce +- `thumbnail-size-500` + - uuid: 193ad02b-a5f6-4bd3-8513-0d2016d4a1ed +- `thumbnail-size-600` + - uuid: 36850f43-0dcc-47f6-aa02-0f20a372d294 +- `thumbnail-size-700` + - uuid: ab8e832e-7740-40c3-b204-ac3024fc0b90 +- `thumbnail-size-800` + - uuid: a038ef04-cda6-4e10-a1f4-50011413fb2e +- `thumbnail-size-900` + - uuid: e72babfa-ddff-44b0-aaa6-19ee756e1759 +- `thumbnail-size-1000` + - uuid: 9225b7e7-e866-4e54-abf0-77ded58b2f25 +- `alert-dialog-title-size` + - desktop.schema: alias.json + - desktop.value: heading-size-s + - desktop.uuid: 9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197 + - mobile.schema: alias.json + - mobile.value: heading-size-xs + - mobile.uuid: 3f362b57-09eb-4147-b366-5c1f04c9a29f +- `alert-dialog-description-size` + - desktop.schema: alias.json + - desktop.value: body-size-s + - desktop.uuid: 9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599 + - mobile.schema: alias.json + - mobile.value: body-size-xs + - mobile.uuid: 43c5762a-d3a6-49db-9e5e-4a524604fecc +- `opacity-checkerboard-square-size` + - uuid: df681295-c2f5-4d07-a8b0-689a94bb289c +- `contextual-help-title-size` + - desktop.schema: alias.json + - desktop.value: heading-size-xs + - desktop.uuid: 5358fd6c-d9a0-4caa-a85e-af82ed82efaf + - mobile.schema: alias.json + - mobile.value: heading-size-xxs + - mobile.uuid: e91709ce-79e3-4a81-88fa-e124960d4389 +- `contextual-help-body-size` + - desktop.schema: alias.json + - desktop.value: body-size-s + - desktop.uuid: e458fa68-ab9c-4441-a7d5-a02f42df1cae + - mobile.schema: alias.json + - mobile.value: body-size-xs + - mobile.uuid: c180fa75-254e-4ee1-8b79-31a3d90254cc +- `breadcrumbs-height-multiline` + - uuid: ffd9914f-c51c-41ac-b1fb-b0c2ed3c13b6 +- `breadcrumbs-top-to-text` + - desktop.schema: dimension.json + - desktop.value: 13px + - desktop.uuid: d084038e-bc31-43be-99ee-13cf727eaf9d + - mobile.schema: dimension.json + - mobile.value: 17px + - mobile.uuid: c4e58bb6-dcd7-4b64-b881-5b918c346989 +- `breadcrumbs-top-to-text-compact` + - desktop.schema: dimension.json + - desktop.value: 11px + - desktop.uuid: b19547e2-bd8f-435d-b726-4f2ce6a83984 + - mobile.schema: dimension.json + - mobile.value: 16px + - mobile.uuid: da5c0b1f-a8df-407c-888f-ac62d1fefa7c +- `breadcrumbs-top-to-text-multiline` + - uuid: 72d458f9-f98f-4e96-a190-bbe8c9461e23 +- `breadcrumbs-bottom-to-text` + - desktop.schema: dimension.json + - desktop.value: 15px + - desktop.uuid: f0e6a20d-8c2d-4aa3-9060-b6ca66aa7943 + - mobile.schema: dimension.json + - mobile.value: 19px + - mobile.uuid: 971f1589-f80b-4c1e-8814-b5c286c5f561 +- `breadcrumbs-bottom-to-text-compact` + - desktop.schema: dimension.json + - desktop.value: 12px + - desktop.uuid: 70a356be-c304-4bb4-a9df-97806931f089 + - mobile.schema: dimension.json + - mobile.value: 19px + - mobile.uuid: d783bd6f-fc7a-4be4-b53a-b8be86018b7b +- `breadcrumbs-bottom-to-text-multiline` + - uuid: 09bf854f-452b-4494-9c5c-624398030d4d +- `breadcrumbs-start-edge-to-text` + - desktop.schema: dimension.json + - desktop.value: 8px + - desktop.uuid: a0542dab-98fb-45d8-b4a0-79cfd2cc4f1c + - mobile.schema: dimension.json + - mobile.value: 9px + - mobile.uuid: 6d632147-5a1e-4a19-9fca-019b234d0455 +- `breadcrumbs-top-text-to-bottom-text` + - uuid: 0c3dc1de-a246-44b4-9bb6-650e6542f110 +- `breadcrumbs-top-to-separator-icon` + - desktop.schema: dimension.json + - desktop.value: 19px + - desktop.uuid: 15e56281-5fc1-4b59-b815-fc333231e364 + - mobile.schema: dimension.json + - mobile.value: 25px + - mobile.uuid: 882046d8-7111-4020-bf31-b8eb9d9013e0 +- `breadcrumbs-top-to-separator-icon-compact` + - desktop.schema: dimension.json + - desktop.value: 15px + - desktop.uuid: a63e8df1-124f-4f3e-9e1b-ba422b8d8257 + - mobile.schema: dimension.json + - mobile.value: 23px + - mobile.uuid: f6c5b011-ec25-42ea-a708-d7dca1b5fb5a +- `breadcrumbs-top-to-separator-icon-multiline` + - uuid: eb8f020c-8e62-42ee-9e0d-2de3377385cb +- `breadcrumbs-separator-icon-to-bottom-text-multiline` + - desktop.schema: dimension.json + - desktop.value: 11px + - desktop.uuid: 56dd2fd0-c7a3-4f2c-bda9-8e6ba6d99e6c + - mobile.schema: dimension.json + - mobile.value: 15px + - mobile.uuid: 571239ce-690f-49ee-9e71-d14bbfe4b279 +- `breadcrumbs-top-to-truncated-menu` + - desktop.schema: dimension.json + - desktop.value: 8px + - desktop.uuid: 751734bd-1c58-4222-bbd8-8b2349f2fbd2 + - mobile.schema: dimension.json + - mobile.value: 10px + - mobile.uuid: 793da276-18a6-46d0-a0e5-a1676c4df583 +- `breadcrumbs-top-to-truncated-menu-compact` + - desktop.schema: dimension.json + - desktop.value: 4px + - desktop.uuid: e0aba287-799f-4621-97cb-563352002a20 + - mobile.schema: dimension.json + - mobile.value: 5px + - mobile.uuid: d5e92b0a-6d37-4b77-a5d0-6c4f1b9a722c +- `breadcrumbs-truncated-menu-to-bottom-text` + - value: 0px + - uuid: 2285d870-68ec-469f-a034-2fdeb31e33f0 +- `avatar-size-50` + - uuid: 74b61508-450d-4ccf-a004-87c6fdee3d14 +- `avatar-size-75` + - uuid: fd0f42d3-3d6e-4078-9e7d-54cdf68779de +- `avatar-size-100` + - uuid: 36128b0d-b39f-49b0-9326-9aabdd9d4a18 +- `avatar-size-200` + - uuid: e799a14e-ebe3-4a79-bffe-02519e4f8283 +- `avatar-size-300` + - uuid: 9882a002-e081-4537-b31e-30d8d90a77b3 +- `avatar-size-400` + - uuid: 7dd556a4-252f-4b83-93cc-827da0551b3a +- `avatar-size-500` + - uuid: a49b2760-8820-4266-bdb9-fc76ddc6d738 +- `avatar-size-600` + - uuid: 1f23f3a9-5b76-4d27-a934-dcf8dda0afef +- `avatar-size-700` + - uuid: a73d1b8d-745c-4ad6-986f-e28c8937285a +- `alert-banner-minimum-height` + - uuid: 63ee45bd-4e77-4ab6-b0ff-8466a4072f52 +- `alert-banner-width` + - uuid: 11184272-5c12-4487-b3db-f784466d0c58 +- `alert-banner-top-to-workflow-icon` + - uuid: 6e8a1f16-b7f2-4bbc-8ce8-9f2badebb500 +- `alert-banner-top-to-text` + - uuid: c586013e-3ba7-4e91-9377-decb2e82e3c6 +- `alert-banner-bottom-to-text` + - uuid: 31c44c54-bb66-41f2-b47f-594931457cad +- `rating-indicator-width` + - uuid: 7c4bf44d-6562-467c-9bec-a24243c8028e +- `rating-indicator-to-icon` + - uuid: fed766b6-a8e3-42d5-82f5-fb3fa0fc229c +- `color-area-width` + - uuid: f6071bbd-61a1-46d8-9591-4da270732828 +- `color-area-minimum-width` + - uuid: 5e72964b-31cc-44f7-9535-d6cf5a4f5131 +- `color-area-height` + - uuid: 51fc2f80-5e26-4b16-9f99-bd7cdebe120e +- `color-area-minimum-height` + - uuid: 09eba209-c3f1-4ed6-96cc-47c63c4b0668 +- `color-wheel-width` + - uuid: 441c23c9-98af-4db0-a74e-dbc70d34a0c4 +- `color-wheel-minimum-width` + - uuid: 675789ec-f6bc-4378-a1fa-94e031de52f7 +- `color-slider-length` + - uuid: f2c2cd54-9bc9-4eb9-b903-ebd285be2101 +- `color-slider-minimum-length` + - uuid: 56a81108-825a-4b29-bc9a-af66d23c2a9a +- `illustrated-message-title-size` + - desktop.schema: alias.json + - desktop.value: heading-size-m + - desktop.uuid: 365ec548-431b-4e1e-9f9d-7b04d337f001 + - mobile.schema: alias.json + - mobile.value: heading-size-s + - mobile.uuid: cfca5a29-7073-4627-8a61-27d37552dc03 +- `illustrated-message-cjk-title-size` + - desktop.schema: alias.json + - desktop.value: heading-cjk-size-m + - desktop.uuid: e77279df-bc62-441a-8a30-5faa41d0df10 + - mobile.schema: alias.json + - mobile.value: heading-cjk-size-s + - mobile.uuid: 00c938e6-e62e-4bc3-8884-cf23b10e286c +- `illustrated-message-body-size` + - desktop.schema: alias.json + - desktop.value: body-size-s + - desktop.uuid: 4140710f-ae31-4ae3-b8b6-2d3eb6a1ae78 + - mobile.schema: alias.json + - mobile.value: body-size-xs + - mobile.uuid: f3ba73a4-16ba-44a4-abf2-9893e8f02344 +- `coach-mark-width` + - uuid: b8c6b0f5-b498-46e3-8fed-b026af86482a +- `coach-mark-minimum-width` + - uuid: 53ab0df3-12d4-4460-b5a7-234e40c4456a +- `coach-mark-maximum-width` + - uuid: a2fbb90f-b481-49bb-aa87-d67b0144c8c5 +- `coach-mark-edge-to-content` + - uuid: 41bda81f-182f-46ce-961b-83db9b5211bd +- `coach-mark-pagination-text-to-bottom-edge` + - uuid: 2e16deca-76be-472d-97ec-13596db8089d +- `coach-mark-media-height` + - uuid: f8ee195f-0b00-41fb-bb76-a22a7f0ccaff +- `coach-mark-media-minimum-height` + - uuid: f35ee551-3eab-4650-938d-60b4bb10ec3d +- `coach-mark-title-size` + - desktop.schema: alias.json + - desktop.value: heading-size-xs + - desktop.uuid: 331604db-3f28-472e-810d-9010ed2c8e33 + - mobile.schema: alias.json + - mobile.value: heading-size-xxs + - mobile.uuid: cd4848b6-d560-475a-9d80-f7b5acebce10 +- `coach-mark-body-size` + - desktop.schema: alias.json + - desktop.value: body-size-s + - desktop.uuid: eba9f466-deda-48d5-a120-14419d5a670f + - mobile.schema: alias.json + - mobile.value: body-size-xs + - mobile.uuid: a0abef77-dafe-4158-9faa-a4b4b2871e54 +- `coach-mark-pagination-body-size` + - desktop.schema: alias.json + - desktop.value: body-size-s + - desktop.uuid: df8bc8ae-b6fa-4414-93b7-c89d8097fe11 + - mobile.schema: alias.json + - mobile.value: body-size-xs + - mobile.uuid: 350d9235-ff9e-43d7-9298-56b36d58d6de +- `accordion-top-to-text-regular-small` + - uuid: aad6a2e4-89ed-4b54-89cb-17643f5cf826 +- `accordion-small-top-to-text-spacious` + - uuid: 21d37fe2-7897-4071-8f80-9c5ace73c0ea +- `accordion-top-to-text-regular-medium` + - uuid: f3aaa4f6-a58d-4612-bbfc-0d4647981067 +- `accordion-top-to-text-spacious-medium` + - uuid: 666c8b52-bc14-4588-8147-ab11fac0a413 +- `accordion-top-to-text-compact-large` + - uuid: 861bb30c-d322-4085-b7b5-8c1d1a3d6b02 +- `accordion-top-to-text-regular-large` + - uuid: 48c043d5-24c8-4ac3-9745-6daa65f21a43 +- `accordion-top-to-text-spacious-large` + - uuid: c5e08a35-8c56-4b29-8edc-d8fc64a19b0b +- `accordion-top-to-text-compact-extra-large` + - uuid: d41f8c32-35e1-49e6-be09-cfd46c2aa064 +- `accordion-top-to-text-regular-extra-large` + - uuid: d29f4dc3-b39b-46b6-bcec-64e9019d684f +- `accordion-top-to-text-spacious-extra-large` + - uuid: 35dd0fbb-b065-4512-aae0-8705b5ead4ca +- `accordion-bottom-to-text-compact-small` + - uuid: b74e3f61-5d03-4104-a809-ed5b7fe60611 +- `accordion-bottom-to-text-regular-small` + - uuid: 46761c4b-8224-48ae-bf79-9672d250e53f +- `accordion-bottom-to-text-spacious-small` + - uuid: 0f91dd70-a1c7-487b-a9b3-d6a462bf9e57 +- `accordion-bottom-to-text-compact-medium` + - uuid: 0cf0f58c-8eea-4a65-8636-4764654d56e8 +- `accordion-bottom-to-text-regular-medium` + - uuid: d14a70a4-dd33-4e1d-972e-4d453135f675 +- `accordion-bottom-to-text-spacious-medium` + - uuid: b76125b4-5be8-4324-b182-e6dc70e0e4ff +- `accordion-bottom-to-text-compact-large` + - uuid: 866479c6-c08a-452b-80db-0eaab1010f4f +- `accordion-bottom-to-text-regular-large` + - uuid: 0d3624d6-e476-49e0-b382-7c66ee070cb2 +- `accordion-bottom-to-text-spacious-large` + - uuid: ed84ee4f-0bee-4a6d-aca8-68836f140f67 +- `accordion-bottom-to-text-compact-extra-large` + - uuid: 695fb872-0b52-4477-942e-780e8418bdfe +- `accordion-bottom-to-text-regular-extra-large` + - uuid: 733a9bbd-9b08-4a03-add2-defa39fbe9b5 +- `accordion-bottom-to-text-spacious-extra-large` + - uuid: d8d072e2-ffc8-4211-ac06-6f2ada7c1d68 +- `accordion-minimum-width` + - uuid: d2ec2861-21dd-4282-b483-abd69bb8ef71 +- `accordion-content-area-top-to-content` + - uuid: cd059cf7-1eff-4b03-bee5-d254dbd5df30 +- `accordion-content-area-bottom-to-content` + - uuid: 78c5f8c2-6436-4a5d-a67b-c90f2cd8e47b +- `color-handle-size` + - uuid: 1cb8d622-071a-417b-ab40-7350f7bce364 +- `color-handle-size-key-focus` + - uuid: f94a7f6f-58d8-4d82-b480-843106cbf828 +- `table-column-header-row-top-to-text-small` + - uuid: f3ebd248-9c8d-4b9e-b6d0-4104f19a64e9 +- `table-column-header-row-top-to-text-medium` + - uuid: d76f977c-bb72-4f01-9b1c-5b02c205a1ff +- `table-column-header-row-top-to-text-large` + - uuid: e15274c0-d45a-4bbb-bf0b-d4e12e85a2b6 +- `table-column-header-row-top-to-text-extra-large` + - uuid: cf6c2df3-bf95-4612-b40b-95a6c963c3b7 +- `table-column-header-row-bottom-to-text-small` + - uuid: ecc5e054-dd12-4973-ac05-97ed170b134c +- `table-column-header-row-bottom-to-text-medium` + - uuid: c5040d29-5591-4793-847d-0d7123fd1bb8 +- `table-column-header-row-bottom-to-text-large` + - uuid: cde1eaa9-2146-45fb-b8f6-edfb7ec9cec1 +- `table-column-header-row-bottom-to-text-extra-large` + - uuid: 046321fc-4bc1-4485-94c3-9a674f30f3d1 +- `table-row-height-small-regular` + - uuid: 2fdb0923-5abb-4790-a8b0-0667ac31c21f +- `table-row-height-medium-regular` + - uuid: e5b206df-476c-4446-ac7b-33a09d199b4e +- `table-row-height-large-regular` + - uuid: d736c3fc-f065-4bea-a4a1-9ae94542d919 +- `table-row-height-extra-large-regular` + - uuid: 71e3db99-d203-4a8f-afe9-f6d278cd2ddf +- `table-row-height-small-spacious` + - uuid: 537269dd-f836-402f-8c13-b2c91788f9b5 +- `table-row-height-medium-spacious` + - uuid: 910487af-814b-4c43-9f7e-4002ff213aa1 +- `table-row-height-large-spacious` + - uuid: 1d741845-48e9-4e5c-b586-a89b8e4bb1f2 +- `table-row-height-extra-large-spacious` + - uuid: 20d8ac93-5c81-4d55-bab6-aa2fb0d22a21 +- `table-row-top-to-text-small-regular` + - uuid: 06fec8c1-0345-4130-befd-723a5cc18a7e +- `table-row-top-to-text-medium-regular` + - uuid: d80c3254-92ef-4c3d-ad68-3063a8f904f9 +- `table-row-top-to-text-large-regular` + - uuid: 55ffc07c-59e6-467f-90bd-6e891bb4f260 +- `table-row-top-to-text-extra-large-regular` + - uuid: 8ff56511-a776-495a-a8ac-41f565afa951 +- `table-row-bottom-to-text-small-regular` + - uuid: 1bb628a1-b1e1-436a-93b7-51627275e82b +- `table-row-bottom-to-text-medium-regular` + - uuid: 67ccae46-0ae7-4992-ad31-23f148d71702 +- `table-row-bottom-to-text-large-regular` + - uuid: 12859ac5-346f-464a-afe6-626667d92a8e +- `table-row-bottom-to-text-extra-large-regular` + - uuid: 75c1e663-5576-4c04-a9ce-9bfeb8603ee0 +- `table-row-top-to-text-small-spacious` + - uuid: cb5025d7-86f5-4608-83b1-2e38774450e0 +- `table-row-top-to-text-medium-spacious` + - uuid: e82e7cd2-161b-4a82-968a-bc80ad68232f +- `table-row-top-to-text-large-spacious` + - uuid: 5a5e6db9-7fdf-4883-a306-59df7c8fe461 +- `table-row-top-to-text-extra-large-spacious` + - uuid: 5d5fdc5d-125b-40ea-805d-c4e6557c386c +- `table-row-bottom-to-text-small-spacious` + - uuid: ece055b7-1adf-4361-9f45-b4c2fc3ffa7c +- `table-row-bottom-to-text-medium-spacious` + - uuid: 8daea87d-dc45-49c4-a1a4-2b25352b6803 +- `table-row-bottom-to-text-large-spacious` + - uuid: 6b14dcce-9726-46e0-b524-57031ae5e2ff +- `table-row-bottom-to-text-extra-large-spacious` + - uuid: ad376a29-0880-4248-83ba-6ca7a879d656 +- `table-checkbox-to-text` + - uuid: 067aa068-db38-411f-87ad-760dd6dcdb07 +- `table-header-row-checkbox-to-top-small` + - uuid: 54338737-e05a-44dc-a2d6-d6bb83ec8165 +- `table-header-row-checkbox-to-top-medium` + - uuid: d9045503-b75d-4a5f-90b5-d3eddd119649 +- `table-header-row-checkbox-to-top-large` + - uuid: 6f957e77-84ea-4e0b-882a-c943cb148bb9 +- `table-header-row-checkbox-to-top-extra-large` + - uuid: fe8df7cb-9796-47fb-ac1c-c98173781049 +- `table-row-checkbox-to-top-small-compact` + - uuid: 4058d0b0-ef8a-4e58-b7ed-e2c5444e91c0 +- `table-row-checkbox-to-top-small-regular` + - uuid: 4563310d-c53b-4b39-b5d2-62cbfe5356d9 +- `table-row-checkbox-to-top-small-spacious` + - uuid: f383d370-a44b-458a-8bd0-4c81eb950354 +- `table-row-checkbox-to-top-medium-compact` + - uuid: 68f1090f-9c50-4537-87a4-7a27756c977a +- `table-row-checkbox-to-top-medium-regular` + - uuid: e0871753-cee6-4b06-8ca9-faa5348a38ee +- `table-row-checkbox-to-top-medium-spacious` + - uuid: 3a1bedbe-d6de-4d9e-bc1f-2389dce615c9 +- `table-row-checkbox-to-top-large-compact` + - uuid: a373d470-cce5-4222-9cdb-3b570018870b +- `table-row-checkbox-to-top-large-regular` + - uuid: 3d78defe-7854-4ee6-b6d6-81ac8f6d8854 +- `table-row-checkbox-to-top-large-spacious` + - uuid: 0360a0ce-7b68-4aca-84e5-916773dc6785 +- `table-row-checkbox-to-top-extra-large-compact` + - uuid: 494f8ddd-dda5-4ce1-9df4-77992f55db28 +- `table-row-checkbox-to-top-extra-large-regular` + - uuid: 09aa25e6-1844-45c7-b581-574e21e8c7fd +- `table-row-checkbox-to-top-extra-large-spacious` + - uuid: 69b2f2e6-e886-4f13-bbb1-6f0a44ca1296 +- `table-section-header-row-height-small` + - uuid: 3f58f0b4-9a45-40c4-b6db-5771fb713690 +- `table-section-header-row-height-medium` + - uuid: 15e952af-a5c8-465c-b260-ae3e1c074fa7 +- `table-section-header-row-height-large` + - uuid: 35b369fa-8877-4216-b5b6-a4d9100351a4 +- `table-section-header-row-height-extra-large` + - uuid: 7155693f-4281-47ad-b02c-d8084756590f +- `table-thumbnail-to-top-minimum-small-compact` + - uuid: cae9f1fb-d746-41bc-89ba-58d2aeed2bb8 +- `table-thumbnail-to-top-minimum-medium-compact` + - uuid: 23f99b75-e5a0-4f28-bffc-77c9c3011da9 +- `table-thumbnail-to-top-minimum-large-compact` + - uuid: 54d5a37b-0edf-4f32-9ad1-794ffaea774b +- `table-thumbnail-to-top-minimum-extra-large-compact` + - uuid: d01f46c2-825e-42d4-a1cd-e0f8237833a8 +- `table-thumbnail-to-top-minimum-small-regular` + - uuid: 0df6024f-a4e7-4705-8640-1b561982b514 +- `table-thumbnail-to-top-minimum-medium-regular` + - uuid: bfa8f410-1d96-4262-bbc0-11b0829e2b17 +- `table-thumbnail-to-top-minimum-large-regular` + - uuid: 237eb135-271c-4235-a5b9-a3a697fccf96 +- `table-thumbnail-to-top-minimum-extra-large-regular` + - uuid: e9a7b195-264b-44ba-b45a-b80b420139bf +- `table-thumbnail-to-top-minimum-small-spacious` + - uuid: 210ec248-99f8-4969-a487-0e25140c9431 +- `table-thumbnail-to-top-minimum-medium-spacious` + - uuid: 2c9a1114-c7d0-4aeb-bd08-61645357d882 +- `table-thumbnail-to-top-minimum-large-spacious` + - uuid: 43917cdf-4e06-47a2-935c-47cd42a26349 +- `table-thumbnail-to-top-minimum-extra-large-spacious` + - uuid: 8b294228-b51e-4b2a-b577-4f328170f072 +- `tab-item-to-tab-item-horizontal-small` + - uuid: bc5ff4f1-ac72-47e1-8423-9f8835043c71 +- `tab-item-to-tab-item-horizontal-medium` + - uuid: ba8f899f-fa40-4295-92bb-a46d62d891c6 +- `tab-item-to-tab-item-horizontal-large` + - uuid: 136e9e3b-104d-42a7-9ff3-9a81b82a224f +- `tab-item-to-tab-item-horizontal-extra-large` + - uuid: c1bdb5e6-754c-4846-9fb4-f9e748ab47eb +- `tab-item-to-tab-item-vertical-small` + - uuid: 26f918df-58db-4c93-b384-24f4eb5787c7 +- `tab-item-to-tab-item-vertical-medium` + - uuid: f38a8014-9b74-4c18-97b8-a3552b08ba2c +- `tab-item-to-tab-item-vertical-large` + - uuid: 76eca7ae-ce9a-4ce2-8efd-b73f76f03f05 +- `tab-item-to-tab-item-vertical-extra-large` + - uuid: b21c35fc-16d6-4356-941b-dc8eb533d524 +- `tab-item-start-to-edge-small` + - uuid: 4c91d4af-7738-41ae-884b-f51b96f0277d +- `tab-item-start-to-edge-medium` + - uuid: 854c8fee-224a-4fca-aeb1-c770faf5ba22 +- `tab-item-start-to-edge-large` + - uuid: 31935ef9-f6f2-45f0-b2dc-8fb0a105d243 +- `tab-item-start-to-edge-extra-large` + - uuid: 98e8e273-af5b-413a-a69e-3f7555275ff8 +- `tab-item-top-to-text-small` + - uuid: f5774cb8-13a1-4473-a48e-ad31031c6633 +- `tab-item-bottom-to-text-small` + - uuid: 9fc2a1ef-aadd-4e70-9fda-0b1a4c5e34ef +- `tab-item-top-to-text-medium` + - uuid: 76b24ca3-192e-4f08-861d-a85bfaf5785e +- `tab-item-bottom-to-text-medium` + - uuid: 440bf748-a58c-46d0-b8b8-9a19e9ee5924 +- `tab-item-top-to-text-large` + - uuid: 90e17fcf-a054-4aab-828a-bc6a21ab17ca +- `tab-item-bottom-to-text-large` + - uuid: 13aa806b-c355-452d-9f9b-c8333a382004 +- `tab-item-top-to-text-extra-large` + - uuid: 073cc280-e128-49ec-b2d4-372302b1a8a3 +- `tab-item-bottom-to-text-extra-large` + - uuid: 22c953eb-cfd6-469a-b175-3d08edca39e9 +- `tab-item-top-to-text-compact-small` + - uuid: 5a89fcc8-eb6d-49e0-bf9a-50dd94c2e7b9 +- `tab-item-bottom-to-text-compact-small` + - uuid: 44fbab39-742f-47ec-8135-b216b7302f1f +- `tab-item-top-to-text-compact-medium` + - uuid: 0500b8b8-0ccb-469f-aff4-e2a0de12c30d +- `tab-item-bottom-to-text-compact-medium` + - uuid: 95b1b803-d8d8-4b6d-8cf1-95cd0031acb9 +- `tab-item-top-to-text-compact-large` + - uuid: 3e5acee9-a5c2-4f95-9588-bd11c42a943c +- `tab-item-bottom-to-text-compact-large` + - uuid: b03a5d23-f5d5-44d0-9228-3dc0aad65db5 +- `tab-item-top-to-text-compact-extra-large` + - uuid: 160a6ac0-ee42-4d75-85db-f5e80c8dacc4 +- `tab-item-bottom-to-text-compact-extra-large` + - uuid: 4b84c709-39e5-4a23-b1eb-d816e3d14ac7 +- `tab-item-top-to-workflow-icon-small` + - uuid: 6e4ff6be-da6e-48ca-bb60-99825f5c0f7e +- `tab-item-top-to-workflow-icon-medium` + - uuid: 30fd4757-40b5-4e1d-8f56-d544a730f7e1 +- `tab-item-top-to-workflow-icon-large` + - uuid: ad9470a2-2e7e-4141-a6fb-8bd83adeea4b +- `tab-item-top-to-workflow-icon-extra-large` + - uuid: 2be3d88a-12d9-439a-bccc-c4ec1e15bb2e +- `tab-item-top-to-workflow-icon-compact-small` + - uuid: 7e860824-a86c-46a8-b274-20e3eb477a06 +- `tab-item-top-to-workflow-icon-compact-medium` + - uuid: ffe8f0c4-10ca-4ce3-b2e7-9b247041d641 +- `tab-item-top-to-workflow-icon-compact-large` + - uuid: 11bb3829-22fa-4b5b-a59c-b66be83711d0 +- `tab-item-top-to-workflow-icon-compact-extra-large` + - uuid: 3d9343a7-3027-4827-b42b-6068016bddf8 +- `tab-item-focus-indicator-gap-small` + - uuid: ef063e8e-7195-4364-bf75-768d2511949d +- `tab-item-focus-indicator-gap-medium` + - uuid: 112a9064-c13c-4f0f-b380-2b477f9c8e15 +- `tab-item-focus-indicator-gap-large` + - uuid: f65bf525-647b-4e29-b0d1-8890511683f8 +- `tab-item-focus-indicator-gap-extra-large` + - uuid: fec20eb3-b977-442f-92d5-51ab0b4967c9 +- `side-navigation-width` + - uuid: eb372bca-78b4-48fa-9ff3-887a7f3c72f8 +- `side-navigation-minimum-width` + - uuid: 51f92ad9-076e-4a1e-a489-ac53cc36f038 +- `side-navigation-maximum-width` + - uuid: d40a2a35-1b20-4be9-afd7-8cfb701faf73 +- `side-navigation-second-level-edge-to-text` + - uuid: 27097ca6-f105-41cb-822f-5d48e3ea19d6 +- `side-navigation-third-level-edge-to-text` + - uuid: 8803e38f-c87b-4c5c-8ae5-c8cbcd5ac6ff +- `side-navigation-with-icon-second-level-edge-to-text` + - uuid: 6a179e98-012f-449f-97a5-dd9e3532b8a5 +- `side-navigation-with-icon-third-level-edge-to-text` + - uuid: be255625-c2d5-4d63-9823-c1b82c2123f7 +- `side-navigation-item-to-item` + - uuid: 6d798f26-dbfa-4c26-9d27-4f3b05f33cc4 +- `side-navigation-item-to-header` + - uuid: 1ceea2e6-fb64-423c-95a7-4406cc6ce849 +- `side-navigation-header-to-item` + - uuid: 52645387-83e9-46d4-8d7f-4a4533ee5179 +- `side-navigation-bottom-to-text` + - uuid: 0727c8a6-d58d-41e8-8bdc-3a98ff811200 +- `tray-top-to-content-area` + - uuid: f1641c53-fc37-4eeb-ac30-3c5131ed0233 +- `in-field-button-fill-stacked-inner-border-rounding` + - spectrum.schema: dimension.json + - spectrum.value: 0px + - spectrum.uuid: f8ed9a70-58f1-4f1a-9e87-24bca6d7b4e1 + - express.schema: dimension.json + - express.value: 1px + - express.uuid: 5a3e434f-f915-4a72-985b-04af51c3ad7e +- `in-field-button-edge-to-fill` + - spectrum.schema: dimension.json + - spectrum.value: 0px + - spectrum.uuid: 5bffe992-2982-49e8-aa3a-e4e93c884f43 + - express.schema: dimension.json + - express.value: 4px + - express.uuid: 670a4fef-5e16-4db6-8acd-b747cc783312 +- `in-field-button-stacked-inner-edge-to-fill` + - spectrum.schema: dimension.json + - spectrum.value: 0px + - spectrum.uuid: 56b54ece-0ff3-4957-9c1c-9e7fb992653c + - express.schema: dimension.json + - express.value: 1px + - express.uuid: c1aa585e-769d-40d6-a42d-c9d602124870 +- `in-field-button-outer-edge-to-disclosure-icon-stacked-medium` + - spectrum.schema: dimension.json + - spectrum.value: 3px + - spectrum.uuid: a87d68bb-4249-43cd-947d-bd061baba0ef + - express.schema: dimension.json + - express.value: 5px + - express.uuid: b942ec2c-f70f-4948-8ff5-0bd471cd4f0a +- `in-field-button-outer-edge-to-disclosure-icon-stacked-large` + - spectrum.schema: dimension.json + - spectrum.value: 4px + - spectrum.uuid: acc9c48a-f461-48ff-9f69-0224c4feabc6 + - express.schema: dimension.json + - express.value: 7px + - express.uuid: 345002c5-88fc-4297-aa91-54ed292265b8 +- `in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large` + - spectrum.schema: dimension.json + - spectrum.value: 5px + - spectrum.uuid: 391e1e67-1677-4f60-a09a-3b49bacd01f5 + - express.schema: dimension.json + - express.value: 8px + - express.uuid: 33e443d8-3e31-4f17-ab37-61beebaa9d40 +- `in-field-button-inner-edge-to-disclosure-icon-stacked-small` + - spectrum.schema: alias.json + - spectrum.value: in-field-button-outer-edge-to-disclosure-icon-stacked-small + - spectrum.uuid: 6c1330a4-1c89-45a7-b2b1-8cbcaf20b9ab + - express.schema: dimension.json + - express.value: 1px + - express.uuid: ec74220b-c091-4b29-8e43-9d3f0e163820 +- `in-field-button-inner-edge-to-disclosure-icon-stacked-medium` + - spectrum.schema: alias.json + - spectrum.value: in-field-button-outer-edge-to-disclosure-icon-stacked-medium + - spectrum.uuid: 3dd5babb-5026-4f28-89ae-bfe687673f31 + - express.schema: dimension.json + - express.value: 1px + - express.uuid: 5bddcd79-3829-4764-853a-b83512b5820d +- `in-field-button-inner-edge-to-disclosure-icon-stacked-large` + - spectrum.schema: alias.json + - spectrum.value: in-field-button-outer-edge-to-disclosure-icon-stacked-large + - spectrum.uuid: 710ebe58-f0d8-4d6b-8974-0be1f2f48dc4 + - express.schema: dimension.json + - express.value: 3px + - express.uuid: 7135afd9-ef05-4909-8b3e-eeae3d527bd0 +- `in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large` + - spectrum.schema: alias.json + - spectrum.value: in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large + - spectrum.uuid: c47499c1-b89f-49a7-bbb5-17e83e4b306e + - express.schema: dimension.json + - express.value: 4px + - express.uuid: 979542c9-2328-495c-8abf-cb226b140f82 +- `accordion-top-to-text-spacious-small` + - uuid: bdf7a208-dbfa-4a66-9138-baec261d2908 +- `body-cjk-size-xxxl` + - component: body +- `body-cjk-size-xxl` + - component: body +- `body-cjk-size-xl` + - component: body +- `body-cjk-size-l` + - component: body +- `body-cjk-size-m` + - component: body +- `body-cjk-size-s` + - component: body +- `body-cjk-size-xs` + - component: body +- `icon-color-blue-primary-default` + - darkest.schema: alias.json + - darkest.value: blue-800 + - darkest.uuid: 1bac9a3f-4bc8-4a4d-8dfd-53c542b1d1d8 + - uuid: a52ced5f-2e8d-4ab9-bddb-fbbf32860256 +- `icon-color-green-primary-default` + - light.schema: alias.json + - light.value: green-900 + - light.uuid: a0717159-cc62-4ba1-b1f1-a69dfb88c6ee + - dark.schema: alias.json + - dark.value: green-800 + - dark.uuid: ce9c0ea4-0c5a-4d3b-974f-1b9acf27b3fd + - darkest.schema: alias.json + - darkest.value: green-800 + - darkest.uuid: 260ff567-2bdb-48cc-9576-f4f7629d3a8f + - wireframe.schema: alias.json + - wireframe.value: green-900 + - wireframe.uuid: d6852796-baaa-4f95-9ce7-cc2fd5a829f1 +- `icon-color-red-primary-default` + - darkest.schema: alias.json + - darkest.value: red-700 + - darkest.uuid: a60f2744-ad15-4cf7-b9dc-89ca307ed444 + - uuid: 5b809bc6-8ac3-4ec1-a7bb-b88863b1905b +- `icon-color-yellow-primary-default` + - darkest.schema: alias.json + - darkest.value: yellow-1000 + - darkest.uuid: 5ebf8291-23f8-4806-865d-4ebab38ff03c + - uuid: 52b34bcf-a2dc-41a4-855c-0a786a234d5d +- `workflow-icon-size-50` + - component: icon + - uuid: 1e2f7368-9813-4cda-aa32-a2d0bc03f41c +- `workflow-icon-size-75` + - component: icon + - uuid: b2effa58-727a-4a52-8680-296b0f83f0aa +- `workflow-icon-size-100` + - component: icon + - uuid: 1ac9ea9c-59ab-41f7-966e-f1b5c290e4a1 +- `workflow-icon-size-200` + - component: icon + - uuid: e8863648-66c4-4ffa-8aa2-53f91ca331c7 +- `workflow-icon-size-300` + - component: icon + - uuid: 7d699674-dab8-4f5b-a022-51dc67b7fc45 +- `arrow-icon-size-75` + - uuid: ec025bb5-a58e-486b-98f5-c8c2fde55a0a +- `arrow-icon-size-100` + - uuid: 2c9e49ab-e572-4ed5-90d0-5213dff5fec6 +- `arrow-icon-size-200` + - uuid: a18e9723-eb3b-470c-82d8-b3544bf587d7 +- `arrow-icon-size-300` + - uuid: fd4b3d4e-a9e9-4448-881a-9bd7fcda991a +- `arrow-icon-size-400` + - uuid: 9101e9df-cc20-44b1-b183-8d9ac7146f0d +- `arrow-icon-size-500` + - uuid: b86d209f-21d1-4c61-9c89-010b676f8389 +- `arrow-icon-size-600` + - uuid: ac841dee-47e8-47f3-b2b2-add8b4333eba +- `asterisk-icon-size-100` + - uuid: bcd47b11-a4b1-4b1b-a082-36c3554d0eef +- `asterisk-icon-size-200` + - uuid: 8e6912ef-2ee2-4048-85e7-c758f2d0cced +- `asterisk-icon-size-300` + - uuid: 65b34b9b-ddfa-4cbd-bfb4-56bcc60eca86 +- `checkmark-icon-size-50` + - uuid: 968c7096-a064-444f-a449-6388bef7b74b +- `checkmark-icon-size-75` + - uuid: 15df2603-7450-461b-b042-c952a90f65e5 +- `checkmark-icon-size-100` + - uuid: 9203c333-afaf-484d-8f4a-d26e6d88e70a +- `checkmark-icon-size-200` + - uuid: c81d8bc2-63b7-4416-9451-0d6030d10c56 +- `checkmark-icon-size-300` + - uuid: e05fceb5-a187-465f-951b-c39d047603ca +- `checkmark-icon-size-400` + - uuid: 8e9669a7-42aa-4f03-a7fd-39fb0a0cdc74 +- `checkmark-icon-size-500` + - uuid: 43df0124-93a2-4014-934f-2919b4849ec1 +- `checkmark-icon-size-600` + - uuid: c4a6e802-723f-4198-80a3-0c70ae5c8a8c +- `chevron-icon-size-50` + - uuid: 40f343b7-daf4-499e-8183-0140eb5bcedd +- `chevron-icon-size-75` + - uuid: c53d444c-71c2-4b59-81ee-b2e0af7911c6 +- `chevron-icon-size-100` + - uuid: f3f0a237-be83-48c7-9048-6e63b164d456 +- `chevron-icon-size-200` + - uuid: 34006e8c-3325-43cd-b1d6-b338b6237956 +- `chevron-icon-size-300` + - uuid: e00b08d9-9137-4f4b-9387-51ec17b391d3 +- `chevron-icon-size-400` + - uuid: c8b087cf-ad51-4d46-9dfe-ac2617942edd +- `chevron-icon-size-500` + - uuid: c39f4b1b-967f-463f-880a-f6ba523fbcf3 +- `chevron-icon-size-600` + - uuid: 5221f3ca-cc93-4b2e-ab74-35da255866ca +- `corner-triangle-icon-size-75` + - component: icon + - uuid: bed0e624-9aa1-403a-b1cc-74c6afb84647 +- `corner-triangle-icon-size-100` + - component: icon + - uuid: 1c3e00ad-6915-470a-b34a-853c88844cbc +- `corner-triangle-icon-size-200` + - component: icon + - uuid: 0ff629b0-fcb9-4aee-9cde-68df68825de9 +- `corner-triangle-icon-size-300` + - component: icon + - uuid: 09f106e8-600f-4868-984a-61e3b65a735e +- `cross-icon-size-75` + - uuid: e426da6e-cf18-4f5d-8ba1-218f3ec51973 +- `cross-icon-size-100` + - uuid: 4d4a0ad7-d306-44fd-9492-0b30e62eca8c +- `cross-icon-size-200` + - uuid: b5324225-dbca-4fb7-a2d7-48b200c99f58 +- `cross-icon-size-300` + - uuid: 40c2d521-24a5-401a-8166-eb6f6635f46d +- `cross-icon-size-400` + - uuid: eac365fd-a811-47ab-9838-79b12db6d2b5 +- `cross-icon-size-500` + - uuid: b2eff754-cfc5-4247-91b7-2f569c0114dd +- `cross-icon-size-600` + - uuid: 12fbc1b3-926f-419e-99f7-e42c7872c129 +- `dash-icon-size-50` + - uuid: f2859e6e-1d89-4b64-8d4d-dcfb11445164 +- `dash-icon-size-75` + - uuid: 0faea762-5ba2-4cd7-903c-776daa0cba6c +- `dash-icon-size-100` + - uuid: 235518f5-3ded-4eaa-82e9-881cc76d2d02 +- `dash-icon-size-200` + - uuid: 45c3cf40-7250-4f8a-b25c-43550025fe8b +- `dash-icon-size-300` + - uuid: 0296d5a8-5022-43e0-91f4-465a174c0e33 +- `dash-icon-size-400` + - uuid: 1967fd56-e60c-4994-ad5a-d84dc0f9c58f +- `dash-icon-size-500` + - uuid: 5ae4eccd-7555-40c5-a59f-b17964d949ff +- `dash-icon-size-600` + - uuid: dc69f825-b868-4533-8ecc-1c17b4326f82 +- `gray-50` + - darkest.schema: color.json + - darkest.value: rgb(0, 0, 0) + - darkest.uuid: 0913be1e-b648-4b80-9976-fd8e5e53f4fc + - uuid: f668a787-a8e4-4d8f-861b-1ff7bd128793 +- `gray-75` + - darkest.schema: color.json + - darkest.value: rgb(14, 14, 14) + - darkest.uuid: 1666d544-ad1b-445a-9a57-d2277fb752eb + - uuid: a8999689-c198-4d38-bbff-57fc217e7922 +- `gray-100` + - darkest.schema: color.json + - darkest.value: rgb(29, 29, 29) + - darkest.uuid: abd011c4-87a5-4b1f-82e2-e94d118f417f + - uuid: 55a0effe-1758-4b2f-908c-d36e460880b8 +- `gray-200` + - darkest.schema: color.json + - darkest.value: rgb(48, 48, 48) + - darkest.uuid: 0a676e7a-8a89-4607-a918-3abcfb0234a2 + - uuid: 067d4f1e-c9cb-42f4-a108-cb5ded87f014 +- `gray-300` + - darkest.schema: color.json + - darkest.value: rgb(75, 75, 75) + - darkest.uuid: cc8c4299-c40d-4e93-80b2-c052ee8aaf40 + - uuid: 87708b3e-3407-4fb2-adc3-a8a1127a82b1 +- `gray-400` + - darkest.schema: color.json + - darkest.value: rgb(106, 106, 106) + - darkest.uuid: c34dd99f-e576-4c98-a89d-86dd47514c55 + - uuid: a3d15bb5-3d17-4d5b-b7a6-f0b3b9d6bead +- `gray-500` + - darkest.schema: color.json + - darkest.value: rgb(141, 141, 141) + - darkest.uuid: 05808575-f14b-49d1-aefb-e3667ec0f5a4 + - uuid: f413727c-d46a-4d66-a8a3-4b2dccd6efd8 +- `gray-600` + - darkest.schema: color.json + - darkest.value: rgb(176, 176, 176) + - darkest.uuid: 8880b8f1-7850-49ef-a7ab-fd4e16cb37a6 + - uuid: 089feb70-0076-4745-ad5b-6edd6961caf6 +- `gray-700` + - darkest.schema: color.json + - darkest.value: rgb(208, 208, 208) + - darkest.uuid: 3cc563c6-386e-4b08-850d-68d4a292e559 + - uuid: e8af5fd3-3237-483a-bca2-79c3e19c8cef +- `gray-800` + - darkest.schema: color.json + - darkest.value: rgb(235, 235, 235) + - darkest.uuid: d39fc368-ec71-40cd-85e9-afb07862f2b7 + - uuid: 5a77ca5d-b4b4-4ca9-bceb-b5fcd4a84edd +- `gray-900` + - darkest.schema: color.json + - darkest.value: rgb(255, 255, 255) + - darkest.uuid: 90d25d68-afb1-4b2a-9dba-3fe22d44976f + - uuid: 78316eb8-0e0f-411a-8ff0-496e24d0c9b5 +- `blue-100` + - darkest.schema: color.json + - darkest.value: rgb(0, 38, 81) + - darkest.uuid: 7d56ac58-fd58-41b3-9bbd-448ae0a7dd85 + - uuid: 64f3815b-e429-43f6-8a1c-4049f0f1722d +- `blue-200` + - darkest.schema: color.json + - darkest.value: rgb(0, 50, 106) + - darkest.uuid: 7b7d1fd8-cc1e-4053-b320-e481b8f64c46 + - uuid: 7e952162-5ef5-45d4-ae14-ebef50162185 +- `blue-300` + - darkest.schema: color.json + - darkest.value: rgb(0, 64, 135) + - darkest.uuid: d88d1685-29dc-486b-a0b9-9c90f60b8cde + - uuid: 3413a337-7b3c-4200-8423-42954df37461 +- `blue-400` + - darkest.schema: color.json + - darkest.value: rgb(0, 78, 166) + - darkest.uuid: 29d339bb-ef80-40f8-a69b-afa778b60805 + - uuid: 7c9368b4-a2ac-490f-95a4-c2d506a2f064 +- `blue-500` + - darkest.schema: color.json + - darkest.value: rgb(0, 92, 200) + - darkest.uuid: a61ed901-7f77-4667-9d19-fff6bab20623 + - uuid: 30ba29dc-5f28-47c7-b41f-2156c8943040 +- `blue-600` + - darkest.schema: color.json + - darkest.value: rgb(6, 108, 231) + - darkest.uuid: 7e770996-780a-4494-91ea-08c1ae6cfa80 + - uuid: fbd8fd2c-91bc-4531-86cc-cc71aba419d2 +- `blue-700` + - darkest.schema: color.json + - darkest.value: rgb(29, 128, 245) + - darkest.uuid: 5cc66280-e13a-459d-8529-c3f531aa5e4e + - uuid: 003abb20-2cf8-4c48-ae35-bdff79ae6a02 +- `blue-800` + - darkest.schema: color.json + - darkest.value: rgb(64, 150, 243) + - darkest.uuid: cf0bafc5-f5c6-4986-a17a-6660dc542b71 + - uuid: 1473440e-654c-4475-81da-7e7e296ddebc +- `blue-900` + - darkest.schema: color.json + - darkest.value: rgb(94, 170, 247) + - darkest.uuid: 82b09b04-6a70-4a95-9eb5-a321a66a6465 + - uuid: e6b19f4c-0cc5-49cb-ac33-a7327b488d72 +- `blue-1000` + - darkest.schema: color.json + - darkest.value: rgb(124, 189, 250) + - darkest.uuid: 147ed079-b4f0-4cd7-89cd-7ec93750d688 + - uuid: 14fc0f42-79ab-4637-b6f6-921c857a3f13 +- `blue-1100` + - darkest.schema: color.json + - darkest.value: rgb(152, 206, 253) + - darkest.uuid: 2a5d2e32-930d-4c50-b1fd-6781a1dc1db5 + - uuid: d7935092-948a-4b48-be57-5ddf286cd351 +- `blue-1200` + - darkest.schema: color.json + - darkest.value: rgb(179, 222, 254) + - darkest.uuid: ce7da4ba-77ed-4bdd-a154-90f389af6c2a + - uuid: 3879055d-bec5-4f5c-a0e0-0380fbdb4951 +- `blue-1300` + - darkest.schema: color.json + - darkest.value: rgb(206, 234, 255) + - darkest.uuid: 2bc63c0d-691c-4cc4-95b6-b4e530a44978 + - uuid: e77e1e22-2ca0-4407-80ce-128a26d89f4d +- `blue-1400` + - darkest.schema: color.json + - darkest.value: rgb(227, 243, 255) + - darkest.uuid: eb86d777-ec23-47e4-adc6-1203709dc00d + - uuid: d79a2f66-b8e2-42ed-a886-8e3c44e9602f +- `red-100` + - darkest.schema: color.json + - darkest.value: rgb(87, 0, 0) + - darkest.uuid: 04f6044b-d0fa-4705-858c-2dc5721ec30f + - uuid: 63b6ddb1-97f3-47eb-863b-c101d55591d6 +- `red-200` + - darkest.schema: color.json + - darkest.value: rgb(110, 0, 0) + - darkest.uuid: b18ca77b-898e-4e09-88e2-8901de3e9172 + - uuid: 31028ec2-bbf8-4236-a420-94c9912f8049 +- `red-300` + - darkest.schema: color.json + - darkest.value: rgb(138, 0, 0) + - darkest.uuid: fcfcf026-be31-4a05-b833-6757cacb8b05 + - uuid: d70696c6-3143-423f-85c7-1b6514eac5af +- `red-400` + - darkest.schema: color.json + - darkest.value: rgb(167, 0, 0) + - darkest.uuid: 8f9fa135-5aca-4e42-b247-fdfbf74bc07b + - uuid: 0a243ca7-4175-42f5-bc07-c9b19f938dda +- `red-500` + - darkest.schema: color.json + - darkest.value: rgb(196, 7, 6) + - darkest.uuid: ec50a21c-88aa-41a8-b607-c8b1c407ac4f + - uuid: 6a43e349-9df3-4f24-bebf-9c1c758839df +- `red-600` + - darkest.schema: color.json + - darkest.value: rgb(221, 33, 24) + - darkest.uuid: ff0fa040-17d6-4570-84b5-7a88c5bb9f45 + - uuid: 00fcc1d7-499a-460a-8c15-238e7a558dc2 +- `red-700` + - darkest.schema: color.json + - darkest.value: rgb(238, 67, 49) + - darkest.uuid: cb2486de-b2be-45e5-b459-6e371b29d357 + - uuid: 0e90c785-081e-4116-9c31-f045cddb4e36 +- `red-800` + - darkest.schema: color.json + - darkest.value: rgb(249, 99, 76) + - darkest.uuid: 9ff36ad0-608e-46a7-ab56-00af3d307d83 + - uuid: 5fd887b0-a9c5-4e5a-a7fe-194ab7bc920b +- `red-900` + - darkest.schema: color.json + - darkest.value: rgb(255, 129, 107) + - darkest.uuid: ccb79099-59f4-4bf2-b149-0de72f556a45 + - uuid: 5666d2b9-014c-43af-93f3-7f8583ad9818 +- `red-1000` + - darkest.schema: color.json + - darkest.value: rgb(255, 158, 140) + - darkest.uuid: 95621c5a-1768-4707-a2ce-bd15c61c89f4 + - uuid: 9f512db1-5b41-47d9-a4a9-1f3d0748b1f5 +- `red-1100` + - darkest.schema: color.json + - darkest.value: rgb(255, 183, 169) + - darkest.uuid: 53617d38-1075-4b47-87c7-4695b385a2d7 + - uuid: d1af4f1a-2e93-4f79-bec7-1a406155b376 +- `red-1200` + - darkest.schema: color.json + - darkest.value: rgb(255, 205, 195) + - darkest.uuid: e7820c1c-ff58-431d-b521-b81ee3281db0 + - uuid: c44f2505-e3fe-4bc7-87ba-7a2260510a1e +- `red-1300` + - darkest.schema: color.json + - darkest.value: rgb(255, 223, 217) + - darkest.uuid: 7691bca6-3749-4cb7-a950-a94fe3d2910f + - uuid: f89b3056-071e-4fc4-aec6-562c5d51d030 +- `red-1400` + - darkest.schema: color.json + - darkest.value: rgb(255, 237, 234) + - darkest.uuid: aaafa24c-cb3c-48cd-9cb7-e164be140ab5 + - uuid: b4e9ab89-23c0-41cf-aad5-cf2f2e47e5b7 +- `orange-100` + - darkest.schema: color.json + - darkest.value: rgb(72, 24, 1) + - darkest.uuid: 974ab8ec-6691-4696-b38c-77e16fb3df88 + - uuid: 784a858d-b646-41d6-9a3f-95d849ec14eb +- `orange-200` + - darkest.schema: color.json + - darkest.value: rgb(92, 32, 0) + - darkest.uuid: 587d4ce3-4275-4d2a-916c-2b1bf78c38ea + - uuid: 78415dd1-bbc2-4617-ad02-d56b1b76c73c +- `orange-300` + - darkest.schema: color.json + - darkest.value: rgb(115, 43, 0) + - darkest.uuid: 74f40bbb-5afd-4c88-89d3-e69de9e2b604 + - uuid: 22a43dda-14cb-41ba-8e53-cc4de56197eb +- `orange-400` + - darkest.schema: color.json + - darkest.value: rgb(138, 55, 0) + - darkest.uuid: b912089a-b6c9-49ef-8a4b-0a1f6fbbe963 + - uuid: cfb5b180-7420-41db-896c-6873ba57edd0 +- `orange-500` + - darkest.schema: color.json + - darkest.value: rgb(162, 68, 0) + - darkest.uuid: 8a56b352-d7d4-45d4-b403-448557656dab + - uuid: f1eb78b7-92cd-4189-8e7c-9019318a04a7 +- `orange-600` + - darkest.schema: color.json + - darkest.value: rgb(186, 82, 0) + - darkest.uuid: 27b198b5-bf02-476a-a440-84c9a5bd2ce3 + - uuid: 5afdf7f9-54d8-4737-b176-38244d1ce584 +- `orange-700` + - darkest.schema: color.json + - darkest.value: rgb(210, 98, 0) + - darkest.uuid: f9e84513-57d6-4786-b8db-c86055cebfc6 + - uuid: c5651842-f13e-4498-9ce4-39ed84ef20ad +- `orange-800` + - darkest.schema: color.json + - darkest.value: rgb(232, 116, 0) + - darkest.uuid: 5a88ed4e-94f9-4533-ab13-3995b5a60a5a + - uuid: 7a6946d1-8048-4853-a550-3fd972fdb72d +- `orange-900` + - darkest.schema: color.json + - darkest.value: rgb(249, 137, 23) + - darkest.uuid: 0fbe4f46-02a8-444d-ace5-c245c6f15112 + - uuid: b742d374-2071-49df-96f1-49b299c21576 +- `orange-1000` + - darkest.schema: color.json + - darkest.value: rgb(255, 162, 59) + - darkest.uuid: 92e06ff6-8347-4320-9a98-3054ba458d0e + - uuid: c8fd1b70-72be-48b7-be8a-984436124058 +- `orange-1100` + - darkest.schema: color.json + - darkest.value: rgb(255, 188, 102) + - darkest.uuid: a571e2cd-2aff-4344-b608-45a48162cb61 + - uuid: b1213a46-91c5-43ff-a7a9-3fe96af0eb2e +- `orange-1200` + - darkest.schema: color.json + - darkest.value: rgb(253, 210, 145) + - darkest.uuid: 8e3fe8e0-2b14-4331-869f-de2680ea60ac + - uuid: a0d46435-9054-4cd0-a5c8-8bf28187fb6d +- `orange-1300` + - darkest.schema: color.json + - darkest.value: rgb(255, 226, 181) + - darkest.uuid: 06afaefe-7e0a-42e2-99b5-e62674e1185d + - uuid: fef49d65-c699-4ff9-8265-b2041c08b2be +- `orange-1400` + - darkest.schema: color.json + - darkest.value: rgb(255, 239, 213) + - darkest.uuid: 9f2f551f-b606-48ce-9493-888587d3ccb6 + - uuid: f7a380d3-111d-442f-8e78-1d7cce68a4c2 +- `yellow-100` + - darkest.schema: color.json + - darkest.value: rgb(53, 36, 0) + - darkest.uuid: 7bef094a-1523-4392-a0ca-59c48409f17a + - uuid: c2803c8b-9e53-44cc-8f9a-dd7209191e2f +- `yellow-200` + - darkest.schema: color.json + - darkest.value: rgb(68, 47, 0) + - darkest.uuid: f4fdc925-63b3-4670-9f2b-a057c27c834a + - uuid: b80b77ef-cbb2-4797-8bda-b67ff8330266 +- `yellow-300` + - darkest.schema: color.json + - darkest.value: rgb(86, 62, 0) + - darkest.uuid: 238147c6-0302-4d43-b3a3-42df832c7857 + - uuid: 58a5ecc2-e5c3-4597-a366-cfece993fd1c +- `yellow-400` + - darkest.schema: color.json + - darkest.value: rgb(103, 77, 0) + - darkest.uuid: 62ab6892-66ea-4b55-8c1a-fcc191d29717 + - uuid: 5211b5e1-262a-440b-900e-6417b7c071d3 +- `yellow-500` + - darkest.schema: color.json + - darkest.value: rgb(122, 92, 0) + - darkest.uuid: efa1fdd8-4478-411a-892c-0ecf23939489 + - uuid: 934f56c9-7533-4f7b-8843-6e0660e7fda2 +- `yellow-600` + - darkest.schema: color.json + - darkest.value: rgb(141, 108, 0) + - darkest.uuid: 8ae3c5ec-aabe-47a0-b822-ba0907e67ed4 + - uuid: 3fa9447b-781c-4964-b78e-9fc3f5d6c340 +- `yellow-700` + - darkest.schema: color.json + - darkest.value: rgb(161, 126, 0) + - darkest.uuid: ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359 + - uuid: 4a0220b0-9dd5-425d-b70d-3e4611052750 +- `yellow-800` + - darkest.schema: color.json + - darkest.value: rgb(180, 144, 0) + - darkest.uuid: 67e8d9aa-d843-4536-9c97-bd51e62da8ee + - uuid: c2faf691-90e9-4f40-8998-0222a97275ca +- `yellow-900` + - darkest.schema: color.json + - darkest.value: rgb(199, 162, 0) + - darkest.uuid: a12f6cac-7fdc-4fd4-8120-ad957823ff6b + - uuid: f2f9cb7f-4199-4e1f-bc6e-b04010685168 +- `yellow-1000` + - darkest.schema: color.json + - darkest.value: rgb(216, 181, 0) + - darkest.uuid: 4cf4a500-37a2-4dd8-a243-14f6c012b53c + - uuid: 91d01994-882d-42f0-b0a0-6f604b6ea8a6 +- `yellow-1100` + - darkest.schema: color.json + - darkest.value: rgb(233, 199, 0) + - darkest.uuid: 4eee9daf-e19d-4e0b-b12d-4fdcc4852956 + - uuid: 70cb2f4b-6bab-4456-a012-8367a77eb7e8 +- `yellow-1200` + - darkest.schema: color.json + - darkest.value: rgb(247, 216, 4) + - darkest.uuid: 69059dfa-e2e1-4f8d-b06b-058a8724e071 + - uuid: 00a1fbb6-cd56-4ab8-bf94-b2745ddc39b9 +- `yellow-1300` + - darkest.schema: color.json + - darkest.value: rgb(249, 233, 97) + - darkest.uuid: b2a1039c-cbfe-44bf-a0fe-822c5f576f52 + - uuid: cf7a2ece-3af0-4aab-a962-f67f8cc5bab6 +- `yellow-1400` + - darkest.schema: color.json + - darkest.value: rgb(252, 243, 170) + - darkest.uuid: dfd355e7-82fd-4fdb-96bd-b584d7268ee9 + - uuid: 80fcfe42-83d1-4e14-87d7-b38f8188ce5f +- `chartreuse-100` + - darkest.schema: color.json + - darkest.value: rgb(32, 43, 0) + - darkest.uuid: bdc6a473-3109-44c6-9e2f-198d3224d75f + - uuid: b880507f-8faa-4f95-a45f-ff4c9cd8b7b1 +- `chartreuse-200` + - darkest.schema: color.json + - darkest.value: rgb(42, 56, 0) + - darkest.uuid: b18f4550-5bbe-496c-b4a5-13df8fd0c7d7 + - uuid: 700ac2a7-ddab-4404-9b10-17f863397f25 +- `chartreuse-300` + - darkest.schema: color.json + - darkest.value: rgb(54, 72, 0) + - darkest.uuid: b98dec90-df71-4593-946d-91df7918caac + - uuid: b99d76b0-0200-438c-8d4a-96d8b2d19efd +- `chartreuse-400` + - darkest.schema: color.json + - darkest.value: rgb(66, 88, 0) + - darkest.uuid: 6a974b7d-ccd2-4778-baae-8caf419a529c + - uuid: d625422a-c661-4e4a-9c44-4be8d7380566 +- `chartreuse-500` + - darkest.schema: color.json + - darkest.value: rgb(79, 105, 0) + - darkest.uuid: 46d8fd3b-0e51-4cdd-a33c-de184b82dcc5 + - uuid: 4e2b8114-d24d-44aa-8b71-e0217428027a +- `chartreuse-600` + - darkest.schema: color.json + - darkest.value: rgb(93, 123, 0) + - darkest.uuid: 965174d2-e743-41df-a8e2-570b2ae2f447 + - uuid: f9fc8b5a-cc95-4fe2-b56a-6d98fad434e9 +- `chartreuse-700` + - darkest.schema: color.json + - darkest.value: rgb(107, 142, 0) + - darkest.uuid: a615bb51-0249-4201-b1c9-1c6269b82ec2 + - uuid: 3d1ba440-370e-4594-b535-7a3e25c04fc4 +- `chartreuse-800` + - darkest.schema: color.json + - darkest.value: rgb(122, 161, 0) + - darkest.uuid: 343f1685-2314-4a64-bc7a-5b7b3fd9fdcf + - uuid: 9c1c3ad4-9168-444e-9fc1-2cb688155b57 +- `chartreuse-900` + - darkest.schema: color.json + - darkest.value: rgb(138, 180, 3) + - darkest.uuid: 1637c50e-88e4-4273-8a75-6e8a233a690c + - uuid: 746f8da2-ba48-4cf5-9ce1-4792b238b393 +- `chartreuse-1000` + - darkest.schema: color.json + - darkest.value: rgb(154, 198, 11) + - darkest.uuid: 7dbedc59-e21c-4953-a7af-5e91d170604a + - uuid: 36b8ba5f-7621-4ef9-baa1-8407f337396a +- `chartreuse-1100` + - darkest.schema: color.json + - darkest.value: rgb(170, 216, 22) + - darkest.uuid: 90417b40-97dd-47b3-9dbc-4ac45f8e4a5f + - uuid: 3514e8ed-5240-45d1-a955-e14218b6995b +- `chartreuse-1200` + - darkest.schema: color.json + - darkest.value: rgb(187, 232, 41) + - darkest.uuid: e4b04d5d-e99d-41c5-8b24-540d653ef3ff + - uuid: 9ce51df9-65eb-4418-bbf6-58b75c4d939a +- `chartreuse-1300` + - darkest.schema: color.json + - darkest.value: rgb(205, 246, 72) + - darkest.uuid: 615841b9-08b2-4e21-981a-b8f5247e9e89 + - uuid: 17a65a9b-e4dc-49e2-b3a5-6bbad0169848 +- `chartreuse-1400` + - darkest.schema: color.json + - darkest.value: rgb(225, 253, 132) + - darkest.uuid: a75188c9-02e3-4337-8056-9a6f8f39001f + - uuid: d57b9f68-344b-42f5-b72b-22c32b075392 +- `celery-100` + - darkest.schema: color.json + - darkest.value: rgb(0, 47, 7) + - darkest.uuid: 43feed9a-9a2a-44e0-9506-9bc5eb8eab1d + - uuid: 9948ef23-8968-4a49-a6ce-14ead429cc41 +- `celery-200` + - darkest.schema: color.json + - darkest.value: rgb(0, 61, 9) + - darkest.uuid: 741a30fb-62a9-4c76-a78e-cc2590af9c7d + - uuid: dc204ca4-8b04-4823-8da3-6c464af330b0 +- `celery-300` + - darkest.schema: color.json + - darkest.value: rgb(0, 77, 12) + - darkest.uuid: 5eda4487-8f82-48ed-8b22-aa38601bbf88 + - uuid: 4ef93614-2bac-41b8-ae98-95707697d2a1 +- `celery-400` + - darkest.schema: color.json + - darkest.value: rgb(0, 95, 15) + - darkest.uuid: 646d80c1-7073-4e13-bbfe-4bd0c2226079 + - uuid: 57d3d6ca-680a-41de-aee2-8e472ad9b820 +- `celery-500` + - darkest.schema: color.json + - darkest.value: rgb(0, 113, 15) + - darkest.uuid: 7d4c282b-78ce-4b2c-ab39-26bf02366e4d + - uuid: 9a3b61b3-60a2-403e-abcc-6a8568bec8c9 +- `celery-600` + - darkest.schema: color.json + - darkest.value: rgb(0, 132, 15) + - darkest.uuid: 260d8921-3810-4a5d-a20f-cd00170cf951 + - uuid: 317b7550-de28-4657-8bf0-5dfe79cb6b2a +- `celery-700` + - darkest.schema: color.json + - darkest.value: rgb(0, 151, 20) + - darkest.uuid: 7e7e6abb-a2e9-4308-ac8e-e6866ec17c64 + - uuid: ea9cc920-eda5-4b73-b386-296333ebb1f5 +- `celery-800` + - darkest.schema: color.json + - darkest.value: rgb(13, 171, 37) + - darkest.uuid: 3b130e0d-eb9b-49e6-84db-eda6ee95eee5 + - uuid: 5344d9fb-3ad2-4bd5-a115-f4754f87f6c1 +- `celery-900` + - darkest.schema: color.json + - darkest.value: rgb(45, 191, 58) + - darkest.uuid: 706f3a95-ab27-497f-aab7-f4ed806eef30 + - uuid: 2bbd48f8-0084-4e85-9bed-8f090f2d54da +- `celery-1000` + - darkest.schema: color.json + - darkest.value: rgb(80, 208, 82) + - darkest.uuid: 021a55b8-26ae-4767-82fb-06b20c58762b + - uuid: 876e1d10-865d-4dc6-a012-7e9ea9e0c1ca +- `celery-1100` + - darkest.schema: color.json + - darkest.value: rgb(115, 224, 107) + - darkest.uuid: e091babe-6e02-4393-a67e-63222ab860b4 + - uuid: 35d35ac3-a1f2-4bfb-89f5-b6806b8b762d +- `celery-1200` + - darkest.schema: color.json + - darkest.value: rgb(147, 237, 131) + - darkest.uuid: 9913e84a-4070-476f-a570-a16781a924cf + - uuid: 5fb14377-3a8e-49bc-bb73-781e11eed069 +- `celery-1300` + - darkest.schema: color.json + - darkest.value: rgb(180, 247, 162) + - darkest.uuid: d2d8dc91-da75-4c56-a0d8-e6e9802434ad + - uuid: 33b27950-19cd-48d9-94d4-1cd6b9b4586e +- `celery-1400` + - darkest.schema: color.json + - darkest.value: rgb(213, 252, 202) + - darkest.uuid: c5c3c68c-8293-4ebb-a8d1-9f4af902906e + - uuid: 352ea9ac-2b7f-43f1-b040-a1801568a017 +- `green-100` + - darkest.schema: color.json + - darkest.value: rgb(10, 44, 28) + - darkest.uuid: e5a14d4a-47c5-4a53-84c5-589a0749d906 + - uuid: 276a4066-5ca6-4ade-b4f1-b3e58acf4377 +- `green-200` + - darkest.schema: color.json + - darkest.value: rgb(7, 59, 36) + - darkest.uuid: e8f294f5-cb17-4fdc-b370-ca2e3f95d342 + - uuid: 3b4b58b6-975d-4896-8828-f081825da89d +- `green-300` + - darkest.schema: color.json + - darkest.value: rgb(0, 76, 46) + - darkest.uuid: cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2 + - uuid: d4de36bd-c29c-456b-becd-1234351f271f +- `green-400` + - darkest.schema: color.json + - darkest.value: rgb(0, 93, 57) + - darkest.uuid: c5e88879-9773-446c-883e-96531bcb8fad + - uuid: 37ecd358-1206-4eef-a44e-e2b0dd01261c +- `green-500` + - darkest.schema: color.json + - darkest.value: rgb(0, 111, 69) + - darkest.uuid: 27649ccc-69a8-48d6-9d52-6d6e2e28ae17 + - uuid: dce88e4e-12c0-4218-a72d-e1fbd219dd81 +- `green-600` + - darkest.schema: color.json + - darkest.value: rgb(0, 130, 82) + - darkest.uuid: a0513e49-8483-40f8-8b8f-41fdc222f13d + - uuid: 7578a7e1-8514-4b09-9573-255832c15926 +- `green-700` + - darkest.schema: color.json + - darkest.value: rgb(0, 149, 98) + - darkest.uuid: 9c24175e-34a5-46c8-b646-f70c08292776 + - uuid: b41aedde-9bf1-4e7b-b8aa-606b820d41a9 +- `green-800` + - darkest.schema: color.json + - darkest.value: rgb(28, 168, 114) + - darkest.uuid: 412da16e-4db2-47d8-84d4-583ae35534f9 + - uuid: 14f8e2f4-dad6-4b69-bdd4-d03e73003e04 +- `green-900` + - darkest.schema: color.json + - darkest.value: rgb(52, 187, 132) + - darkest.uuid: 5afee2ee-a5d5-4dcf-a917-11dfdd0c3691 + - uuid: 8ef877cc-6735-4b0f-949e-39fc9712f73f +- `green-1000` + - darkest.schema: color.json + - darkest.value: rgb(75, 205, 149) + - darkest.uuid: 3d6732a1-a1f9-4e18-927b-93cebaae3895 + - uuid: 7697d674-3253-4da7-984a-18b9aa2a35db +- `green-1100` + - darkest.schema: color.json + - darkest.value: rgb(103, 222, 168) + - darkest.uuid: a2f8f6c6-07b4-43a4-8f59-995ea2bf4e82 + - uuid: 0c851763-8bc6-4c70-a0b4-d5515a6cadf1 +- `green-1200` + - darkest.schema: color.json + - darkest.value: rgb(137, 236, 188) + - darkest.uuid: 07fa1b72-bf84-4fd5-9565-28373fae6a1f + - uuid: 7d1049d6-3a01-4d8a-9405-d30c35fdc4f3 +- `green-1300` + - darkest.schema: color.json + - darkest.value: rgb(177, 244, 209) + - darkest.uuid: c5ec27ed-3a16-44fe-bb8d-a21edd2f4d73 + - uuid: 9617a312-6be4-4777-a207-d9f74dbab583 +- `green-1400` + - darkest.schema: color.json + - darkest.value: rgb(214, 249, 228) + - darkest.uuid: df5458e5-891b-4a88-a96c-748a812978a7 + - uuid: b915ddcd-cb87-4c7b-99ae-d090051de24c +- `seafoam-100` + - darkest.schema: color.json + - darkest.value: rgb(18, 43, 42) + - darkest.uuid: 080b56a3-6f95-422a-9f4b-d850966c4984 + - uuid: 0166e259-f257-4c4f-a122-3aee06ad6dce +- `seafoam-200` + - darkest.schema: color.json + - darkest.value: rgb(19, 57, 55) + - darkest.uuid: 2876bdd7-af97-4cd6-89cc-bdb9c2110946 + - uuid: c2caa7cc-f60c-4f7e-b71c-7e9f5d16b4f0 +- `seafoam-300` + - darkest.schema: color.json + - darkest.value: rgb(16, 73, 70) + - darkest.uuid: d90b7496-0f54-41ce-96eb-c973457661ae + - uuid: 79073fbb-6b19-413b-9a83-b268473aa401 +- `seafoam-400` + - darkest.schema: color.json + - darkest.value: rgb(3, 91, 88) + - darkest.uuid: ec603c2c-b2b2-4769-a889-ba7c91a458eb + - uuid: fdb0e2ef-ca1a-4800-985b-ce5e083f4f2f +- `seafoam-500` + - darkest.schema: color.json + - darkest.value: rgb(0, 108, 104) + - darkest.uuid: c24b866c-5ac0-49de-857b-48c655fa9990 + - uuid: aa68b1a7-5b06-41ae-a372-01acc217469e +- `seafoam-600` + - darkest.schema: color.json + - darkest.value: rgb(0, 127, 121) + - darkest.uuid: 73b58f7e-008b-44ae-8969-19d981d444d6 + - uuid: a249c284-3775-49ad-9596-7b497f5efc3f +- `seafoam-700` + - darkest.schema: color.json + - darkest.value: rgb(0, 146, 140) + - darkest.uuid: 0b8528e6-ceea-47a5-9727-24e97d7bc138 + - uuid: 7725c5fd-db09-4b41-aba2-0cce5ea894b7 +- `seafoam-800` + - darkest.schema: color.json + - darkest.value: rgb(0, 165, 159) + - darkest.uuid: df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696 + - uuid: f07bd231-b065-4ec2-9021-593adf11b0b6 +- `seafoam-900` + - darkest.schema: color.json + - darkest.value: rgb(26, 185, 178) + - darkest.uuid: dca23a18-2b19-48bf-9894-2f0948f6c05e + - uuid: 4cc18837-1143-45f8-b5f8-bbe5c2255dae +- `seafoam-1000` + - darkest.schema: color.json + - darkest.value: rgb(66, 202, 195) + - darkest.uuid: c416b5c5-0506-419f-88ca-f722f12a9d86 + - uuid: 59e0a6f6-b508-4692-9b66-f95188a7e4cf +- `seafoam-1100` + - darkest.schema: color.json + - darkest.value: rgb(102, 218, 211) + - darkest.uuid: 4a853bfc-f1b0-4e39-8cd8-da0350c99cd5 + - uuid: effca489-bb2f-442e-b129-c8aea79f732d +- `seafoam-1200` + - darkest.schema: color.json + - darkest.value: rgb(139, 232, 225) + - darkest.uuid: 8e4c65b7-d819-4ffd-9398-71e9d294ba63 + - uuid: 0ab0f9f2-fc1c-441a-bf59-905afdfc2c6c +- `seafoam-1300` + - darkest.schema: color.json + - darkest.value: rgb(179, 242, 237) + - darkest.uuid: ef35ace8-870d-42e0-8ce6-2df61415431f + - uuid: d1d66e58-dca2-459e-9b36-5b065baab4a1 +- `seafoam-1400` + - darkest.schema: color.json + - darkest.value: rgb(215, 248, 244) + - darkest.uuid: 9499384b-336c-4a41-af05-645a92ae40d4 + - uuid: 7e74f5c0-aac3-4b7b-9d0d-aa32318fbc9b +- `cyan-100` + - darkest.schema: color.json + - darkest.value: rgb(0, 41, 68) + - darkest.uuid: 24a8bb5a-93c3-4dd1-9ea2-d48c11479fe7 + - uuid: 769520e3-f099-4127-b0a7-053a5cd7f064 +- `cyan-200` + - darkest.schema: color.json + - darkest.value: rgb(0, 54, 88) + - darkest.uuid: 3445cf4b-2460-4692-acf2-71844d687da4 + - uuid: c60f9f06-af09-417d-bb93-8e468cfd0f28 +- `cyan-300` + - darkest.schema: color.json + - darkest.value: rgb(0, 69, 108) + - darkest.uuid: e4bcf4fc-aaec-49a5-a2bb-6bb55e7fff47 + - uuid: 2d6619da-85d7-40ff-92cf-0c8e2eb360a5 +- `cyan-400` + - darkest.schema: color.json + - darkest.value: rgb(0, 86, 128) + - darkest.uuid: 94a5bd53-d69a-4063-b630-1976230d4f2d + - uuid: 2cd007c2-65d6-4738-bb25-121e696fd0e2 +- `cyan-500` + - darkest.schema: color.json + - darkest.value: rgb(0, 103, 147) + - darkest.uuid: 909baeef-fd2f-4550-89ea-fb7ac9ea2db5 + - uuid: 77084572-b45e-4442-9020-7eee983adc27 +- `cyan-600` + - darkest.schema: color.json + - darkest.value: rgb(0, 121, 167) + - darkest.uuid: d753ef33-bfc0-424b-a2ac-ea87ecbee590 + - uuid: 219d3909-cfb6-41c3-8289-4593bd7e2701 +- `cyan-700` + - darkest.schema: color.json + - darkest.value: rgb(0, 140, 186) + - darkest.uuid: 3cb348d4-14a9-43da-84c4-068cf46c8c6f + - uuid: 78f198c9-5ad5-449b-9d6e-0929be1adf9d +- `cyan-800` + - darkest.schema: color.json + - darkest.value: rgb(4, 160, 205) + - darkest.uuid: ee8673ca-c39c-437e-b3a5-416f4e8664d3 + - uuid: 70fa195e-aef5-403f-9805-7540a657c7b7 +- `cyan-900` + - darkest.schema: color.json + - darkest.value: rgb(23, 180, 221) + - darkest.uuid: 9c183829-4858-4908-b1ac-d89f40f2e903 + - uuid: 14e16755-6644-4d61-a83c-610454602193 +- `cyan-1000` + - darkest.schema: color.json + - darkest.value: rgb(57, 199, 234) + - darkest.uuid: 04f3d463-9118-43d5-973d-8bf94417912d + - uuid: a7c38642-509e-4392-992d-b65445f9d096 +- `cyan-1100` + - darkest.schema: color.json + - darkest.value: rgb(96, 216, 243) + - darkest.uuid: 62a7ebff-a49b-4e7a-981f-692a506b4146 + - uuid: 429c47d3-91bd-4f17-89c3-58fb0ee61fa4 +- `cyan-1200` + - darkest.schema: color.json + - darkest.value: rgb(134, 230, 250) + - darkest.uuid: 36a2af99-eef4-476b-a3b8-58eade0931b7 + - uuid: cf78f2f1-5a0f-4181-9aac-8a0b05073707 +- `cyan-1300` + - darkest.schema: color.json + - darkest.value: rgb(170, 242, 255) + - darkest.uuid: 5f3df12b-1330-4482-ad34-c623bd36253c + - uuid: ee6ab17e-86d3-4300-b759-7396d7ca362b +- `cyan-1400` + - darkest.schema: color.json + - darkest.value: rgb(206, 249, 255) + - darkest.uuid: fe63b8a3-ebb9-45fe-99c2-e246b53e06a6 + - uuid: b78fe68e-fb93-4325-84a6-f54c8baa59ef +- `indigo-100` + - darkest.schema: color.json + - darkest.value: rgb(26, 29, 97) + - darkest.uuid: e60cb247-c265-4009-9f0a-bcbbbb801dd4 + - uuid: f0c3fe87-ae87-4be0-98f7-6dc7ee8733be +- `indigo-200` + - darkest.schema: color.json + - darkest.value: rgb(35, 39, 125) + - darkest.uuid: 56c709dd-b41e-478a-8098-21014e3f9ec8 + - uuid: 3cb5777a-5c5b-424d-ba5f-5bf7895f724e +- `indigo-300` + - darkest.schema: color.json + - darkest.value: rgb(46, 50, 158) + - darkest.uuid: 716f244e-67c5-4566-b824-ed7f2192b585 + - uuid: 48cf3d1e-40f4-4882-8c4f-f0d158b24a56 +- `indigo-400` + - darkest.schema: color.json + - darkest.value: rgb(58, 63, 189) + - darkest.uuid: c256e06e-07bc-4dcd-9239-48841916c93b + - uuid: 1d68b577-0fba-47a1-9ec6-6bb03d1c7f72 +- `indigo-500` + - darkest.schema: color.json + - darkest.value: rgb(73, 78, 216) + - darkest.uuid: 1ea0564b-6e88-456e-a796-4620d57b8771 + - uuid: 030f7a1c-b3a3-48b8-8e36-c91ae0c2114a +- `indigo-600` + - darkest.schema: color.json + - darkest.value: rgb(90, 96, 235) + - darkest.uuid: df590853-ce16-4ddf-bbe9-a912695eae17 + - uuid: 7a3cfd26-9e21-4431-b012-389f3dc577ad +- `indigo-700` + - darkest.schema: color.json + - darkest.value: rgb(110, 115, 246) + - darkest.uuid: 0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16 + - uuid: a507c184-5736-4c38-a067-d7e6f629ebfd +- `indigo-800` + - darkest.schema: color.json + - darkest.value: rgb(132, 136, 253) + - darkest.uuid: 97e84a30-1de4-4e84-8d59-e625f9ec9ab1 + - uuid: 9e4b6c3f-4288-4580-b398-56f39682c45b +- `indigo-900` + - darkest.schema: color.json + - darkest.value: rgb(153, 157, 255) + - darkest.uuid: 5cb7ff5e-ec53-4df8-b59d-a1419190a6cf + - uuid: 15ccd190-830c-4b93-af17-488ae1b7708e +- `indigo-1000` + - darkest.schema: color.json + - darkest.value: rgb(174, 177, 255) + - darkest.uuid: 0bf6170c-50d7-4600-96fe-2d1af93f173a + - uuid: 70e1eb55-2dda-4a84-8cd0-47f1b68ae0ab +- `indigo-1100` + - darkest.schema: color.json + - darkest.value: rgb(194, 196, 255) + - darkest.uuid: c85ea1d9-e28d-46c5-abd0-c053858770e0 + - uuid: f7e71981-4756-42c8-ba41-5a2af2db93f3 +- `indigo-1200` + - darkest.schema: color.json + - darkest.value: rgb(212, 213, 255) + - darkest.uuid: 91f9622a-03b4-47b0-b380-5f6d64c13b5d + - uuid: f17fd1a0-4fe0-4e4e-9331-9880c32cb8dc +- `indigo-1300` + - darkest.schema: color.json + - darkest.value: rgb(227, 228, 255) + - darkest.uuid: c0bfd081-7859-4ed5-aa4c-c1f547dab8f3 + - uuid: 783ddb63-4810-40ef-bf1e-ca7b62cef6cc +- `indigo-1400` + - darkest.schema: color.json + - darkest.value: rgb(240, 240, 255) + - darkest.uuid: 080f9ea4-1d87-4691-adb7-3875a7708555 + - uuid: 72913637-2902-458d-a279-4f38ac1d2926 +- `purple-100` + - darkest.schema: color.json + - darkest.value: rgb(50, 16, 104) + - darkest.uuid: ffc5aa7a-c339-4583-a586-3e8b1329d16d + - uuid: 7d2d2fd5-1e6a-4299-a86a-0a15cf985453 +- `purple-200` + - darkest.schema: color.json + - darkest.value: rgb(67, 13, 140) + - darkest.uuid: 2d67627b-372c-46af-b015-6c95bd027664 + - uuid: cf5d51e1-b890-4f48-a05a-5c1aac83cd7f +- `purple-300` + - darkest.schema: color.json + - darkest.value: rgb(86, 16, 173) + - darkest.uuid: be628028-f41d-4ace-abf3-f7f38ecb2e01 + - uuid: 2283b357-6479-45c0-a26c-3e80c19e8053 +- `purple-400` + - darkest.schema: color.json + - darkest.value: rgb(106, 29, 200) + - darkest.uuid: 474fed30-921a-4795-8999-2310521c64c5 + - uuid: d55a6634-3973-4451-96de-7cdf9ec74d8b +- `purple-500` + - darkest.schema: color.json + - darkest.value: rgb(126, 49, 222) + - darkest.uuid: b912e8ba-ed77-4179-9b80-7448f9e37193 + - uuid: 8d9cfcad-2381-4fe8-9bc6-8efd30297410 +- `purple-600` + - darkest.schema: color.json + - darkest.value: rgb(145, 70, 236) + - darkest.uuid: 05638159-aaf7-4f3e-849e-a46e80cd9ee6 + - uuid: 8a59e341-bb35-4a54-9b35-364f498364c7 +- `purple-700` + - darkest.schema: color.json + - darkest.value: rgb(162, 94, 246) + - darkest.uuid: fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c + - uuid: bcbb83ab-93d4-4112-91e5-f3ce82120016 +- `purple-800` + - darkest.schema: color.json + - darkest.value: rgb(178, 119, 250) + - darkest.uuid: 30aae683-83e3-47a1-bdcb-ebe658e110a3 + - uuid: dc780ef5-84b9-4fb9-bb34-532d2ce49bdf +- `purple-900` + - darkest.schema: color.json + - darkest.value: rgb(192, 143, 252) + - darkest.uuid: 12d86845-fd54-4d30-aac8-bb9451560ba5 + - uuid: 4dc5cd47-bedf-4597-8f07-d0baf59a7484 +- `purple-1000` + - darkest.schema: color.json + - darkest.value: rgb(206, 166, 253) + - darkest.uuid: e527a3bd-3543-4b40-8a9c-eb465695bdb9 + - uuid: e36883ef-a17f-4fdb-aa27-bb37a13533f6 +- `purple-1100` + - darkest.schema: color.json + - darkest.value: rgb(219, 188, 254) + - darkest.uuid: 18265c0a-e466-4575-a364-3dfda9e71bd4 + - uuid: 0f787b0a-7d58-45f0-991b-ba135ccd6d28 +- `purple-1200` + - darkest.schema: color.json + - darkest.value: rgb(230, 207, 255) + - darkest.uuid: ae071768-dcdd-4e30-8f72-d066abac97af + - uuid: f204d5e8-4a3e-4c87-b874-0ac57b486424 +- `purple-1300` + - darkest.schema: color.json + - darkest.value: rgb(240, 224, 255) + - darkest.uuid: fbaaff02-da93-4f45-830a-5fc449a58f0b + - uuid: a864777a-b7c9-4d2f-82d4-5cc6782efc6b +- `purple-1400` + - darkest.schema: color.json + - darkest.value: rgb(248, 237, 255) + - darkest.uuid: 9ae063c9-5817-45b4-9f57-4b2196c845b9 + - uuid: df523779-ea77-4ef9-bf11-573d9ea021c6 +- `fuchsia-100` + - darkest.schema: color.json + - darkest.value: rgb(70, 14, 68) + - darkest.uuid: 3a434405-c4b0-40ef-b383-7cb9a9b60cab + - uuid: 8eb8a9eb-5e08-4c2a-937f-0f17ece1da8d +- `fuchsia-200` + - darkest.schema: color.json + - darkest.value: rgb(93, 9, 92) + - darkest.uuid: 779ec441-475d-41de-b207-3e139c7c3168 + - uuid: c4d01ae4-8b14-45ed-ab72-5211cf18a07a +- `fuchsia-300` + - darkest.schema: color.json + - darkest.value: rgb(120, 0, 120) + - darkest.uuid: 5fa7110f-0c33-4139-8277-eff40921939e + - uuid: 1e502d0b-6d88-4f73-a493-2911621cf2c8 +- `fuchsia-400` + - darkest.schema: color.json + - darkest.value: rgb(146, 0, 147) + - darkest.uuid: a81bfdd6-4b80-4f1a-922d-2f6e04c27e01 + - uuid: 6ef05285-e6da-4c5e-9ca4-0c9cbccb0090 +- `fuchsia-500` + - darkest.schema: color.json + - darkest.value: rgb(169, 19, 170) + - darkest.uuid: 7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4 + - uuid: 92ca51c5-b4a9-4ac4-a384-4158a425041a +- `fuchsia-600` + - darkest.schema: color.json + - darkest.value: rgb(191, 43, 191) + - darkest.uuid: 0fb76488-9965-4cf9-878f-ceed7fc2be43 + - uuid: 13cac94c-eebe-4504-b034-fc79d4d6ce68 +- `fuchsia-700` + - darkest.schema: color.json + - darkest.value: rgb(211, 65, 213) + - darkest.uuid: 5f971453-aa30-4c1f-8cbc-be45ff042fcd + - uuid: fbc24eea-0ccb-4fa3-bb78-09d5b8988c67 +- `fuchsia-800` + - darkest.schema: color.json + - darkest.value: rgb(228, 91, 229) + - darkest.uuid: 5848fed6-5b42-42ef-9800-8f32e42cf6ba + - uuid: 30a9972a-13f9-45eb-811a-e8819e16733f +- `fuchsia-900` + - darkest.schema: color.json + - darkest.value: rgb(239, 120, 238) + - darkest.uuid: 3c6d42c9-4cba-4373-a61c-c8617c509f92 + - uuid: e6d9c311-509d-4fe4-b225-afb752044df6 +- `fuchsia-1000` + - darkest.schema: color.json + - darkest.value: rgb(246, 149, 243) + - darkest.uuid: a13d5f15-e4cc-4f7c-928f-aaccbf0d590e + - uuid: c39fca6a-7e8e-4c39-a5fd-38b1c6dad0bd +- `fuchsia-1100` + - darkest.schema: color.json + - darkest.value: rgb(251, 175, 246) + - darkest.uuid: 0a4eb3af-d067-4d9f-af91-66c676e49e26 + - uuid: 6db3f51e-bacc-4ab8-9be5-4858f74884c7 +- `fuchsia-1200` + - darkest.schema: color.json + - darkest.value: rgb(254, 199, 248) + - darkest.uuid: 0d93ff9f-63e8-4caf-9e7b-714e56d968d4 + - uuid: e9b1dc85-6d6e-4b1f-8d9b-2e35198a6b8f +- `fuchsia-1300` + - darkest.schema: color.json + - darkest.value: rgb(255, 220, 250) + - darkest.uuid: abd44b32-b837-4e11-95c7-4ba1c34db44b + - uuid: e6bed7fe-2b70-43d1-bd81-3d06bf45256c +- `fuchsia-1400` + - darkest.schema: color.json + - darkest.value: rgb(255, 235, 252) + - darkest.uuid: 7c819391-d74c-4326-ae0d-fe3534eb44e3 + - uuid: 200a6384-7f09-4b2f-b5ac-a106c8cd6fd1 +- `magenta-100` + - darkest.schema: color.json + - darkest.value: rgb(83, 3, 41) + - darkest.uuid: 9149371a-1978-4136-a89c-8895edd35e7d + - uuid: ce26417e-9bb8-411e-a026-464293b06add +- `magenta-200` + - darkest.schema: color.json + - darkest.value: rgb(106, 0, 52) + - darkest.uuid: f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8 + - uuid: 874c0257-997e-47fc-8034-aab4e96f97fe +- `magenta-300` + - darkest.schema: color.json + - darkest.value: rgb(133, 0, 65) + - darkest.uuid: 673ab9b4-e296-4472-b0b5-15adf9f1f762 + - uuid: f694bd14-d565-4ec2-baff-304500e438b3 +- `magenta-400` + - darkest.schema: color.json + - darkest.value: rgb(161, 0, 78) + - darkest.uuid: 60560de2-28e6-44b4-bcff-f357fe13a4a7 + - uuid: 43d8a547-4a3b-4bf4-afa6-a22e99811644 +- `magenta-500` + - darkest.schema: color.json + - darkest.value: rgb(186, 22, 93) + - darkest.uuid: 830123a6-0e42-4c4f-9b20-2f4204d37af8 + - uuid: 9d63598b-15dc-42d8-81f0-84bb906bfbdb +- `magenta-600` + - darkest.schema: color.json + - darkest.value: rgb(209, 43, 114) + - darkest.uuid: e6b14a1d-e26e-41c4-b386-7fb3f95b8c93 + - uuid: 5bddfcd1-4c98-45b7-a2b3-ad63bb55eaec +- `magenta-700` + - darkest.schema: color.json + - darkest.value: rgb(227, 69, 137) + - darkest.uuid: 11055a6b-7e81-4b59-9feb-8b0b6352be07 + - uuid: b5538c34-e3ef-4f42-a8e7-a0382bf74d16 +- `magenta-800` + - darkest.schema: color.json + - darkest.value: rgb(241, 97, 156) + - darkest.uuid: 6676db79-7b7e-4fcf-868b-321f9372517a + - uuid: 2da326e7-e8c4-4a4c-98bf-f8bd903c434a +- `magenta-900` + - darkest.schema: color.json + - darkest.value: rgb(252, 124, 173) + - darkest.uuid: fa5e523e-7ee3-46d0-971f-4ee95c7222b8 + - uuid: 2b5073f4-450b-4c86-8c12-a52b75a4ff00 +- `magenta-1000` + - darkest.schema: color.json + - darkest.value: rgb(255, 152, 191) + - darkest.uuid: bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154 + - uuid: c93e3507-c6b1-4560-a7cb-5d5113b5392c +- `magenta-1100` + - darkest.schema: color.json + - darkest.value: rgb(255, 179, 207) + - darkest.uuid: 548a74eb-4401-44f4-85b4-921287d84ac9 + - uuid: 1f891345-4822-4977-8dee-b2161f1289ef +- `magenta-1200` + - darkest.schema: color.json + - darkest.value: rgb(255, 202, 221) + - darkest.uuid: 9c634688-1ad5-438b-bd44-a92c64ef9934 + - uuid: cbde36d9-8429-4904-9148-a3ede646d148 +- `magenta-1300` + - darkest.schema: color.json + - darkest.value: rgb(255, 221, 233) + - darkest.uuid: 6c441ca7-0294-462f-ac18-7b28ff20d7ff + - uuid: 2a7b30ec-db12-4ba6-8316-c134705a5867 +- `magenta-1400` + - darkest.schema: color.json + - darkest.value: rgb(255, 236, 243) + - darkest.uuid: 15f36ded-01af-4c5d-8b11-45523e7d908e + - uuid: 336a0cef-c962-4847-9eba-2d6e9571c790 +- `opacity-checkerboard-square-dark` + - darkest.schema: alias.json + - darkest.value: gray-800 + - darkest.uuid: f783b8cb-d31f-46c2-b550-990639752510 + - uuid: 0b807f40-d63e-4482-8d53-18fadc9663d5 +- `overlay-opacity` + - darkest.schema: opacity.json + - darkest.value: 0.6 + - darkest.uuid: 31d5b502-6266-4309-8f8a-3892e6e158da + - uuid: bc377afe-9055-45f9-8906-9f83ee07dada +- `drop-shadow-color` + - light.schema: color.json + - light.value: rgba(0, 0, 0, 0.15) + - light.uuid: be45ace6-9227-41d1-80be-0c58c3f8b3cb + - dark.schema: color.json + - dark.value: rgba(0, 0, 0, 0.5) + - dark.uuid: 4633ae77-5101-4c62-8253-6406df2613f1 + - darkest.schema: color.json + - darkest.value: rgba(0, 0, 0, 0.8) + - darkest.uuid: e54491a8-d3ca-4d67-bacb-74ac192a387f + - wireframe.schema: color.json + - wireframe.value: rgba(0, 0, 0, 0.15) + - wireframe.uuid: 1deef94a-efba-4670-a1be-78ee021bdfe8 +- `background-base-color` + - light.schema: alias.json + - light.value: gray-200 + - light.uuid: e0d8739d-18dd-44bc-92ea-e443882a780b + - dark.schema: alias.json + - dark.value: gray-50 + - dark.uuid: 46060531-9372-41a7-8db3-d3c100338e6d + - darkest.schema: alias.json + - darkest.value: gray-50 + - darkest.uuid: cf1299aa-86c7-4523-b6ae-6de597ac3712 + - wireframe.schema: alias.json + - wireframe.value: gray-200 + - wireframe.uuid: 6945b976-83b4-4aec-a687-cb461bc9fe70 +- `background-layer-1-color` + - light.schema: alias.json + - light.value: gray-100 + - light.uuid: 7e6678b7-2903-434b-8ee2-06c83815b01d + - dark.schema: alias.json + - dark.value: gray-75 + - dark.uuid: fc1758f3-22bd-4dc0-9ef3-91fa0f454036 + - darkest.schema: alias.json + - darkest.value: gray-75 + - darkest.uuid: da228344-5b83-4e08-96d2-089068138ba0 + - wireframe.schema: alias.json + - wireframe.value: gray-100 + - wireframe.uuid: 3ccfa493-5375-492a-93b0-7418655c3b56 +- `background-layer-2-color` + - darkest.schema: alias.json + - darkest.value: gray-100 + - darkest.uuid: e30b7936-6ae7-4ada-8892-94a1f67d55c9 + - uuid: 9abdcab8-2ff4-40b2-8d86-5e0a09b8cf88 +- `neutral-background-color-default` + - light.schema: alias.json + - light.value: gray-800 + - light.uuid: 5d54b2d5-b0c6-4438-b141-80ca91a0b8a4 + - dark.schema: alias.json + - dark.value: gray-400 + - dark.uuid: 4f58764f-deb1-4863-89ce-663868fe73e6 + - darkest.schema: alias.json + - darkest.value: gray-400 + - darkest.uuid: a1c5a204-e937-4ce1-a5be-580f6b0df7a5 + - wireframe.schema: alias.json + - wireframe.value: gray-800 + - wireframe.uuid: 9ff12440-fe4e-4f47-ab43-aea39f9ce6f2 +- `neutral-background-color-hover` + - light.schema: alias.json + - light.value: gray-900 + - light.uuid: e0379e06-e2d3-4d6f-ba81-6cdf4012a022 + - dark.schema: alias.json + - dark.value: gray-300 + - dark.uuid: 7ea82825-f138-44e5-9c75-29c444086d6a + - darkest.schema: alias.json + - darkest.value: gray-300 + - darkest.uuid: 0ce569ea-d735-42a3-96c2-60201fcb616f + - wireframe.schema: alias.json + - wireframe.value: gray-900 + - wireframe.uuid: b6c12c43-39da-415b-a828-43883dfa212d +- `neutral-background-color-down` + - light.schema: alias.json + - light.value: gray-900 + - light.uuid: 5577ffde-5708-4ea7-a50d-d938f07eba7f + - dark.schema: alias.json + - dark.value: gray-200 + - dark.uuid: 20e71891-57dc-4dc7-9f30-330d3753e8dd + - darkest.schema: alias.json + - darkest.value: gray-200 + - darkest.uuid: 4901987b-b70c-42ef-92fd-b8c5b6894bfc + - wireframe.schema: alias.json + - wireframe.value: gray-900 + - wireframe.uuid: 69c94cbb-b852-4b5c-8e5f-26664dbf083a +- `neutral-background-color-key-focus` + - light.schema: alias.json + - light.value: gray-900 + - light.uuid: b8ba6d4d-737e-4c18-a901-bb35fdc173c3 + - dark.schema: alias.json + - dark.value: gray-300 + - dark.uuid: 78a08d31-921c-4b47-a50c-4f283e916712 + - darkest.schema: alias.json + - darkest.value: gray-300 + - darkest.uuid: f90c1f60-5d23-41ed-ab42-30eeb9d079ba + - wireframe.schema: alias.json + - wireframe.value: gray-900 + - wireframe.uuid: 83e3eea6-e59e-4aca-8126-a9e984e90b08 +- `neutral-background-color-selected-default` + - spectrum.schema: alias.json + - spectrum.value: gray-700 + - spectrum.uuid: fd1c9f2b-8358-4bd3-a5cc-d211673428bc + - express.schema: alias.json + - express.value: gray-800 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 60caae29-d389-421e-a574-b26bcaeed3bf +- `neutral-background-color-selected-hover` + - spectrum.schema: alias.json + - spectrum.value: gray-800 + - spectrum.uuid: 1c220122-5f32-42f9-848f-ae10061241e5 + - express.schema: alias.json + - express.value: gray-900 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: 0deac090-f00a-4927-880d-dfdca06bd66e +- `neutral-background-color-selected-down` + - spectrum.schema: alias.json + - spectrum.value: gray-900 + - spectrum.uuid: 966c56d0-4461-45e7-9e20-0277f2111a34 + - express.schema: alias.json + - express.value: gray-900 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: bf3de5f6-665c-4a6a-b238-e767b7240fd8 +- `neutral-background-color-selected-key-focus` + - spectrum.schema: alias.json + - spectrum.value: gray-800 + - spectrum.uuid: 9b8df7df-3439-4614-b446-97a4de782e27 + - express.schema: alias.json + - express.value: gray-900 + - express.deprecated: true + - express.deprecated_comment: Express will merge with Spectrum with the release of Spectrum 2. + - express.uuid: e012e155-2220-43e9-a248-61c71e99cc2b +- `neutral-subdued-background-color-default` + - darkest.schema: alias.json + - darkest.value: gray-400 + - darkest.uuid: bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef + - uuid: 46f2e88e-6238-43d9-8632-b8e3e5a4a52d +- `neutral-subdued-background-color-hover` + - darkest.schema: alias.json + - darkest.value: gray-300 + - darkest.uuid: 2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5 + - uuid: 12111698-b0d6-49a6-a652-c9f31c67aa61 +- `neutral-subdued-background-color-down` + - darkest.schema: alias.json + - darkest.value: gray-200 + - darkest.uuid: 11bf9149-d8df-4f37-ba21-51ff911b0517 + - uuid: 8d0018a9-9d83-426c-a757-2923b67db391 +- `neutral-subdued-background-color-key-focus` + - darkest.schema: alias.json + - darkest.value: gray-300 + - darkest.uuid: a1e08db6-3a72-4b8e-9475-b54a7b9be506 + - uuid: f26e8e36-183c-4364-94e6-4158b461825b +- `accent-background-color-default` + - darkest.schema: alias.json + - darkest.value: accent-color-600 + - darkest.uuid: f24eb871-6419-4cef-88a2-cca8548ae31e + - uuid: 1b8286ae-82d5-41e6-a15b-84f2f325094d +- `accent-background-color-hover` + - darkest.schema: alias.json + - darkest.value: accent-color-500 + - darkest.uuid: 9e140a94-c11f-470b-b7af-49880e58d4ce + - uuid: ca7fdae0-9e35-4c28-8ff2-fb92be1c3155 +- `accent-background-color-down` + - darkest.schema: alias.json + - darkest.value: accent-color-400 + - darkest.uuid: e2c0de7e-d271-4b2c-9393-d864a95732e6 + - uuid: d6c0d9cb-0778-45a2-9c70-8c7e234556df +- `accent-background-color-key-focus` + - darkest.schema: alias.json + - darkest.value: accent-color-500 + - darkest.uuid: af809118-7a97-409c-925f-8d7636a791c8 + - uuid: 0a1e74f1-ffc9-4f6a-bed6-f75882e072e7 +- `informative-background-color-default` + - darkest.schema: alias.json + - darkest.value: informative-color-600 + - darkest.uuid: da3a7c08-7f54-4486-bb66-146db21f0627 + - uuid: f95deae9-0726-4fb5-be41-0680d40439ec +- `informative-background-color-hover` + - darkest.schema: alias.json + - darkest.value: informative-color-500 + - darkest.uuid: 092415a8-0054-4f6d-9a93-1541c767b2c5 + - uuid: 8c7a907e-7572-46c1-8a72-42552293510b +- `informative-background-color-down` + - darkest.schema: alias.json + - darkest.value: informative-color-400 + - darkest.uuid: c9c09cc9-1ebd-4738-9613-6a0a67bea4f9 + - uuid: 73ad4073-7d38-4e74-947b-7e9d6140663b +- `informative-background-color-key-focus` + - darkest.schema: alias.json + - darkest.value: informative-color-500 + - darkest.uuid: e5292c94-ea4a-49ba-8c25-6ab1114e0fe3 + - uuid: a6b570d5-3e91-4dff-b706-bf485a137d03 +- `negative-background-color-default` + - darkest.schema: alias.json + - darkest.value: negative-color-600 + - darkest.uuid: 1117b73b-42e3-4ad6-8b26-af76859a27bb + - uuid: dc84d6f1-c287-405a-bb35-352b030d3718 +- `negative-background-color-hover` + - darkest.schema: alias.json + - darkest.value: negative-color-500 + - darkest.uuid: 648da867-549e-47c3-9312-e9cfda288705 + - uuid: 81b0e851-9a50-4960-ac8c-e29a04ff7b0d +- `negative-background-color-down` + - darkest.schema: alias.json + - darkest.value: negative-color-400 + - darkest.uuid: 8565ec8e-2196-47ac-8636-40084acbfd4f + - uuid: a88541e5-37e6-4865-a24e-cc319c1c7b62 +- `negative-background-color-key-focus` + - darkest.schema: alias.json + - darkest.value: negative-color-500 + - darkest.uuid: f1470931-f4f8-47d9-b118-5b813e4c154a + - uuid: 4cefc283-c2f0-4199-9fab-40426911023b +- `positive-background-color-default` + - darkest.schema: alias.json + - darkest.value: positive-color-600 + - darkest.uuid: 82b54f71-7c9e-4388-9e3b-4d13f12fad60 + - uuid: f237a708-8e19-41bc-a1b5-ce25b68f474f +- `positive-background-color-hover` + - darkest.schema: alias.json + - darkest.value: positive-color-500 + - darkest.uuid: 2992a78b-9ce0-4b29-a4f6-ddbc51f820f2 + - uuid: 0e986617-aa45-47dc-8b11-139089ea89ac +- `positive-background-color-down` + - darkest.schema: alias.json + - darkest.value: positive-color-400 + - darkest.uuid: 58a934d2-a715-4544-aa79-7f94bd493f09 + - uuid: 1922ea54-19d8-44d6-97e5-9ab66c0782db +- `positive-background-color-key-focus` + - darkest.schema: alias.json + - darkest.value: positive-color-500 + - darkest.uuid: 56d371b4-437f-4ca9-854f-ae6daf5dcfce + - uuid: 0983a44e-7aa9-4b1b-9d1f-4932d0c4a961 +- `notice-background-color-default` + - darkest.schema: alias.json + - darkest.value: notice-color-800 + - darkest.uuid: 0a0bb434-e005-41ec-bee5-709a2e41928b + - uuid: 95bfb862-41e4-40f1-817b-3a236898bb48 +- `gray-background-color-default` + - darkest.schema: alias.json + - darkest.value: gray-700 + - darkest.uuid: fa68c3bf-88b5-4653-a42d-7de5ce7cec3d + - uuid: f76e86c1-02ef-447f-97d2-8dbaf0d1b03c +- `red-background-color-default` + - darkest.schema: alias.json + - darkest.value: red-700 + - darkest.uuid: ce074ee2-a2a2-4da3-a99e-603524193d46 + - uuid: fd5b572e-a0e2-48a6-99f8-ed098507e8d6 +- `orange-background-color-default` + - darkest.schema: alias.json + - darkest.value: orange-800 + - darkest.uuid: 3e9a6c2a-bd09-4d28-a95c-920109c1852f + - uuid: bbcdb9c1-0c50-4f6d-8da1-37e166860f22 +- `yellow-background-color-default` + - darkest.schema: alias.json + - darkest.value: yellow-1000 + - darkest.uuid: 61c5e375-bff3-479f-8c32-2d2a5edb906c + - uuid: b3abccc3-58c1-41b3-b9e2-c21e5610be67 +- `chartreuse-background-color-default` + - darkest.schema: alias.json + - darkest.value: chartreuse-900 + - darkest.uuid: 5df9a029-dc91-4078-a198-574486948834 + - uuid: f78ade0c-eeb6-496f-b99d-657072f27485 +- `celery-background-color-default` + - darkest.schema: alias.json + - darkest.value: celery-800 + - darkest.uuid: a9ab7a59-9cab-47fb-876d-6f0af93dc5df + - uuid: 2c159320-bf17-48b6-9d09-b2d037f937d1 +- `green-background-color-default` + - darkest.schema: alias.json + - darkest.value: green-700 + - darkest.uuid: 49170573-9c22-42e1-a1ce-cd3d3972ddb7 + - uuid: 2fc00105-857e-4eb5-a414-2cc6b4cd22ff +- `seafoam-background-color-default` + - darkest.schema: alias.json + - darkest.value: seafoam-700 + - darkest.uuid: 9a727140-328d-430f-9b10-8965eebe77d1 + - uuid: 29502bad-fdad-4a78-b60f-f515a62bac43 +- `cyan-background-color-default` + - darkest.schema: alias.json + - darkest.value: cyan-700 + - darkest.uuid: 543af64f-9c28-4e88-8597-3259cd7ebf1f + - uuid: d228688c-fee3-460c-b2f0-6abce661db3d +- `blue-background-color-default` + - darkest.schema: alias.json + - darkest.value: blue-700 + - darkest.uuid: 83591a94-83e1-4557-8f50-cc1fe9793b76 + - uuid: 7944588f-bff1-4669-8f8b-0ad3c028dce0 +- `indigo-background-color-default` + - darkest.schema: alias.json + - darkest.value: indigo-700 + - darkest.uuid: b7f5a677-4e89-40e1-8324-7619a628ce8b + - uuid: 358aa988-9b99-4c33-8f5f-1198510ca5df +- `purple-background-color-default` + - darkest.schema: alias.json + - darkest.value: purple-700 + - darkest.uuid: e577d521-0271-4226-a094-624b35a05826 + - uuid: a65c1b35-c3f0-4ec9-8931-5168a526fe97 +- `fuchsia-background-color-default` + - darkest.schema: alias.json + - darkest.value: fuchsia-700 + - darkest.uuid: 7b4d71d3-ad78-4e02-a48e-fa79f40854a2 + - uuid: 862d0909-d391-49b2-96f0-1c85f0048fc4 +- `magenta-background-color-default` + - darkest.schema: alias.json + - darkest.value: magenta-700 + - darkest.uuid: 5867d764-d909-4490-b947-533e89997d0a + - uuid: c92d3443-05b2-4290-a74e-c601ab758e9b +- `neutral-visual-color` + - darkest.schema: alias.json + - darkest.value: gray-600 + - darkest.uuid: 35ef6675-7e66-4ef5-8c8d-e8e70939b224 + - uuid: 8c258b68-face-42d2-8115-4a20b1ff281f +- `accent-visual-color` + - darkest.schema: alias.json + - darkest.value: accent-color-900 + - darkest.uuid: 8ccd197f-fc8e-4d31-866c-2b96049eea89 + - uuid: e9907cf2-5c99-4155-82a5-33e6657a5ba4 +- `informative-visual-color` + - darkest.schema: alias.json + - darkest.value: informative-color-900 + - darkest.uuid: fd64c9ca-6ad7-415c-b0b8-2579399e33a5 + - uuid: a915f4f5-af40-46c6-a35a-0efb9d8aac53 +- `negative-visual-color` + - darkest.schema: alias.json + - darkest.value: negative-color-700 + - darkest.uuid: 70cb0316-5b7a-416c-bf93-7d8885c4fce6 + - uuid: a1097979-35e2-43b0-99de-2cbe53ea00db +- `notice-visual-color` + - darkest.schema: alias.json + - darkest.value: notice-color-900 + - darkest.uuid: 2759c912-6385-40e4-9ed9-ff2e11815b4d + - uuid: fe7cfa0e-c782-410f-a355-c1526222d9e4 +- `positive-visual-color` + - darkest.schema: alias.json + - darkest.value: positive-color-800 + - darkest.uuid: 25e8289f-6c82-4485-8920-a187f790cd47 + - uuid: 0e1d30df-1779-4b28-ad93-64827e982d00 +- `gray-visual-color` + - darkest.schema: alias.json + - darkest.value: gray-600 + - darkest.uuid: 0f7a39c2-3ee7-4ff0-873f-334c81054b77 + - uuid: 6854095c-ac3e-49b4-8753-5fc2eb7abb80 +- `red-visual-color` + - darkest.schema: alias.json + - darkest.value: red-700 + - darkest.uuid: 870f90ab-7f3e-41b6-9c11-59e9c4ff82c6 + - uuid: 6c0a6428-ed2d-4f53-b986-fbc8c4d14e88 +- `orange-visual-color` + - darkest.schema: alias.json + - darkest.value: orange-900 + - darkest.uuid: e7bf9977-2edf-48bc-8099-ad95e57b55b1 + - uuid: dd5b5b66-e8a5-4c5b-9159-903d975345c2 +- `yellow-visual-color` + - darkest.schema: alias.json + - darkest.value: yellow-1100 + - darkest.uuid: 4a2ebbb5-b8b7-43a0-9d64-4974bb382a8b + - uuid: 411ea3a1-6d41-474b-81c5-8356eb2dbfe3 +- `chartreuse-visual-color` + - darkest.schema: alias.json + - darkest.value: chartreuse-900 + - darkest.uuid: a46d8e05-4f56-4b46-a279-0164abfa42e8 + - uuid: 30d087e8-d588-4bc6-96e3-59bf8e9565c1 +- `celery-visual-color` + - darkest.schema: alias.json + - darkest.value: celery-800 + - darkest.uuid: 37c1311b-29ed-44ab-b656-a7538726ad77 + - uuid: a98a7116-e19c-4c8a-8c63-535f3fc3c2ee +- `green-visual-color` + - darkest.schema: alias.json + - darkest.value: green-800 + - darkest.uuid: 1219770d-543d-4216-9e87-c158f8a74df6 + - uuid: 790fa82a-ac72-4f0c-8238-3da2738dce44 +- `seafoam-visual-color` + - darkest.schema: alias.json + - darkest.value: seafoam-800 + - darkest.uuid: 736e4768-7944-40ec-a412-4cd36299e03d + - uuid: df95350c-00ab-47a3-a5b4-5685122cf31e +- `cyan-visual-color` + - darkest.schema: alias.json + - darkest.value: cyan-900 + - darkest.uuid: 091a2073-baa0-4cc6-b943-9dddc285ad62 + - uuid: 8353f6f2-10ba-46c0-b348-e80148a0ba13 +- `blue-visual-color` + - darkest.schema: alias.json + - darkest.value: blue-900 + - darkest.uuid: 63fe16ed-70fa-4eaf-918c-f642ff69ce05 + - uuid: acc6aee5-ce5c-4b44-b8b5-10b118420ed8 +- `indigo-visual-color` + - darkest.schema: alias.json + - darkest.value: indigo-900 + - darkest.uuid: 584ccbd4-3243-4041-b665-e2342d2b26e8 + - uuid: 89d267a2-a0ea-42e6-9cad-60eff42560e2 +- `purple-visual-color` + - darkest.schema: alias.json + - darkest.value: purple-900 + - darkest.uuid: 0ee2957b-c401-4106-8ff3-9de9fa544a03 + - uuid: 291aad5e-5dea-4318-98bd-16ed32ce4065 +- `fuchsia-visual-color` + - darkest.schema: alias.json + - darkest.value: fuchsia-900 + - darkest.uuid: 38e60263-cb08-4090-a653-5acbd1664ae0 + - uuid: 5df99248-f4ae-48cc-9f7f-5ea6da6f8942 +- `magenta-visual-color` + - darkest.schema: alias.json + - darkest.value: magenta-900 + - darkest.uuid: 178e4bc6-6986-4e77-aab0-78dbe66f8e6f + - uuid: 787dba09-d1c2-4e52-985a-568a91234610 + +
    +
    Updated Properties (668) + +- `font-size-1200` + - desktop.value: 50px -> 51px +- `font-size-1300` + - desktop.value: 60px -> 58px +- `heading-sans-serif-font-weight` + - schema: system-set.json -> alias.json + - uuid: 2094ec97-c8de-46d7-93a4-1f49988bfbf2 -> 1d4d09b4-021a-48e8-a724-bfecc13df325 +- `heading-serif-font-weight` + - schema: system-set.json -> alias.json + - uuid: 2e852baa-60a2-4e7e-9e30-99c14d7e4fef -> 350aa193-9996-49c8-b5e4-54d4f7bef3c2 +- `heading-cjk-font-weight` + - schema: system-set.json -> alias.json + - uuid: 203b2652-aa62-47f7-b4b5-52e22532de80 -> bd54516c-2fda-4421-ab62-720c3a887a34 +- `heading-sans-serif-emphasized-font-weight` + - schema: system-set.json -> alias.json + - uuid: 445edecf-360c-4c42-aaf2-3b7380678365 -> e4a183fd-53c5-4dbb-afd1-6308e2e74f80 +- `heading-serif-emphasized-font-weight` + - schema: system-set.json -> alias.json + - uuid: aa539366-543c-4cf5-b326-8c6e8a09f846 -> a0983216-b0c5-4a3f-97dc-96ee711acb1f +- `heading-size-s` + - value: font-size-300 -> font-size-400 +- `heading-size-xs` + - value: font-size-200 -> font-size-300 +- `heading-cjk-size-s` + - value: font-size-200 -> font-size-300 +- `heading-cjk-size-xs` + - value: font-size-100 -> font-size-200 +- `heading-cjk-size-xxs` + - value: font-size-75 -> font-size-100 +- `detail-sans-serif-font-weight` + - value: bold-font-weight -> medium-font-weight +- `detail-serif-font-weight` + - value: bold-font-weight -> medium-font-weight +- `detail-cjk-font-weight` + - value: extra-bold-font-weight -> bold-font-weight +- `detail-sans-serif-emphasized-font-weight` + - value: bold-font-weight -> regular-font-weight +- `detail-serif-emphasized-font-weight` + - value: bold-font-weight -> medium-font-weight +- `detail-size-xl` + - value: font-size-200 -> font-size-300 +- `detail-size-l` + - value: font-size-100 -> font-size-200 +- `detail-size-m` + - value: font-size-75 -> font-size-100 +- `detail-size-s` + - value: font-size-50 -> font-size-75 +- `detail-color` + - value: gray-900 -> gray-600 +- `detail-cjk-size-s` + - value: font-size-25 -> font-size-50 + - uuid: 648162b2-154f-459c-a261-8226bf855714 -> 8eb0f29f-71a1-4aa5-a3ed-98a373baf620 +- `detail-cjk-size-m` + - value: font-size-50 -> font-size-75 + - uuid: 16915081-2765-4553-9e8c-7acb686938cc -> 236c73fb-d3bc-4390-8682-dd06fbd92d23 +- `detail-cjk-size-l` + - value: font-size-75 -> font-size-100 + - uuid: e9c9bf5a-b7a1-4a53-8335-66697c5bd44f -> 92399d83-aa71-4207-b533-4fe69e6271e2 +- `detail-cjk-size-xl` + - value: font-size-100 -> font-size-200 + - uuid: 1bbf01a7-c624-452f-a6b6-8486724bc362 -> 533265d4-7304-4688-b2fb-379a086b20bf +- `code-cjk-strong-font-weight` + - value: black-font-weight -> bold-font-weight +- `code-cjk-strong-emphasized-font-weight` + - value: black-font-weight -> bold-font-weight +- `accent-color-100` + - schema: system-set.json -> alias.json + - uuid: 0dd9c008-b20f-4a51-be59-67d9530877ff -> 2e080bb5-6f2c-4fd9-96a2-bf9fc19d2649 +- `accent-color-200` + - schema: system-set.json -> alias.json + - uuid: d4850a3d-cce3-4cd5-ba44-27281cad5934 -> cf583998-4dfd-4222-a554-8e05ed7fb5d6 +- `accent-color-300` + - schema: system-set.json -> alias.json + - uuid: 89c05b32-63f5-46ed-abe1-a36247bd9797 -> ea67f054-1f42-427e-a768-beb8d21de2a3 +- `accent-color-400` + - schema: system-set.json -> alias.json + - uuid: 794b3679-1bcf-4c64-a55b-99be3f7676e5 -> a249e4b1-e6f9-4ef3-96c6-1559059839a7 +- `accent-color-500` + - schema: system-set.json -> alias.json + - uuid: 6eee723c-d9dd-4b14-ab44-75779c44f59e -> c1c0e6fb-ce21-49d7-91bb-73ce873aa69f +- `accent-color-600` + - schema: system-set.json -> alias.json + - uuid: 11e391f6-66f0-4ed0-b70a-3f3d3a0e2f90 -> 5a2000be-5640-4389-a128-b2c164ad2253 +- `accent-color-700` + - schema: system-set.json -> alias.json + - uuid: fc2868a8-1b1b-4da7-a51f-7faa6e7f7d4d -> a8fbe39b-db6d-4bb4-a7c5-8a235060d2ae +- `accent-color-800` + - schema: system-set.json -> alias.json + - uuid: 85bd13e9-ff5a-419d-bc33-97fd44cf1789 -> 87a2c8f0-54fd-4939-8f42-3124fde1e49e +- `accent-color-900` + - schema: system-set.json -> alias.json + - uuid: 23cb9c14-f3cf-430b-9d0c-4749160542d8 -> 90d82778-1cbb-47c0-aab9-b6e38a9cdc54 +- `accent-color-1000` + - schema: system-set.json -> alias.json + - uuid: 203cf947-661e-4e96-8d13-5f0d3e9237bf -> 9bf3fa2f-75d3-44d3-ae30-d88893665366 +- `accent-color-1100` + - schema: system-set.json -> alias.json + - uuid: 80493b68-bdd4-4478-8ec1-2049922382be -> f7f853a5-f091-4a7e-8aea-68d060c840f0 +- `accent-color-1200` + - schema: system-set.json -> alias.json + - uuid: eeed3404-3bde-4bb6-975f-556ec92297bd -> 7c141cdb-1e5e-468a-ba48-0df01b275402 +- `accent-color-1300` + - schema: system-set.json -> alias.json + - uuid: 0083814f-7761-4a52-97e3-ca154d7b8603 -> f7307eba-e311-41a8-bb50-0b1e96833dfa +- `accent-color-1400` + - schema: system-set.json -> alias.json + - uuid: 1124ea0a-6ba1-4b7e-852e-db760d182a97 -> 06585cf4-a924-49b2-b6c8-f0e80b57c576 +- `corner-radius-75` + - schema: system-set.json -> dimension.json + - uuid: bc4c5fdb-7456-4178-8c3b-4aaaa65805a6 -> ecb9d03a-7340-4b43-8aa7-f89eef9f3a20 +- `corner-radius-100` + - schema: system-set.json -> dimension.json + - uuid: 6063a01d-8ba8-40ab-9c5e-a2112db74fee -> bf24d15e-ad86-4b6a-a9e0-e8fd49a5ae30 +- `corner-radius-200` + - schema: system-set.json -> dimension.json + - uuid: c8beb921-82c4-48ee-be9e-aab8b4b41a35 -> 52ad01be-f512-4fa3-ae67-8c6cef70810c +- `drop-shadow-x` + - schema: system-set.json -> alias.json + - uuid: 55d07ba8-ccf3-4374-97c4-3ad927edbdd2 -> 81415747-aa3f-4ef3-b0bc-7c33f07a4316 +- `drop-shadow-y` + - schema: system-set.json -> alias.json + - uuid: 859114f3-d2a6-4b2e-80c5-118e44ce9cf6 -> c530129f-248c-4e36-ba7f-05d6d6a53962 +- `drop-shadow-blur` + - schema: system-set.json -> alias.json + - uuid: 056dbbc1-ea92-4d56-9928-b14311af8726 -> ac20a6da-31a7-4c8b-b361-0ad820cd8429 +- `workflow-icon-size-50` + - mobile.value: 18px -> 16px +- `workflow-icon-size-75` + - mobile.value: 20px -> 18px +- `workflow-icon-size-100` + - desktop.value: 18px -> 20px + - mobile.value: 22px -> 24px +- `workflow-icon-size-200` + - desktop.value: 20px -> 22px + - mobile.value: 24px -> 28px +- `workflow-icon-size-300` + - desktop.value: 22px -> 26px + - mobile.value: 28px -> 30px +- `text-to-visual-50` + - desktop.value: 6px -> 5px + - mobile.value: 8px -> 7px +- `text-to-visual-75` + - desktop.value: 7px -> 5px + - mobile.value: 9px -> 7px +- `text-to-visual-100` + - desktop.value: 8px -> 6px + - mobile.value: 10px -> 8px +- `text-to-visual-200` + - desktop.value: 9px -> 7px + - mobile.value: 11px -> 9px +- `text-to-visual-300` + - desktop.value: 10px -> 8px + - mobile.value: 13px -> 10px +- `border-width-100` + - schema: system-set.json -> dimension.json + - uuid: e5837232-9892-47ec-b8cc-91920283697a -> b5525080-28e7-4eb7-aee9-fb2c71a16f68 +- `component-pill-edge-to-visual-only-75` + - mobile.value: 5px -> 6px +- `component-pill-edge-to-visual-only-100` + - desktop.value: 7px -> 6px + - mobile.value: 9px -> 8px +- `component-pill-edge-to-visual-only-200` + - desktop.value: 10px -> 9px + - mobile.value: 13px -> 11px +- `component-pill-edge-to-visual-only-300` + - desktop.value: 13px -> 11px + - mobile.value: 16px -> 15px +- `component-edge-to-visual-only-50` + - mobile.value: 4px -> 5px +- `component-edge-to-visual-only-75` + - mobile.value: 5px -> 6px +- `component-edge-to-visual-only-100` + - desktop.value: 7px -> 6px + - mobile.value: 9px -> 8px +- `component-edge-to-visual-only-200` + - desktop.value: 10px -> 9px + - mobile.value: 13px -> 11px +- `component-edge-to-visual-only-300` + - desktop.value: 13px -> 11px + - mobile.value: 16px -> 15px +- `component-top-to-workflow-icon-50` + - mobile.value: 4px -> 5px +- `component-top-to-workflow-icon-75` + - mobile.value: 5px -> 6px +- `component-top-to-workflow-icon-100` + - desktop.value: 7px -> 6px + - mobile.value: 9px -> 8px +- `component-top-to-workflow-icon-200` + - desktop.value: 10px -> 9px + - mobile.value: 13px -> 11px +- `component-top-to-workflow-icon-300` + - desktop.value: 13px -> 11px + - mobile.value: 16px -> 15px +- `field-top-to-progress-circle-small` + - mobile.value: 7px -> 6px +- `field-top-to-progress-circle-medium` + - desktop.value: 8px -> 6px + - mobile.value: 12px -> 8px +- `field-top-to-progress-circle-large` + - desktop.value: 12px -> 9px + - mobile.value: 17px -> 11px +- `field-top-to-progress-circle-extra-large` + - desktop.value: 16px -> 11px + - mobile.value: 22px -> 15px +- `field-width` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 192px -> field-width-small + - mobile.schema: dimension.json -> alias.json + - mobile.value: 240px -> field-width-small +- `side-label-character-count-top-margin-small` + - schema: scale-set.json -> dimension.json + - uuid: ac75b149-e9f3-45df-aaa6-6a28ebf22458 -> a86ae363-b6b4-4da0-9630-97336922b3a1 +- `side-label-character-count-top-margin-medium` + - schema: scale-set.json -> dimension.json + - uuid: 8a6d587a-8d04-4f53-b86f-3f8cd17cfa3a -> 4d93210f-f01a-4d1c-8c10-2cb4b9d14626 +- `side-label-character-count-top-margin-large` + - schema: scale-set.json -> dimension.json + - uuid: 53f6909b-3f50-4962-932a-16db7acec5b1 -> e2d9e241-469a-4b03-bd6a-a105a8ed5e00 +- `side-label-character-count-top-margin-extra-large` + - schema: scale-set.json -> dimension.json + - uuid: c0972a55-7db7-4425-bd86-9e14688843a0 -> 9b1f15bf-ea4f-4f82-8c4f-3770b7f47353 +- `checkbox-control-size-small` + - schema: system-set.json -> scale-set.json +- `checkbox-control-size-medium` + - schema: system-set.json -> scale-set.json +- `checkbox-control-size-large` + - schema: system-set.json -> scale-set.json +- `checkbox-control-size-extra-large` + - schema: system-set.json -> scale-set.json +- `checkbox-top-to-control-small` + - schema: system-set.json -> scale-set.json +- `checkbox-top-to-control-medium` + - schema: system-set.json -> scale-set.json +- `checkbox-top-to-control-large` + - schema: system-set.json -> scale-set.json +- `checkbox-top-to-control-extra-large` + - schema: system-set.json -> scale-set.json +- `switch-control-width-small` + - schema: system-set.json -> scale-set.json +- `switch-control-width-medium` + - schema: system-set.json -> scale-set.json +- `switch-control-width-large` + - schema: system-set.json -> scale-set.json +- `switch-control-width-extra-large` + - schema: system-set.json -> scale-set.json +- `switch-control-height-small` + - schema: system-set.json -> scale-set.json +- `switch-control-height-medium` + - schema: system-set.json -> scale-set.json +- `switch-control-height-large` + - schema: system-set.json -> scale-set.json +- `switch-control-height-extra-large` + - schema: system-set.json -> scale-set.json +- `switch-top-to-control-small` + - schema: system-set.json -> scale-set.json +- `switch-top-to-control-medium` + - schema: system-set.json -> scale-set.json +- `switch-top-to-control-large` + - schema: system-set.json -> scale-set.json +- `switch-top-to-control-extra-large` + - schema: system-set.json -> scale-set.json +- `radio-button-control-size-small` + - schema: system-set.json -> scale-set.json +- `radio-button-control-size-medium` + - schema: system-set.json -> scale-set.json +- `radio-button-control-size-large` + - schema: system-set.json -> scale-set.json +- `radio-button-control-size-extra-large` + - schema: system-set.json -> scale-set.json +- `radio-button-top-to-control-small` + - schema: system-set.json -> scale-set.json +- `radio-button-top-to-control-medium` + - schema: system-set.json -> scale-set.json +- `radio-button-top-to-control-large` + - schema: system-set.json -> scale-set.json +- `radio-button-top-to-control-extra-large` + - schema: system-set.json -> scale-set.json +- `field-label-top-to-asterisk-extra-large` + - desktop.value: 19px -> 18px +- `field-label-top-margin-medium` + - schema: scale-set.json -> dimension.json + - uuid: 2e307771-487d-494a-97bb-ada56c157c60 -> b5243f56-7985-4686-b41f-9b9b9a18b047 +- `field-label-top-margin-large` + - schema: scale-set.json -> dimension.json + - uuid: 11679297-ddb6-43b6-870c-66bccaf9efb1 -> f7dd90d8-91e6-4090-a5a9-6b30087860a4 +- `field-label-top-margin-extra-large` + - schema: scale-set.json -> dimension.json + - uuid: 0d2b575a-2d70-40b1-b3c0-562a64529e81 -> 5c14d528-fe17-4b0b-a123-edbdb93fd173 +- `help-text-top-to-workflow-icon-small` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 4px -> component-top-to-workflow-icon-75 + - mobile.schema: dimension.json -> alias.json + - mobile.value: 5px -> component-top-to-workflow-icon-75 +- `help-text-top-to-workflow-icon-medium` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 3px -> component-top-to-workflow-icon-100 + - mobile.schema: dimension.json -> alias.json + - mobile.value: 4px -> component-top-to-workflow-icon-100 +- `help-text-top-to-workflow-icon-large` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 6px -> component-top-to-workflow-icon-200 + - mobile.schema: dimension.json -> alias.json + - mobile.value: 8px -> component-top-to-workflow-icon-200 +- `help-text-top-to-workflow-icon-extra-large` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 9px -> component-top-to-workflow-icon-300 + - mobile.schema: dimension.json -> alias.json + - mobile.value: 11px -> component-top-to-workflow-icon-300 +- `status-light-dot-size-small` + - schema: dimension.json -> scale-set.json +- `status-light-dot-size-medium` + - desktop.value: 8px -> 10px + - mobile.value: 10px -> 12px +- `status-light-dot-size-large` + - desktop.value: 10px -> 12px + - mobile.value: 12px -> 14px +- `status-light-dot-size-extra-large` + - desktop.value: 10px -> 14px + - mobile.value: 12px -> 16px +- `status-light-top-to-dot-small` + - mobile.value: 11px -> 10px +- `status-light-top-to-dot-medium` + - desktop.value: 12px -> 11px + - mobile.value: 15px -> 14px +- `status-light-top-to-dot-large` + - desktop.value: 15px -> 14px + - mobile.value: 19px -> 18px +- `status-light-top-to-dot-extra-large` + - desktop.value: 19px -> 17px + - mobile.value: 24px -> 22px +- `tooltip-tip-width` + - desktop.value: 8px -> 10px + - mobile.value: 10px -> 12px +- `tooltip-tip-height` + - desktop.value: 4px -> 5px + - mobile.value: 5px -> 6px +- `toast-height` + - desktop.value: 48px -> 52px + - mobile.value: 56px -> 60px +- `toast-top-to-workflow-icon` + - desktop.value: 15px -> 18px + - mobile.value: 17px -> 20px +- `toast-top-to-text` + - desktop.value: 14px -> 18px + - mobile.value: 16px -> 20px +- `toast-bottom-to-text` + - desktop.value: 17px -> 20px + - mobile.value: 19px -> 22px +- `action-bar-height` + - schema: scale-set.json -> alias.json + - uuid: 62695212-bc5e-4c3a-93c9-f4e112ef5117 -> e67822de-d0cd-4b49-8e90-6c43523bb4dd +- `action-bar-top-to-item-counter` + - schema: scale-set.json -> alias.json + - uuid: ec663da9-b374-477d-9222-cce2682bfaa5 -> 73f82d09-7927-461c-b7d7-ab0bc6b3e3f9 +- `meter-thickness-large` + - desktop.value: 6px -> 8px + - mobile.value: 8px -> 10px +- `popover-top-to-content-area` + - schema: scale-set.json -> alias.json + - uuid: 8b388882-bd89-46cb-882b-f3198e4af710 -> f97488e8-b1c1-442e-b98c-0ae6cff0b774 +- `menu-item-label-to-description` + - schema: dimension.json -> alias.json + - value: 1px -> menu-item-label-to-description-medium +- `menu-item-section-divider-height` + - value: 8px -> 12px +- `slider-track-thickness` + - schema: system-set.json -> dimension.json + - uuid: 538acb74-223d-4090-8be8-7a7e62a8c765 -> 50a71b8b-30fb-40c0-b81e-5ce0dcc8c96b +- `slider-control-height-small` + - schema: system-set.json -> scale-set.json +- `slider-control-height-medium` + - schema: system-set.json -> scale-set.json +- `slider-control-height-large` + - schema: system-set.json -> scale-set.json +- `slider-control-height-extra-large` + - schema: system-set.json -> scale-set.json +- `slider-handle-size-small` + - schema: system-set.json -> scale-set.json +- `slider-handle-size-medium` + - schema: system-set.json -> scale-set.json +- `slider-handle-size-large` + - schema: system-set.json -> scale-set.json +- `slider-handle-size-extra-large` + - schema: system-set.json -> scale-set.json +- `slider-handle-border-width-down-small` + - schema: system-set.json -> scale-set.json +- `slider-handle-border-width-down-medium` + - schema: system-set.json -> scale-set.json +- `slider-handle-border-width-down-large` + - schema: system-set.json -> scale-set.json +- `slider-handle-border-width-down-extra-large` + - schema: system-set.json -> scale-set.json +- `slider-handle-gap` + - schema: system-set.json -> dimension.json + - uuid: 5b61baab-5888-4690-9577-5829bc92a839 -> 1a257268-32e9-4c5c-8477-32a724ff1d42 +- `slider-bottom-to-handle-small` + - schema: system-set.json -> scale-set.json +- `slider-bottom-to-handle-medium` + - schema: system-set.json -> scale-set.json +- `slider-bottom-to-handle-large` + - schema: system-set.json -> scale-set.json +- `slider-bottom-to-handle-extra-large` + - schema: system-set.json -> scale-set.json +- `slider-control-to-field-label-small` + - desktop.value: 5px -> -4px + - mobile.value: 6px -> -8px +- `slider-control-to-field-label-medium` + - desktop.value: 8px -> -12px + - mobile.value: 10px -> -16px +- `slider-control-to-field-label-large` + - desktop.value: 11px -> -16px + - mobile.value: 14px -> -20px +- `slider-control-to-field-label-extra-large` + - desktop.value: 14px -> -20px + - mobile.value: 17px -> -28px +- `picker-border-width` + - schema: system-set.json -> alias.json + - uuid: 3eff4ac7-9246-42c7-a49a-b7fe961b13d1 -> 69c28762-f456-4641-b6ce-7cb295e3a27d +- `combo-box-visual-to-field-button-small` + - schema: scale-set.json -> alias.json + - uuid: 3c0b4b94-a765-4dd3-a2df-c72e9d1baa62 -> 5d054a3e-e4bb-4ca3-b84a-51b3d7fa2cb8 +- `combo-box-visual-to-field-button-medium` + - schema: scale-set.json -> alias.json + - uuid: 693dfa94-4a7a-47b3-b623-71471826b09b -> c5a4baf2-effe-4d9a-92f3-b4ead5440d36 +- `combo-box-visual-to-field-button-large` + - schema: scale-set.json -> alias.json + - uuid: 557ad551-fb5f-4b66-a40c-a1abf2fcb34d -> 356c4912-69c7-4a95-956b-c1aa78cb02cb +- `combo-box-visual-to-field-button-extra-large` + - schema: scale-set.json -> alias.json + - uuid: c75b058d-ee9f-462e-b03c-64c6f75e85ab -> 4a4ee415-1f25-4d36-928c-5ece0ce4abcc +- `combo-box-visual-to-field-button-quiet` + - schema: dimension.json -> alias.json + - value: 0px -> combo-box-visual-to-field-button +- `thumbnail-size-75` + - desktop.value: 18px -> 20px + - mobile.value: 22px -> 24px +- `thumbnail-size-100` + - desktop.value: 20px -> 24px + - mobile.value: 26px -> 28px +- `thumbnail-size-200` + - desktop.value: 22px -> 28px + - mobile.value: 28px -> 32px +- `thumbnail-size-300` + - desktop.value: 26px -> 32px + - mobile.value: 32px -> 36px +- `thumbnail-size-400` + - desktop.value: 28px -> 36px + - mobile.value: 36px -> 40px +- `thumbnail-size-500` + - desktop.value: 32px -> 40px + - mobile.value: 40px -> 44px +- `thumbnail-size-600` + - desktop.value: 36px -> 44px + - mobile.value: 46px -> 48px +- `thumbnail-size-700` + - desktop.value: 40px -> 48px + - mobile.value: 50px -> 52px +- `thumbnail-size-800` + - desktop.value: 44px -> 52px + - mobile.value: 55px -> 56px +- `thumbnail-size-900` + - desktop.value: 50px -> 56px + - mobile.value: 62px -> 64px +- `thumbnail-size-1000` + - desktop.value: 56px -> 64px + - mobile.value: 70px -> 72px +- `alert-dialog-title-size` + - schema: scale-set.json -> alias.json + - uuid: b1341b98-d28d-480d-aa8b-78a7c849ea88 -> 9b7ce1fc-ea8a-4d7b-a926-0accbd6b1197 +- `alert-dialog-description-size` + - schema: scale-set.json -> alias.json + - uuid: aa9edd54-4fb1-457f-b933-c8317314ceee -> 9dc42d1a-b87d-4a5d-a5a3-6afd4d5bd599 +- `opacity-checkerboard-square-size` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 8px -> opacity-checkerboard-square-size-medium + - mobile.schema: dimension.json -> alias.json + - mobile.value: 10px -> opacity-checkerboard-square-size-medium +- `contextual-help-title-size` + - schema: scale-set.json -> alias.json + - uuid: 4735b809-1359-482f-8af1-cd21ea34454a -> 5358fd6c-d9a0-4caa-a85e-af82ed82efaf +- `contextual-help-body-size` + - schema: scale-set.json -> alias.json + - uuid: 54ce0fa1-c891-4bdc-9e20-52b97993dbbc -> e458fa68-ab9c-4441-a7d5-a02f42df1cae +- `breadcrumbs-height` + - value: component-height-300 -> component-height-200 +- `breadcrumbs-height-compact` + - value: component-height-200 -> component-height-100 +- `breadcrumbs-height-multiline` + - mobile.value: 84px -> 90px +- `breadcrumbs-top-to-text` + - schema: scale-set.json -> alias.json + - uuid: 1a279535-7113-462a-86fe-d2bdd058b48f -> d084038e-bc31-43be-99ee-13cf727eaf9d +- `breadcrumbs-top-to-text-compact` + - schema: scale-set.json -> alias.json + - uuid: b5f8e8af-620d-4cfe-87ec-d6d21f776461 -> b19547e2-bd8f-435d-b726-4f2ce6a83984 +- `breadcrumbs-top-to-text-multiline` + - desktop.value: 12px -> 4px + - mobile.value: 15px -> 5px +- `breadcrumbs-bottom-to-text` + - schema: scale-set.json -> alias.json + - uuid: 9377b9d1-922c-40c9-8018-4cc528b6e778 -> f0e6a20d-8c2d-4aa3-9060-b6ca66aa7943 +- `breadcrumbs-bottom-to-text-compact` + - schema: scale-set.json -> alias.json + - uuid: 47b9651f-69a7-46af-ae94-196f62a61d1b -> 70a356be-c304-4bb4-a9df-97806931f089 +- `breadcrumbs-bottom-to-text-multiline` + - mobile.value: 10px -> 11px +- `breadcrumbs-start-edge-to-text` + - schema: scale-set.json -> alias.json + - uuid: 844de981-645a-4f24-bab6-6561b762f3c8 -> a0542dab-98fb-45d8-b4a0-79cfd2cc4f1c +- `breadcrumbs-top-to-separator-icon` + - schema: scale-set.json -> alias.json + - uuid: dd645f4d-18c9-41e9-bdd7-7a63cd40728f -> 15e56281-5fc1-4b59-b815-fc333231e364 +- `breadcrumbs-top-to-separator-icon-compact` + - schema: scale-set.json -> alias.json + - uuid: 6df1c933-7265-4a4f-bcff-93f0e12871f7 -> a63e8df1-124f-4f3e-9e1b-ba422b8d8257 +- `breadcrumbs-top-to-separator-icon-multiline` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 15px -> breadcrumbs-top-to-separator-multiline + - mobile.schema: dimension.json -> alias.json + - mobile.value: 20px -> breadcrumbs-separator-icon-to-bottom-text-multiline +- `breadcrumbs-separator-icon-to-bottom-text-multiline` + - schema: scale-set.json -> alias.json + - uuid: 442d74d2-69d2-47bd-b474-5e63c8844122 -> 56dd2fd0-c7a3-4f2c-bda9-8e6ba6d99e6c +- `breadcrumbs-truncated-menu-to-separator-icon` + - schema: dimension.json -> alias.json + - value: 0px -> breadcrumbs-truncated-menu-to-separator +- `breadcrumbs-top-to-truncated-menu` + - schema: scale-set.json -> dimension.json + - uuid: c39a7d2e-ded0-481a-8b9f-78aa4e1e0e76 -> 751734bd-1c58-4222-bbd8-8b2349f2fbd2 +- `breadcrumbs-top-to-truncated-menu-compact` + - schema: scale-set.json -> alias.json + - uuid: 6f36fa37-f5f5-49fe-9b06-e69e51a1fb46 -> e0aba287-799f-4621-97cb-563352002a20 +- `breadcrumbs-truncated-menu-to-bottom-text` + - schema: dimension.json -> scale-set.json +- `avatar-size-75` + - desktop.value: 18px -> 20px + - mobile.value: 22px -> 24px +- `avatar-size-100` + - desktop.value: 20px -> 24px + - mobile.value: 26px -> 28px +- `avatar-size-200` + - desktop.value: 22px -> 28px + - mobile.value: 28px -> 32px +- `avatar-size-300` + - desktop.value: 26px -> 32px + - mobile.value: 32px -> 36px +- `avatar-size-400` + - desktop.value: 28px -> 36px + - mobile.value: 36px -> 40px +- `avatar-size-500` + - desktop.value: 32px -> 40px + - mobile.value: 40px -> 44px +- `avatar-size-600` + - desktop.value: 36px -> 44px + - mobile.value: 46px -> 48px +- `avatar-size-700` + - desktop.value: 40px -> 48px + - mobile.value: 50px -> 52px +- `alert-banner-minimum-height` + - desktop.value: 48px -> 56px +- `alert-banner-top-to-workflow-icon` + - desktop.value: 15px -> 18px + - mobile.value: 21px -> 20px +- `alert-banner-top-to-text` + - desktop.value: 14px -> 18px +- `alert-banner-bottom-to-text` + - desktop.value: 17px -> 20px +- `color-area-border-rounding` + - value: corner-radius-100 -> corner-radius-medium-size-small +- `color-slider-border-rounding` + - schema: dimension.json -> alias.json + - value: 4px -> corner-radius-medium-size-small +- `illustrated-message-maximum-width` + - schema: dimension.json -> alias.json + - value: 380px -> illustrated-message-vertical-maximum-width +- `illustrated-message-title-size` + - schema: scale-set.json -> alias.json + - uuid: ef4d00df-ab62-4206-b101-728419d8eb8f -> 365ec548-431b-4e1e-9f9d-7b04d337f001 +- `illustrated-message-cjk-title-size` + - schema: scale-set.json -> alias.json + - uuid: d241cc79-d102-4732-afe2-fec515ba1d18 -> e77279df-bc62-441a-8a30-5faa41d0df10 +- `illustrated-message-body-size` + - schema: scale-set.json -> alias.json + - uuid: fed462be-2f98-4dcf-9822-53f7321a305d -> 4140710f-ae31-4ae3-b8b6-2d3eb6a1ae78 +- `search-field-minimum-width-multiplier` + - value: 3 -> 4 +- `card-minimum-width` + - component: cards -> card +- `card-preview-minimum-height` + - component: cards -> card +- `card-selection-background-size` + - component: cards -> card +- `drop-zone-border-dash-gap` + - value: 4px -> 6px +- `drop-zone-title-size` + - value: illustrated-message-title-size -> drop-zone-title-font-size +- `drop-zone-cjk-title-size` + - value: illustrated-message-cjk-title-size -> drop-zone-cjk-title-font-size +- `drop-zone-body-size` + - value: illustrated-message-body-size -> drop-zone-body-font-size +- `coach-mark-title-size` + - schema: scale-set.json -> alias.json + - uuid: fe336e37-83d3-4ede-ac92-1e8d2b015415 -> 331604db-3f28-472e-810d-9010ed2c8e33 +- `coach-mark-body-size` + - schema: scale-set.json -> alias.json + - uuid: c7ea57c3-9715-4347-aa19-efdbdd35b7e0 -> eba9f466-deda-48d5-a120-14419d5a670f +- `coach-mark-pagination-body-size` + - schema: scale-set.json -> alias.json + - uuid: 5a9623c0-37f0-4363-87ed-b015e9f73455 -> df8bc8ae-b6fa-4414-93b7-c89d8097fe11 +- `table-column-header-row-top-to-text-medium` + - desktop.value: 7px -> 6px +- `table-row-height-small-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 32px -> table-row-height-small + - mobile.schema: dimension.json -> alias.json + - mobile.value: 40px -> table-row-height-small +- `table-row-height-medium-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 40px -> table-row-height-medium + - mobile.schema: dimension.json -> alias.json + - mobile.value: 50px -> table-row-height-medium +- `table-row-height-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 48px -> table-row-height-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 60px -> table-row-height-large +- `table-row-height-extra-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 56px -> table-row-height-extra-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 70px -> table-row-height-extra-large +- `table-row-top-to-text-small-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 8px -> table-row-top-to-text-small + - mobile.schema: dimension.json -> alias.json + - mobile.value: 10px -> table-row-top-to-text-small +- `table-row-top-to-text-medium-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 11px -> table-row-top-to-text-medium + - mobile.schema: dimension.json -> alias.json + - mobile.value: 14px -> table-row-top-to-text-medium +- `table-row-top-to-text-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 14px -> table-row-top-to-text-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 18px -> table-row-top-to-text-large +- `table-row-top-to-text-extra-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 17px -> table-row-top-to-text-extra-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 21px -> table-row-top-to-text-extra-large +- `table-row-bottom-to-text-small-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 9px -> table-row-bottom-to-text-small + - mobile.schema: dimension.json -> alias.json + - mobile.value: 11px -> table-row-bottom-to-text-small +- `table-row-bottom-to-text-medium-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 12px -> table-row-bottom-to-text-medium + - mobile.schema: dimension.json -> alias.json + - mobile.value: 15px -> table-row-bottom-to-text-medium +- `table-row-bottom-to-text-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 14px -> table-row-bottom-to-text-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 18px -> table-row-bottom-to-text-large +- `table-row-bottom-to-text-extra-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 17px -> table-row-bottom-to-text-extra-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 22px -> table-row-bottom-to-text-extra-large +- `table-row-top-to-text-medium-spacious` + - mobile.value: 18px -> 16px +- `table-header-row-checkbox-to-top-medium` + - desktop.value: 9px -> 8px + - mobile.value: 13px -> 11px +- `table-row-checkbox-to-top-small-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 10px -> table-row-checkbox-to-top-small + - mobile.schema: dimension.json -> alias.json + - mobile.value: 14px -> table-row-checkbox-to-top-small +- `table-row-checkbox-to-top-medium-compact` + - desktop.value: 9px -> 8px + - mobile.value: 13px -> 11px +- `table-row-checkbox-to-top-medium-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 13px -> table-row-checkbox-to-top-medium + - mobile.schema: dimension.json -> alias.json + - mobile.value: 18px -> table-row-checkbox-to-top-medium +- `table-row-checkbox-to-top-medium-spacious` + - desktop.value: 17px -> 16px + - mobile.value: 23px -> 21px +- `table-row-checkbox-to-top-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 16px -> table-row-checkbox-to-top-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 22px -> table-row-checkbox-to-top-large +- `table-row-checkbox-to-top-extra-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 19px -> table-row-checkbox-to-top-extra-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 26px -> table-row-checkbox-to-top-extra-large +- `table-thumbnail-to-top-minimum-small-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 5px -> table-thumbnail-to-top-minimum-small + - mobile.schema: dimension.json -> alias.json + - mobile.value: 6px -> table-thumbnail-to-top-minimum-small +- `table-thumbnail-to-top-minimum-medium-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 7px -> table-thumbnail-to-top-minimum-medium + - mobile.schema: dimension.json -> alias.json + - mobile.value: 9px -> table-thumbnail-to-top-minimum-medium +- `table-thumbnail-to-top-minimum-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 8px -> table-thumbnail-to-top-minimum-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 10px -> table-thumbnail-to-top-minimum-large +- `table-thumbnail-to-top-minimum-extra-large-regular` + - desktop.schema: dimension.json -> alias.json + - desktop.value: 8px -> table-thumbnail-to-top-minimum-extra-large + - mobile.schema: dimension.json -> alias.json + - mobile.value: 10px -> table-thumbnail-to-top-minimum-extra-large +- `tab-item-height-small` + - component: tabs -> tab-item +- `tab-item-height-medium` + - component: tabs -> tab-item +- `tab-item-height-large` + - component: tabs -> tab-item +- `tab-item-height-extra-large` + - component: tabs -> tab-item +- `tab-item-compact-height-small` + - component: tabs -> tab-item +- `tab-item-compact-height-medium` + - component: tabs -> tab-item +- `tab-item-compact-height-large` + - component: tabs -> tab-item +- `tab-item-compact-height-extra-large` + - component: tabs -> tab-item +- `tab-item-to-tab-item-horizontal-small` + - component: tabs -> tab-item +- `tab-item-to-tab-item-horizontal-medium` + - component: tabs -> tab-item +- `tab-item-to-tab-item-horizontal-large` + - component: tabs -> tab-item +- `tab-item-to-tab-item-horizontal-extra-large` + - component: tabs -> tab-item +- `tab-item-to-tab-item-vertical-small` + - component: tabs -> tab-item +- `tab-item-to-tab-item-vertical-medium` + - component: tabs -> tab-item +- `tab-item-to-tab-item-vertical-large` + - component: tabs -> tab-item +- `tab-item-to-tab-item-vertical-extra-large` + - component: tabs -> tab-item +- `tab-item-start-to-edge-quiet` + - component: tabs -> tab-item +- `tab-item-start-to-edge-small` + - component: tabs -> tab-item +- `tab-item-start-to-edge-medium` + - component: tabs -> tab-item +- `tab-item-start-to-edge-large` + - component: tabs -> tab-item +- `tab-item-start-to-edge-extra-large` + - component: tabs -> tab-item +- `tab-item-top-to-text-small` + - component: tabs -> tab-item +- `tab-item-bottom-to-text-small` + - component: tabs -> tab-item +- `tab-item-top-to-text-medium` + - component: tabs -> tab-item +- `tab-item-bottom-to-text-medium` + - component: tabs -> tab-item +- `tab-item-top-to-text-large` + - component: tabs -> tab-item +- `tab-item-bottom-to-text-large` + - component: tabs -> tab-item +- `tab-item-top-to-text-extra-large` + - component: tabs -> tab-item +- `tab-item-bottom-to-text-extra-large` + - component: tabs -> tab-item +- `tab-item-top-to-text-compact-small` + - component: tabs -> tab-item +- `tab-item-bottom-to-text-compact-small` + - component: tabs -> tab-item +- `tab-item-top-to-text-compact-medium` + - component: tabs -> tab-item +- `tab-item-bottom-to-text-compact-medium` + - component: tabs -> tab-item +- `tab-item-top-to-text-compact-large` + - component: tabs -> tab-item +- `tab-item-bottom-to-text-compact-large` + - component: tabs -> tab-item +- `tab-item-top-to-text-compact-extra-large` + - component: tabs -> tab-item +- `tab-item-bottom-to-text-compact-extra-large` + - component: tabs -> tab-item +- `tab-item-top-to-workflow-icon-small` + - component: tabs -> tab-item +- `tab-item-top-to-workflow-icon-medium` + - component: tabs -> tab-item +- `tab-item-top-to-workflow-icon-large` + - component: tabs -> tab-item +- `tab-item-top-to-workflow-icon-extra-large` + - component: tabs -> tab-item +- `tab-item-top-to-workflow-icon-compact-small` + - component: tabs -> tab-item +- `tab-item-top-to-workflow-icon-compact-medium` + - component: tabs -> tab-item +- `tab-item-top-to-workflow-icon-compact-large` + - component: tabs -> tab-item +- `tab-item-top-to-workflow-icon-compact-extra-large` + - component: tabs -> tab-item +- `tab-item-focus-indicator-gap-small` + - component: tabs -> tab-item +- `tab-item-focus-indicator-gap-medium` + - component: tabs -> tab-item +- `tab-item-focus-indicator-gap-large` + - component: tabs -> tab-item +- `tab-item-focus-indicator-gap-extra-large` + - component: tabs -> tab-item +- `in-field-button-fill-stacked-inner-border-rounding` + - schema: system-set.json -> dimension.json + - uuid: 5cd31637-78a0-4d60-9d8f-8f07f5ba155e -> f8ed9a70-58f1-4f1a-9e87-24bca6d7b4e1 +- `in-field-button-edge-to-fill` + - schema: system-set.json -> dimension.json + - uuid: 8b2c325c-b6ee-4860-a34f-f423a3498a98 -> 5bffe992-2982-49e8-aa3a-e4e93c884f43 +- `in-field-button-stacked-inner-edge-to-fill` + - schema: system-set.json -> dimension.json + - uuid: 36087614-f5ac-46cd-86f9-2dc04796bd44 -> 56b54ece-0ff3-4957-9c1c-9e7fb992653c +- `in-field-button-outer-edge-to-disclosure-icon-stacked-medium` + - schema: system-set.json -> dimension.json + - uuid: 04a422cc-3370-44a1-9e55-b4e8260b5958 -> a87d68bb-4249-43cd-947d-bd061baba0ef +- `in-field-button-outer-edge-to-disclosure-icon-stacked-large` + - schema: system-set.json -> dimension.json + - uuid: e68a6c5f-6db6-4ef7-ac1c-9379c356d980 -> acc9c48a-f461-48ff-9f69-0224c4feabc6 +- `in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large` + - schema: system-set.json -> dimension.json + - uuid: 4f1d0ee9-6276-42fc-824e-a8362a6140c0 -> 391e1e67-1677-4f60-a09a-3b49bacd01f5 +- `in-field-button-inner-edge-to-disclosure-icon-stacked-small` + - schema: system-set.json -> alias.json + - uuid: afbf364e-a945-42fe-beaf-0177a9203cc4 -> 6c1330a4-1c89-45a7-b2b1-8cbcaf20b9ab +- `in-field-button-inner-edge-to-disclosure-icon-stacked-medium` + - schema: system-set.json -> alias.json + - uuid: 2f516c6f-df04-43ec-9890-151201764c40 -> 3dd5babb-5026-4f28-89ae-bfe687673f31 +- `in-field-button-inner-edge-to-disclosure-icon-stacked-large` + - schema: system-set.json -> alias.json + - uuid: cf1518d0-7040-4ac7-87b7-210518ceb7d1 -> 710ebe58-f0d8-4d6b-8974-0be1f2f48dc4 +- `in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large` + - schema: system-set.json -> alias.json + - uuid: e2f9f620-b8f0-4fb7-a9b0-e78f13a0ac03 -> c47499c1-b89f-49a7-bbb5-17e83e4b306e +- `arrow-icon-size-75` + - component: icon -> arrow-icon +- `arrow-icon-size-100` + - component: icon -> arrow-icon +- `arrow-icon-size-200` + - component: icon -> arrow-icon +- `arrow-icon-size-300` + - component: icon -> arrow-icon +- `arrow-icon-size-400` + - component: icon -> arrow-icon +- `arrow-icon-size-500` + - component: icon -> arrow-icon +- `arrow-icon-size-600` + - component: icon -> arrow-icon +- `asterisk-icon-size-75` + - component: icon -> asterisk-icon +- `asterisk-icon-size-100` + - component: icon -> asterisk-icon +- `asterisk-icon-size-200` + - component: icon -> asterisk-icon +- `asterisk-icon-size-300` + - component: icon -> asterisk-icon +- `checkmark-icon-size-50` + - component: icon -> checkmark-icon +- `checkmark-icon-size-75` + - component: icon -> checkmark-icon +- `checkmark-icon-size-100` + - component: icon -> checkmark-icon +- `checkmark-icon-size-200` + - component: icon -> checkmark-icon +- `checkmark-icon-size-300` + - component: icon -> checkmark-icon +- `checkmark-icon-size-400` + - component: icon -> checkmark-icon +- `checkmark-icon-size-500` + - component: icon -> checkmark-icon +- `checkmark-icon-size-600` + - component: icon -> checkmark-icon +- `chevron-icon-size-50` + - component: icon -> chevron-icon +- `chevron-icon-size-75` + - component: icon -> chevron-icon +- `chevron-icon-size-100` + - component: icon -> chevron-icon +- `chevron-icon-size-200` + - component: icon -> chevron-icon +- `chevron-icon-size-300` + - component: icon -> chevron-icon +- `chevron-icon-size-400` + - component: icon -> chevron-icon +- `chevron-icon-size-500` + - component: icon -> chevron-icon +- `chevron-icon-size-600` + - component: icon -> chevron-icon +- `cross-icon-size-75` + - component: icon -> cross-icon +- `cross-icon-size-100` + - component: icon -> cross-icon +- `cross-icon-size-200` + - component: icon -> cross-icon +- `cross-icon-size-300` + - component: icon -> cross-icon +- `cross-icon-size-400` + - component: icon -> cross-icon +- `cross-icon-size-500` + - component: icon -> cross-icon +- `cross-icon-size-600` + - component: icon -> cross-icon +- `dash-icon-size-50` + - component: icon -> dash-icon +- `dash-icon-size-75` + - component: icon -> dash-icon +- `dash-icon-size-100` + - component: icon -> dash-icon +- `dash-icon-size-200` + - component: icon -> dash-icon +- `dash-icon-size-300` + - component: icon -> dash-icon +- `dash-icon-size-400` + - component: icon -> dash-icon +- `dash-icon-size-500` + - component: icon -> dash-icon +- `dash-icon-size-600` + - component: icon -> dash-icon +- `accordion-top-to-text-spacious-small` + - desktop.uuid: 1f833f34-562b-4874-9f69-db74e80ffef1 -> 696ab6c1-0c23-4868-8d6c-039d6d430d29 + - mobile.uuid: 02e96927-9f33-4878-9ce0-bb825be84bcb -> 7bcbaaf1-f1d8-4755-acb2-5f6a45c3b9fe +- `icon-color-blue-primary-default` + - dark.uuid: bcb2d920-29fe-4911-bfd6-058ed81a1c76 -> 1bac9a3f-4bc8-4a4d-8dfd-53c542b1d1d8 +- `icon-color-green-primary-default` + - schema: color-set.json -> alias.json + - uuid: d403d8a1-3ac2-4f6d-9434-6aebe4f23991 -> a0717159-cc62-4ba1-b1f1-a69dfb88c6ee +- `icon-color-red-primary-default` + - dark.uuid: 5a1ef31d-a55d-44e2-9ce9-68c407ba8611 -> a60f2744-ad15-4cf7-b9dc-89ca307ed444 +- `icon-color-yellow-primary-default` + - dark.value: yellow-1000 -> yellow-1200 + - dark.uuid: 646e82ab-3762-47de-87ec-a39b68d59de9 -> 5ebf8291-23f8-4806-865d-4ebab38ff03c +- `transparent-white-100` + - value: rgba(255, 255, 255, 0) -> rgba(255, 255, 255, 0.11) +- `transparent-white-200` + - value: rgba(255, 255, 255, 0.1) -> rgba(255, 255, 255, 0.14) +- `transparent-white-300` + - value: rgba(255, 255, 255, 0.25) -> rgba(255, 255, 255, 0.17) +- `transparent-white-400` + - value: rgba(255, 255, 255, 0.4) -> rgba(255, 255, 255, 0.21) +- `transparent-white-500` + - value: rgba(255, 255, 255, 0.55) -> rgba(255, 255, 255, 0.39) +- `transparent-white-600` + - value: rgba(255, 255, 255, 0.7) -> rgba(255, 255, 255, 0.51) +- `transparent-white-700` + - value: rgba(255, 255, 255, 0.8) -> rgba(255, 255, 255, 0.66) +- `transparent-white-800` + - value: rgba(255, 255, 255, 0.9) -> rgba(255, 255, 255, 0.85) +- `transparent-white-900` + - value: rgb(255, 255, 255) -> rgba(255, 255, 255, 0.94) +- `transparent-black-100` + - value: rgba(0, 0, 0, 0) -> rgba(0, 0, 0, 0.09) +- `transparent-black-200` + - value: rgba(0, 0, 0, 0.1) -> rgba(0, 0, 0, 0.12) +- `transparent-black-300` + - value: rgba(0, 0, 0, 0.25) -> rgba(0, 0, 0, 0.15) +- `transparent-black-400` + - value: rgba(0, 0, 0, 0.4) -> rgba(0, 0, 0, 0.22) +- `transparent-black-500` + - value: rgba(0, 0, 0, 0.55) -> rgba(0, 0, 0, 0.44) +- `transparent-black-600` + - value: rgba(0, 0, 0, 0.7) -> rgba(0, 0, 0, 0.56) +- `transparent-black-700` + - value: rgba(0, 0, 0, 0.8) -> rgba(0, 0, 0, 0.69) +- `transparent-black-800` + - value: rgba(0, 0, 0, 0.9) -> rgba(0, 0, 0, 0.84) +- `transparent-black-900` + - value: rgb(0, 0, 0) -> rgba(0, 0, 0, 0.93) +- `gray-50` + - light.value: rgb(255, 255, 255) -> rgb(248, 248, 248) + - dark.value: rgb(29, 29, 29) -> rgb(27, 27, 27) + - dark.uuid: d5641118-4015-426d-bf92-7c63393b3775 -> 0913be1e-b648-4b80-9976-fd8e5e53f4fc +- `gray-75` + - light.value: rgb(253, 253, 253) -> rgb(243, 243, 243) + - dark.value: rgb(38, 38, 38) -> rgb(34, 34, 34) + - dark.uuid: 9a66da2c-7f73-4364-8674-85f794399e37 -> 1666d544-ad1b-445a-9a57-d2277fb752eb +- `gray-100` + - light.value: rgb(248, 248, 248) -> rgb(233, 233, 233) + - dark.value: rgb(50, 50, 50) -> rgb(44, 44, 44) + - dark.uuid: 4500355e-ce60-4046-b692-71301b6b1348 -> abd011c4-87a5-4b1f-82e2-e94d118f417f +- `gray-200` + - light.value: rgb(230, 230, 230) -> rgb(225, 225, 225) + - dark.value: rgb(63, 63, 63) -> rgb(50, 50, 50) + - dark.uuid: 352ca27b-fdb8-4a66-b46d-6e6994c6a19d -> 0a676e7a-8a89-4607-a918-3abcfb0234a2 +- `gray-300` + - light.value: rgb(213, 213, 213) -> rgb(218, 218, 218) + - dark.value: rgb(84, 84, 84) -> rgb(57, 57, 57) + - dark.uuid: 70fe1801-98f7-4cb8-a275-8cb9f180f2fc -> cc8c4299-c40d-4e93-80b2-c052ee8aaf40 +- `gray-400` + - light.value: rgb(177, 177, 177) -> rgb(198, 198, 198) + - dark.value: rgb(112, 112, 112) -> rgb(68, 68, 68) + - dark.uuid: 4ef9462d-9c24-4a0f-b205-0eb04bf242a2 -> c34dd99f-e576-4c98-a89d-86dd47514c55 +- `gray-500` + - light.value: rgb(144, 144, 144) -> rgb(143, 143, 143) + - dark.value: rgb(144, 144, 144) -> rgb(109, 109, 109) + - dark.uuid: c295d2a4-0711-40a0-904c-b8d0c7e1b724 -> 05808575-f14b-49d1-aefb-e3667ec0f5a4 +- `gray-600` + - light.value: rgb(109, 109, 109) -> rgb(113, 113, 113) + - dark.value: rgb(178, 178, 178) -> rgb(138, 138, 138) + - dark.uuid: 7c21df9e-eb58-44da-9bea-e2bacd494130 -> 8880b8f1-7850-49ef-a7ab-fd4e16cb37a6 +- `gray-700` + - light.value: rgb(70, 70, 70) -> rgb(80, 80, 80) + - dark.value: rgb(209, 209, 209) -> rgb(175, 175, 175) + - dark.uuid: 0b0dc002-bbda-46bf-a0fa-6d361009e31c -> 3cc563c6-386e-4b08-850d-68d4a292e559 +- `gray-800` + - light.value: rgb(34, 34, 34) -> rgb(41, 41, 41) + - dark.value: rgb(235, 235, 235) -> rgb(219, 219, 219) + - dark.uuid: bca0223a-6639-4881-a7a4-e131c28968e7 -> d39fc368-ec71-40cd-85e9-afb07862f2b7 +- `gray-900` + - light.value: rgb(0, 0, 0) -> rgb(19, 19, 19) + - dark.value: rgb(255, 255, 255) -> rgb(242, 242, 242) + - dark.uuid: 1ea0996b-81ab-4182-a86f-fd51a829eb96 -> 90d25d68-afb1-4b2a-9dba-3fe22d44976f +- `blue-100` + - light.value: rgb(224, 242, 255) -> rgb(245, 249, 255) + - dark.value: rgb(0, 56, 119) -> rgb(14, 23, 63) + - dark.uuid: 03fd9144-0640-4bb0-83bd-677a4e48c128 -> 7d56ac58-fd58-41b3-9bbd-448ae0a7dd85 + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `blue-200` + - light.value: rgb(202, 232, 255) -> rgb(229, 240, 254) + - dark.value: rgb(0, 65, 138) -> rgb(15, 28, 82) + - dark.uuid: acb6d305-c1d9-498a-9db3-5d8e921dccda -> 7b7d1fd8-cc1e-4053-b320-e481b8f64c46 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `blue-300` + - light.value: rgb(181, 222, 255) -> rgb(203, 226, 254) + - dark.value: rgb(0, 77, 163) -> rgb(12, 33, 117) + - dark.uuid: da78a0bb-b306-4ff2-8080-bdf21ca6bed3 -> d88d1685-29dc-486b-a0b9-9c90f60b8cde + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `blue-400` + - light.value: rgb(150, 206, 253) -> rgb(172, 207, 253) + - dark.value: rgb(0, 89, 194) -> rgb(18, 45, 154) + - dark.uuid: 9729fbd6-6eb6-4c91-a73e-d0bd3ffbd1f3 -> 29d339bb-ef80-40f8-a69b-afa778b60805 + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `blue-500` + - light.value: rgb(120, 187, 250) -> rgb(142, 185, 252) + - dark.value: rgb(3, 103, 224) -> rgb(26, 58, 195) + - dark.uuid: 209d7715-b78a-4265-908f-6d9a03e63bb1 -> a61ed901-7f77-4667-9d19-fff6bab20623 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `blue-600` + - light.value: rgb(89, 167, 246) -> rgb(114, 158, 253) + - dark.value: rgb(19, 121, 243) -> rgb(37, 73, 229) + - dark.uuid: 8e465599-1ad1-45f7-8db3-99caed033cfe -> 7e770996-780a-4494-91ea-08c1ae6cfa80 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `blue-700` + - light.value: rgb(56, 146, 243) -> rgb(93, 137, 255) + - dark.value: rgb(52, 143, 244) -> rgb(52, 91, 248) + - dark.uuid: 9260c8ad-9e25-4103-baf2-ea008746a2f7 -> 5cc66280-e13a-459d-8529-c3f531aa5e4e + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `blue-800` + - light.value: rgb(20, 122, 243) -> rgb(75, 117, 255) + - dark.value: rgb(84, 163, 246) -> rgb(64, 105, 253) + - dark.uuid: 10aaf031-3586-47a6-90f5-c698f6be5bd6 -> cf0bafc5-f5c6-4986-a17a-6660dc542b71 + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `blue-900` + - light.value: rgb(2, 101, 220) -> rgb(59, 99, 251) + - dark.value: rgb(114, 183, 249) -> rgb(86, 129, 255) + - dark.uuid: 2251d00a-e90d-4758-91af-50c1c37232fe -> 82b09b04-6a70-4a95-9eb5-a321a66a6465 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `blue-1000` + - light.value: rgb(0, 84, 182) -> rgb(39, 77, 234) + - dark.value: rgb(143, 202, 252) -> rgb(105, 149, 254) + - dark.uuid: f9a4d76d-cbf9-482d-b582-01462f1ca969 -> 147ed079-b4f0-4cd7-89cd-7ec93750d688 + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `blue-1100` + - light.value: rgb(0, 68, 145) -> rgb(29, 62, 207) + - dark.value: rgb(174, 219, 254) -> rgb(124, 169, 252) + - dark.uuid: 94fd01de-1609-4dad-8e91-c0ce904aa743 -> 2a5d2e32-930d-4c50-b1fd-6781a1dc1db5 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `blue-1200` + - light.value: rgb(0, 53, 113) -> rgb(21, 50, 173) + - dark.value: rgb(204, 233, 255) -> rgb(152, 192, 252) + - dark.uuid: 064dfc3f-d7fa-46c1-a4a4-21bc5b2f18d5 -> ce7da4ba-77ed-4bdd-a154-90f389af6c2a + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `blue-1300` + - light.value: rgb(0, 39, 84) -> rgb(16, 40, 140) + - dark.value: rgb(232, 246, 255) -> rgb(181, 213, 253) + - dark.uuid: 96f80a02-6ecf-4e17-b1f0-e508d8b0d422 -> 2bc63c0d-691c-4cc4-95b6-b4e530a44978 + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `blue-1400` + - light.value: rgb(0, 28, 60) -> rgb(12, 31, 105) + - dark.value: rgb(255, 255, 255) -> rgb(213, 231, 254) + - dark.uuid: 2d4fbd92-649f-457e-ad5c-39798f3da5a8 -> eb86d777-ec23-47e4-adc6-1203709dc00d + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `red-100` + - light.value: rgb(255, 235, 231) -> rgb(255, 246, 245) + - dark.value: rgb(123, 0, 0) -> rgb(54, 10, 3) + - dark.uuid: 9e721c6e-a111-411c-a892-55bf69fcd169 -> 04f6044b-d0fa-4705-858c-2dc5721ec30f + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `red-200` + - light.value: rgb(255, 221, 214) -> rgb(255, 235, 232) + - dark.value: rgb(141, 0, 0) -> rgb(68, 13, 5) + - dark.uuid: 803d7924-3746-43b0-ab32-6b4b5f4dae19 -> b18ca77b-898e-4e09-88e2-8901de3e9172 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `red-300` + - light.value: rgb(255, 205, 195) -> rgb(255, 214, 209) + - dark.value: rgb(165, 0, 0) -> rgb(87, 17, 7) + - dark.uuid: 330ceaaf-c223-44b9-9548-7ee41e6ca590 -> fcfcf026-be31-4a05-b833-6757cacb8b05 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `red-400` + - light.value: rgb(255, 183, 169) -> rgb(255, 188, 180) + - dark.value: rgb(190, 4, 3) -> rgb(115, 24, 11) + - dark.uuid: e3eb789d-b34a-467e-a195-77aaee2f0d6b -> 8f9fa135-5aca-4e42-b247-fdfbf74bc07b + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `red-500` + - light.value: rgb(255, 155, 136) -> rgb(255, 157, 145) + - dark.value: rgb(215, 25, 19) -> rgb(147, 31, 17) + - dark.uuid: c6b687eb-7999-4ef4-a680-aa15581db960 -> ec50a21c-88aa-41a8-b607-c8b1c407ac4f + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `red-600` + - light.value: rgb(255, 124, 101) -> rgb(255, 118, 101) + - dark.value: rgb(234, 56, 41) -> rgb(177, 38, 23) + - dark.uuid: b4423bfa-8732-42df-ba45-361d1987bc0b -> ff0fa040-17d6-4570-84b5-7a88c5bb9f45 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `red-700` + - light.value: rgb(247, 92, 70) -> rgb(255, 81, 61) + - dark.value: rgb(246, 88, 67) -> rgb(205, 46, 29) + - dark.uuid: ba040391-245e-4cd5-b499-9d3f9d82dedb -> cb2486de-b2be-45e5-b459-6e371b29d357 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `red-800` + - light.value: rgb(234, 56, 41) -> rgb(240, 56, 35) + - dark.value: rgb(255, 117, 94) -> rgb(223, 52, 34) + - dark.uuid: f1e2ab4f-0bca-4c9e-ac63-18d36726560e -> 9ff36ad0-608e-46a7-ab56-00af3d307d83 + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `red-900` + - light.value: rgb(211, 21, 16) -> rgb(215, 50, 32) + - dark.value: rgb(255, 149, 129) -> rgb(252, 67, 46) + - dark.uuid: c71c3423-88ee-4611-b07b-58630ce081f0 -> ccb79099-59f4-4bf2-b149-0de72f556a45 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `red-1000` + - light.value: rgb(180, 0, 0) -> rgb(183, 40, 24) + - dark.value: rgb(255, 176, 161) -> rgb(255, 103, 86) + - dark.uuid: e584aa4f-7e8f-4815-a9ca-f9804e233f5d -> 95621c5a-1768-4707-a2ce-bd15c61c89f4 + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `red-1100` + - light.value: rgb(147, 0, 0) -> rgb(156, 33, 19) + - dark.value: rgb(255, 201, 189) -> rgb(255, 134, 120) + - dark.uuid: 843a8bc9-646d-44e0-b6c0-728186ebc983 -> 53617d38-1075-4b47-87c7-4695b385a2d7 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `red-1200` + - light.value: rgb(116, 0, 0) -> rgb(129, 27, 14) + - dark.value: rgb(255, 222, 216) -> rgb(255, 167, 157) + - dark.uuid: 34ad97a7-a6ee-4240-9eef-596694bf6e6b -> e7820c1c-ff58-431d-b521-b81ee3281db0 + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `red-1300` + - light.value: rgb(89, 0, 0) -> rgb(104, 21, 10) + - dark.value: rgb(255, 241, 238) -> rgb(255, 196, 189) + - dark.uuid: 27f9bb17-392f-4707-971e-1f42ebf2b3d9 -> 7691bca6-3749-4cb7-a950-a94fe3d2910f + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `red-1400` + - light.value: rgb(67, 0, 0) -> rgb(80, 16, 6) + - dark.value: rgb(255, 255, 255) -> rgb(255, 222, 219) + - dark.uuid: bb706c45-98ac-4fbe-b838-d42d930d31c0 -> aaafa24c-cb3c-48cd-9cb7-e164be140ab5 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `orange-100` + - light.value: rgb(255, 236, 204) -> rgb(255, 246, 231) + - dark.value: rgb(102, 37, 0) -> rgb(49, 16, 0) + - dark.uuid: 507c23ac-f6a7-4820-b052-c129975eaa20 -> 974ab8ec-6691-4696-b38c-77e16fb3df88 + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `orange-200` + - light.value: rgb(255, 223, 173) -> rgb(255, 236, 207) + - dark.value: rgb(117, 45, 0) -> rgb(61, 21, 0) + - dark.uuid: abba55d6-d5e0-445a-af5f-c61b58ee148d -> 587d4ce3-4275-4d2a-916c-2b1bf78c38ea + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `orange-300` + - light.value: rgb(253, 210, 145) -> rgb(255, 218, 158) + - dark.value: rgb(137, 55, 0) -> rgb(80, 27, 0) + - dark.uuid: 38a3144d-99ef-4b82-9742-e15bf64bdae4 -> 74f40bbb-5afd-4c88-89d3-e69de9e2b604 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `orange-400` + - light.value: rgb(255, 187, 99) -> rgb(255, 193, 94) + - dark.value: rgb(158, 66, 0) -> rgb(106, 36, 0) + - dark.uuid: 88889af1-222d-466a-b283-2a5bf6b577c8 -> b912089a-b6c9-49ef-8a4b-0a1f6fbbe963 + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `orange-500` + - light.value: rgb(255, 160, 55) -> rgb(255, 162, 19) + - dark.value: rgb(180, 78, 0) -> rgb(135, 47, 0) + - dark.uuid: f447dc9f-3375-4b1e-8813-7952734f6aa6 -> 8a56b352-d7d4-45d4-b403-448557656dab + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `orange-600` + - light.value: rgb(246, 133, 17) -> rgb(252, 125, 0) + - dark.value: rgb(202, 93, 0) -> rgb(162, 59, 0) + - dark.uuid: 527058c0-0e17-42bc-903f-c43db0c9cb9d -> 27b198b5-bf02-476a-a440-84c9a5bd2ce3 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `orange-700` + - light.value: rgb(228, 111, 0) -> rgb(232, 106, 0) + - dark.value: rgb(225, 109, 0) -> rgb(185, 73, 0) + - dark.uuid: 7816c1b2-49da-455e-a21f-4e82011f4dca -> f9e84513-57d6-4786-b8db-c86055cebfc6 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `orange-800` + - light.value: rgb(203, 93, 0) -> rgb(212, 91, 0) + - dark.value: rgb(244, 129, 12) -> rgb(199, 82, 0) + - dark.uuid: 21d33346-5120-4b05-9d50-b027fd44c7a5 -> 5a88ed4e-94f9-4533-ab13-3995b5a60a5a + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `orange-900` + - light.value: rgb(177, 76, 0) -> rgb(194, 78, 0) + - dark.value: rgb(254, 154, 46) -> rgb(224, 100, 0) + - dark.uuid: c3569470-05da-4825-a9cc-3e7ea1699fcd -> 0fbe4f46-02a8-444d-ace5-c245c6f15112 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `orange-1000` + - light.value: rgb(149, 61, 0) -> rgb(167, 62, 0) + - dark.value: rgb(255, 181, 88) -> rgb(243, 117, 0) + - dark.uuid: 02631a05-4d8e-4eed-af1f-e6c1f8c9c031 -> 92e06ff6-8347-4320-9a98-3054ba458d0e + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `orange-1100` + - light.value: rgb(122, 47, 0) -> rgb(144, 51, 0) + - dark.value: rgb(253, 206, 136) -> rgb(255, 137, 0) + - dark.uuid: aacaf0f0-b22a-4b25-9c87-6119c04ff035 -> a571e2cd-2aff-4344-b608-45a48162cb61 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `orange-1200` + - light.value: rgb(97, 35, 0) -> rgb(118, 41, 0) + - dark.value: rgb(255, 225, 179) -> rgb(255, 173, 45) + - dark.uuid: 39d4fb83-3982-439c-a9f9-bd95ab2ba7e4 -> 8e3fe8e0-2b14-4331-869f-de2680ea60ac + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `orange-1300` + - light.value: rgb(73, 25, 1) -> rgb(95, 32, 0) + - dark.value: rgb(255, 242, 221) -> rgb(255, 201, 116) + - dark.uuid: 7f4eca34-effb-4749-8e80-b4b24dd96186 -> 06afaefe-7e0a-42e2-99b5-e62674e1185d + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `orange-1400` + - light.value: rgb(53, 18, 1) -> rgb(73, 24, 0) + - dark.value: rgb(255, 253, 249) -> rgb(255, 225, 178) + - dark.uuid: cf947ed5-5665-4b46-aead-e18f2477ed48 -> 9f2f551f-b606-48ce-9493-888587d3ccb6 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `yellow-100` + - light.value: rgb(251, 241, 152) -> rgb(255, 248, 204) + - dark.value: rgb(76, 54, 0) -> rgb(37, 23, 0) + - dark.uuid: f18c112a-3abe-4a68-b671-f4e0a4e9ee80 -> 7bef094a-1523-4392-a0ca-59c48409f17a + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `yellow-200` + - light.value: rgb(248, 231, 80) -> rgb(255, 241, 151) + - dark.value: rgb(88, 64, 0) -> rgb(47, 29, 0) + - dark.uuid: b5c57a8b-ba79-40ff-9710-016e4503f134 -> f4fdc925-63b3-4670-9f2b-a057c27c834a + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `yellow-300` + - light.value: rgb(248, 217, 4) -> rgb(255, 222, 44) + - dark.value: rgb(103, 76, 0) -> rgb(61, 39, 0) + - dark.uuid: 6735b5e5-4ce3-4fff-bb1f-497b8932c908 -> 238147c6-0302-4d43-b3a3-42df832c7857 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `yellow-400` + - light.value: rgb(232, 198, 0) -> rgb(245, 199, 0) + - dark.value: rgb(119, 89, 0) -> rgb(83, 52, 0) + - dark.uuid: e8802954-19e6-450c-a75a-7202e5a5023c -> 62ab6892-66ea-4b55-8c1a-fcc191d29717 + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `yellow-500` + - light.value: rgb(215, 179, 0) -> rgb(230, 175, 0) + - dark.value: rgb(136, 104, 0) -> rgb(107, 67, 0) + - dark.uuid: 5d1e7587-c787-43cf-a17c-3bd9acc800af -> efa1fdd8-4478-411a-892c-0ecf23939489 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `yellow-600` + - light.value: rgb(196, 159, 0) -> rgb(210, 149, 0) + - dark.value: rgb(155, 120, 0) -> rgb(130, 82, 0) + - dark.uuid: 6ce0efce-3c8c-4108-92b3-78f2088a7c83 -> 8ae3c5ec-aabe-47a0-b822-ba0907e67ed4 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `yellow-700` + - light.value: rgb(176, 140, 0) -> rgb(193, 131, 0) + - dark.value: rgb(174, 137, 0) -> rgb(151, 97, 0) + - dark.uuid: b0ccfc1b-2992-4d00-aa90-2990197f8a02 -> ac3e5d40-51eb-45aa-b4e0-87d3f6e8e359 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `yellow-800` + - light.value: rgb(155, 120, 0) -> rgb(175, 116, 0) + - dark.value: rgb(192, 156, 0) -> rgb(164, 106, 0) + - dark.uuid: aab14913-8d2a-428b-acb4-3c03529b4c20 -> 67e8d9aa-d843-4536-9c97-bd51e62da8ee + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `yellow-900` + - light.value: rgb(133, 102, 0) -> rgb(158, 102, 0) + - dark.value: rgb(211, 174, 0) -> rgb(186, 124, 0) + - dark.uuid: fba8d22e-6db1-4146-8554-8a9f819b09c3 -> a12f6cac-7fdc-4fd4-8120-ad957823ff6b + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `yellow-1000` + - light.value: rgb(112, 83, 0) -> rgb(134, 85, 0) + - dark.value: rgb(228, 194, 0) -> rgb(203, 141, 0) + - dark.uuid: 48c1ac65-4ffc-4bcc-b7c0-1c7263d1a5f2 -> 4cf4a500-37a2-4dd8-a243-14f6c012b53c + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `yellow-1100` + - light.value: rgb(91, 67, 0) -> rgb(114, 72, 0) + - dark.value: rgb(244, 213, 0) -> rgb(218, 159, 0) + - dark.uuid: d6609e5e-813f-40a3-ba85-81e8e4ba533a -> 4eee9daf-e19d-4e0b-b12d-4fdcc4852956 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `yellow-1200` + - light.value: rgb(72, 51, 0) -> rgb(93, 59, 0) + - dark.value: rgb(249, 232, 92) -> rgb(235, 183, 0) + - dark.uuid: e652bbeb-ea99-466e-aba9-ab40c8af690d -> 69059dfa-e2e1-4f8d-b06b-058a8724e071 + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `yellow-1300` + - light.value: rgb(54, 37, 0) -> rgb(75, 47, 0) + - dark.value: rgb(252, 246, 187) -> rgb(249, 206, 0) + - dark.uuid: ce6cae94-1b85-4a88-a582-c16750e2994d -> b2a1039c-cbfe-44bf-a0fe-822c5f576f52 + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `yellow-1400` + - light.value: rgb(40, 26, 0) -> rgb(56, 35, 0) + - dark.value: rgb(255, 255, 255) -> rgb(255, 230, 86) + - dark.uuid: bf7b43f5-b6b9-4ba5-bbd1-406145088d66 -> dfd355e7-82fd-4fdb-96bd-b584d7268ee9 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `chartreuse-100` + - light.value: rgb(219, 252, 110) -> rgb(246, 251, 222) + - dark.value: rgb(48, 64, 0) -> rgb(23, 28, 0) + - dark.uuid: fe55390b-676c-42c3-bcaa-fc5295d59c3c -> bdc6a473-3109-44c6-9e2f-198d3224d75f + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `chartreuse-200` + - light.value: rgb(203, 244, 67) -> rgb(234, 246, 173) + - dark.value: rgb(55, 74, 0) -> rgb(30, 36, 0) + - dark.uuid: 76dda145-58f8-448a-b37a-2f4b2d4f7fdd -> b18f4550-5bbe-496c-b4a5-13df8fd0c7d7 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `chartreuse-300` + - light.value: rgb(188, 233, 42) -> rgb(208, 236, 70) + - dark.value: rgb(65, 87, 0) -> rgb(39, 47, 0) + - dark.uuid: 4dd24fac-30ad-45a2-825f-3573c84496e8 -> b98dec90-df71-4593-946d-91df7918caac + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `chartreuse-400` + - light.value: rgb(170, 216, 22) -> rgb(182, 219, 0) + - dark.value: rgb(76, 102, 0) -> rgb(53, 63, 0) + - dark.uuid: ba474593-d290-441c-8077-b74c098f59d2 -> 6a974b7d-ccd2-4778-baae-8caf419a529c + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `chartreuse-500` + - light.value: rgb(152, 197, 10) -> rgb(163, 196, 0) + - dark.value: rgb(89, 118, 0) -> rgb(68, 82, 0) + - dark.uuid: 234a0a76-ffd8-4d22-8d66-21e0f84c42d2 -> 46d8fd3b-0e51-4cdd-a33c-de184b82dcc5 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `chartreuse-600` + - light.value: rgb(135, 177, 3) -> rgb(143, 172, 0) + - dark.value: rgb(102, 136, 0) -> rgb(83, 100, 0) + - dark.uuid: efd39a1a-549c-4742-918b-bec4ea48539b -> 965174d2-e743-41df-a8e2-570b2ae2f447 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `chartreuse-700` + - light.value: rgb(118, 156, 0) -> rgb(128, 153, 0) + - dark.value: rgb(117, 154, 0) -> rgb(97, 116, 0) + - dark.uuid: d8876d4a-e6d0-447b-80ec-3804221d4b7b -> a615bb51-0249-4201-b1c9-1c6269b82ec2 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `chartreuse-800` + - light.value: rgb(103, 136, 0) -> rgb(114, 137, 0) + - dark.value: rgb(132, 173, 1) -> rgb(106, 127, 0) + - dark.uuid: 82546f0c-0707-4767-ad1f-2fae18434d91 -> 343f1685-2314-4a64-bc7a-5b7b3fd9fdcf + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `chartreuse-900` + - light.value: rgb(87, 116, 0) -> rgb(102, 122, 0) + - dark.value: rgb(148, 192, 8) -> rgb(122, 147, 0) + - dark.uuid: 8a0c7b2d-66fc-499a-bb16-fd18a42ef2ed -> 1637c50e-88e4-4273-8a75-6e8a233a690c + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `chartreuse-1000` + - light.value: rgb(72, 96, 0) -> rgb(86, 103, 0) + - dark.value: rgb(166, 211, 18) -> rgb(136, 164, 0) + - dark.uuid: 7feea643-ca0a-4aca-8acf-da425fbe99a4 -> 7dbedc59-e21c-4953-a7af-5e91d170604a + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `chartreuse-1100` + - light.value: rgb(58, 77, 0) -> rgb(73, 87, 0) + - dark.value: rgb(184, 229, 37) -> rgb(151, 181, 0) + - dark.uuid: 550e1eb2-bbe0-4a14-8e53-d15dc06cee35 -> 90417b40-97dd-47b3-9dbc-4ac45f8e4a5f + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `chartreuse-1200` + - light.value: rgb(44, 59, 0) -> rgb(60, 71, 0) + - dark.value: rgb(205, 245, 71) -> rgb(169, 203, 0) + - dark.uuid: 07b5da40-2e3c-43bf-959a-45ceb8bf9940 -> e4b04d5d-e99d-41c5-8b24-540d653ef3ff + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `chartreuse-1300` + - light.value: rgb(33, 44, 0) -> rgb(47, 57, 0) + - dark.value: rgb(231, 254, 154) -> rgb(187, 225, 0) + - dark.uuid: 3ab82f98-3b65-4412-adef-57c1e4833421 -> 615841b9-08b2-4e21-981a-b8f5247e9e89 + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `chartreuse-1400` + - light.value: rgb(24, 31, 0) -> rgb(35, 43, 0) + - dark.value: rgb(255, 255, 255) -> rgb(219, 240, 117) + - dark.uuid: 5ac81a8e-2997-4b8f-aa21-ca335b0f3cfe -> a75188c9-02e3-4337-8056-9a6f8f39001f + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `celery-100` + - light.value: rgb(205, 252, 191) -> rgb(235, 255, 220) + - dark.value: rgb(0, 69, 10) -> rgb(11, 31, 0) + - dark.uuid: c711d2ee-7915-40f4-bf2e-ac3f31d60311 -> 43feed9a-9a2a-44e0-9506-9bc5eb8eab1d + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `celery-200` + - light.value: rgb(174, 246, 157) -> rgb(197, 255, 156) + - dark.value: rgb(0, 80, 12) -> rgb(15, 38, 0) + - dark.uuid: 96d6a7b1-617c-44db-9ef3-d70063895351 -> 741a30fb-62a9-4c76-a78e-cc2590af9c7d + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `celery-300` + - light.value: rgb(150, 238, 133) -> rgb(157, 247, 92) + - dark.value: rgb(0, 94, 14) -> rgb(21, 51, 1) + - dark.uuid: b1432da5-d086-4e16-b7dd-fd9d92fef470 -> 5eda4487-8f82-48ed-8b22-aa38601bbf88 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `celery-400` + - light.value: rgb(114, 224, 106) -> rgb(129, 228, 58) + - dark.value: rgb(0, 109, 15) -> rgb(31, 67, 4) + - dark.uuid: c573ed43-0055-47ff-8c3b-de32582b521e -> 646d80c1-7073-4e13-bbfe-4bd0c2226079 + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `celery-500` + - light.value: rgb(78, 207, 80) -> rgb(110, 206, 42) + - dark.value: rgb(0, 127, 15) -> rgb(41, 86, 8) + - dark.uuid: 350fb94c-ae2b-4843-808c-a8b6a55a0596 -> 7d4c282b-78ce-4b2c-ab39-26bf02366e4d + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `celery-600` + - light.value: rgb(39, 187, 54) -> rgb(93, 180, 31) + - dark.value: rgb(0, 145, 18) -> rgb(50, 105, 11) + - dark.uuid: f24733a3-e55f-467d-b757-4ebf620b8c22 -> 260d8921-3810-4a5d-a20f-cd00170cf951 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `celery-700` + - light.value: rgb(7, 167, 33) -> rgb(82, 161, 25) + - dark.value: rgb(4, 165, 30) -> rgb(60, 122, 15) + - dark.uuid: 983d90f4-9b72-4a6b-a6fd-7934e425a305 -> 7e7e6abb-a2e9-4308-ac8e-e6866ec17c64 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `celery-800` + - light.value: rgb(0, 145, 18) -> rgb(72, 144, 20) + - dark.value: rgb(34, 184, 51) -> rgb(66, 134, 18) + - dark.uuid: 8f3ec908-66e4-48da-b129-9bb3420e11e5 -> 3b130e0d-eb9b-49e6-84db-eda6ee95eee5 + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `celery-900` + - light.value: rgb(0, 124, 15) -> rgb(64, 129, 17) + - dark.value: rgb(68, 202, 73) -> rgb(78, 154, 23) + - dark.uuid: 48c0f87a-4d30-4626-b7f0-3e697f08ed49 -> 706f3a95-ab27-497f-aab7-f4ed806eef30 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `celery-1000` + - light.value: rgb(0, 103, 15) -> rgb(52, 109, 12) + - dark.value: rgb(105, 220, 99) -> rgb(88, 172, 28) + - dark.uuid: c2f2caa8-d043-4213-a79e-23a0868e62f7 -> 021a55b8-26ae-4767-82fb-06b20c58762b + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `celery-1100` + - light.value: rgb(0, 83, 13) -> rgb(44, 92, 9) + - dark.value: rgb(142, 235, 127) -> rgb(100, 190, 35) + - dark.uuid: dcb055d0-c653-4b49-8b40-93d4d8b6e25e -> e091babe-6e02-4393-a67e-63222ab860b4 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `celery-1200` + - light.value: rgb(0, 64, 10) -> rgb(35, 75, 6) + - dark.value: rgb(180, 247, 162) -> rgb(116, 213, 46) + - dark.uuid: 73da5344-395b-43ff-bb50-7dd5f2dbc225 -> 9913e84a-4070-476f-a570-a16781a924cf + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `celery-1300` + - light.value: rgb(0, 48, 7) -> rgb(27, 60, 3) + - dark.value: rgb(221, 253, 211) -> rgb(136, 234, 65) + - dark.uuid: 82e856f7-e76e-4b5b-be5b-46d3eb113c5f -> d2d8dc91-da75-4c56-a0d8-e6e9802434ad + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `celery-1400` + - light.value: rgb(0, 34, 5) -> rgb(19, 46, 0) + - dark.value: rgb(255, 255, 255) -> rgb(170, 251, 112) + - dark.uuid: 963eafe6-3738-4470-a5dd-938e9f9c15aa -> c5c3c68c-8293-4ebb-a8d1-9f4af902906e + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `green-100` + - light.value: rgb(206, 248, 224) -> rgb(237, 252, 241) + - dark.value: rgb(4, 67, 41) -> rgb(0, 30, 23) + - dark.uuid: c13e61ca-4448-47fe-ab6b-156a62e18057 -> e5a14d4a-47c5-4a53-84c5-589a0749d906 + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `green-200` + - light.value: rgb(173, 244, 206) -> rgb(215, 247, 225) + - dark.value: rgb(0, 78, 47) -> rgb(0, 38, 29) + - dark.uuid: df621308-02ad-49b0-9be3-10aa387bca77 -> e8f294f5-cb17-4fdc-b370-ca2e3f95d342 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `green-300` + - light.value: rgb(137, 236, 188) -> rgb(173, 238, 197) + - dark.value: rgb(0, 92, 56) -> rgb(0, 51, 38) + - dark.uuid: 14b4ff49-4ab1-48a6-aa1e-806c6cadaa62 -> cd5e0471-a8c0-46cd-b98c-be3a74c2b6d2 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `green-400` + - light.value: rgb(103, 222, 168) -> rgb(107, 227, 162) + - dark.value: rgb(0, 108, 67) -> rgb(0, 68, 48) + - dark.uuid: ae488b77-a511-4ef2-846c-55b336525eec -> c5e88879-9773-446c-883e-96531bcb8fad + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `green-500` + - light.value: rgb(73, 204, 147) -> rgb(43, 209, 125) + - dark.value: rgb(0, 125, 78) -> rgb(2, 87, 58) + - dark.uuid: 7be03fbf-6ce6-4707-8628-ec9ae3465f47 -> 27649ccc-69a8-48d6-9d52-6d6e2e28ae17 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `green-600` + - light.value: rgb(47, 184, 128) -> rgb(18, 184, 103) + - dark.value: rgb(0, 143, 93) -> rgb(3, 106, 67) + - dark.uuid: 7cdbd4d6-643d-49f2-9c00-aef6f6b98eef -> a0513e49-8483-40f8-8b8f-41fdc222f13d + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `green-700` + - light.value: rgb(21, 164, 110) -> rgb(11, 164, 93) + - dark.value: rgb(18, 162, 108) -> rgb(4, 124, 75) + - dark.uuid: 4c105995-9269-4655-9bbd-bb50f9cdca4a -> 9c24175e-34a5-46c8-b646-f70c08292776 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `green-800` + - light.value: rgb(0, 143, 93) -> rgb(7, 147, 85) + - dark.value: rgb(43, 180, 125) -> rgb(6, 136, 80) + - dark.uuid: 5471d254-44e5-4317-a6d6-eb24279c0b03 -> 412da16e-4db2-47d8-84d4-583ae35534f9 + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `green-900` + - light.value: rgb(0, 122, 77) -> rgb(5, 131, 78) + - dark.value: rgb(67, 199, 143) -> rgb(9, 157, 89) + - dark.uuid: 21cb58fb-f173-4348-9b70-1b20683b7a65 -> 5afee2ee-a5d5-4dcf-a917-11dfdd0c3691 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `green-1000` + - light.value: rgb(0, 101, 62) -> rgb(3, 110, 69) + - dark.value: rgb(94, 217, 162) -> rgb(14, 175, 98) + - dark.uuid: d2fb208c-73f2-42c6-a27e-bd4f8832b25f -> 3d6732a1-a1f9-4e18-927b-93cebaae3895 + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `green-1100` + - light.value: rgb(0, 81, 50) -> rgb(2, 93, 60) + - dark.value: rgb(129, 233, 184) -> rgb(24, 193, 110) + - dark.uuid: 4a310c88-9def-42fe-ad5e-1153d185a5fe -> a2f8f6c6-07b4-43a4-8f59-995ea2bf4e82 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `green-1200` + - light.value: rgb(5, 63, 39) -> rgb(1, 76, 52) + - dark.value: rgb(177, 244, 209) -> rgb(57, 215, 134) + - dark.uuid: 53ba43a9-2d41-4a55-9193-0d569e939993 -> 07fa1b72-bf84-4fd5-9565-28373fae6a1f + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `green-1300` + - light.value: rgb(10, 46, 29) -> rgb(0, 61, 44) + - dark.value: rgb(223, 250, 234) -> rgb(126, 231, 172) + - dark.uuid: 7a024876-6c60-4df1-863d-beda1d572bd6 -> c5ec27ed-3a16-44fe-bb8d-a21edd2f4d73 + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `green-1400` + - light.value: rgb(10, 32, 21) -> rgb(0, 46, 34) + - dark.value: rgb(254, 255, 252) -> rgb(189, 241, 208) + - dark.uuid: b07f7383-d795-49e5-9dac-1d448d978624 -> df5458e5-891b-4a88-a96c-748a812978a7 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `seafoam-100` + - light.value: rgb(206, 247, 243) -> rgb(235, 251, 246) + - dark.value: rgb(18, 65, 63) -> rgb(0, 30, 27) + - dark.uuid: d668ef92-6475-40e4-9837-d607fbb6b1ef -> 080b56a3-6f95-422a-9f4b-d850966c4984 + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `seafoam-200` + - light.value: rgb(170, 241, 234) -> rgb(211, 246, 234) + - dark.value: rgb(14, 76, 73) -> rgb(0, 39, 35) + - dark.uuid: 05f93ec8-51ce-40fc-8609-0f7b6237c68f -> 2876bdd7-af97-4cd6-89cc-bdb9c2110946 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `seafoam-300` + - light.value: rgb(140, 233, 226) -> rgb(169, 237, 216) + - dark.value: rgb(4, 90, 87) -> rgb(0, 50, 44) + - dark.uuid: 7a5a19a8-fb25-4771-9972-837db8c65e9d -> d90b7496-0f54-41ce-96eb-c973457661ae + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `seafoam-400` + - light.value: rgb(101, 218, 210) -> rgb(92, 225, 194) + - dark.value: rgb(0, 105, 101) -> rgb(0, 67, 59) + - dark.uuid: d98c80fb-6f43-46bb-ac9a-227cf134ca67 -> ec603c2c-b2b2-4769-a889-ba7c91a458eb + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `seafoam-500` + - light.value: rgb(63, 201, 193) -> rgb(16, 207, 169) + - dark.value: rgb(0, 122, 117) -> rgb(2, 86, 75) + - dark.uuid: a4a5e461-575d-4ae5-9b0b-985b6b8e70b1 -> c24b866c-5ac0-49de-857b-48c655fa9990 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `seafoam-600` + - light.value: rgb(15, 181, 174) -> rgb(13, 181, 149) + - dark.value: rgb(0, 140, 135) -> rgb(4, 105, 89) + - dark.uuid: dbc0b9aa-b312-43fd-b412-e2013caf91d7 -> 73b58f7e-008b-44ae-8969-19d981d444d6 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `seafoam-700` + - light.value: rgb(0, 161, 154) -> rgb(11, 162, 134) + - dark.value: rgb(0, 158, 152) -> rgb(6, 122, 103) + - dark.uuid: 3fd24914-a5c7-4d79-b73a-3dfb135dd75b -> 0b8528e6-ceea-47a5-9727-24e97d7bc138 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `seafoam-800` + - light.value: rgb(0, 140, 135) -> rgb(9, 144, 120) + - dark.value: rgb(3, 178, 171) -> rgb(8, 134, 112) + - dark.uuid: 49b5ed44-a22b-4565-a09f-1e7ebc1bc63e -> df8f47d4-5c3b-4ecb-b9fb-5d2dbd39d696 + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `seafoam-900` + - light.value: rgb(0, 119, 114) -> rgb(7, 129, 109) + - dark.value: rgb(54, 197, 189) -> rgb(10, 154, 128) + - dark.uuid: 5bbc257f-e7b9-46eb-a591-dbe2ad1850b7 -> dca23a18-2b19-48bf-9894-2f0948f6c05e + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `seafoam-1000` + - light.value: rgb(0, 99, 95) -> rgb(5, 108, 92) + - dark.value: rgb(93, 214, 207) -> rgb(12, 173, 142) + - dark.uuid: e134295a-a409-4143-b656-98b6e9cb40bd -> c416b5c5-0506-419f-88ca-f722f12a9d86 + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `seafoam-1100` + - light.value: rgb(12, 79, 76) -> rgb(3, 92, 80) + - dark.value: rgb(132, 230, 223) -> rgb(14, 190, 156) + - dark.uuid: 9f1e7783-21c4-4890-9f61-af5423aaec37 -> 4a853bfc-f1b0-4e39-8cd8-da0350c99cd5 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `seafoam-1200` + - light.value: rgb(18, 60, 58) -> rgb(1, 75, 67) + - dark.value: rgb(176, 242, 236) -> rgb(29, 214, 176) + - dark.uuid: 0f47e0b5-6612-4014-b074-e9a6817f9a37 -> 8e4c65b7-d819-4ffd-9398-71e9d294ba63 + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `seafoam-1300` + - light.value: rgb(18, 44, 43) -> rgb(0, 60, 54) + - dark.value: rgb(223, 249, 246) -> rgb(122, 229, 203) + - dark.uuid: ec37ce56-739c-4f91-a36c-6e56480aa822 -> ef35ace8-870d-42e0-8ce6-2df61415431f + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `seafoam-1400` + - light.value: rgb(15, 31, 30) -> rgb(0, 46, 40) + - dark.value: rgb(254, 255, 254) -> rgb(186, 241, 222) + - dark.uuid: 06b4eb8e-ff63-4345-a37f-67d5f48edb1b -> 9499384b-336c-4a41-af05-645a92ae40d4 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `cyan-100` + - light.value: rgb(197, 248, 255) -> rgb(238, 250, 254) + - dark.value: rgb(0, 61, 98) -> rgb(0, 29, 39) + - dark.uuid: efe22abb-6616-4456-81a0-37ee1951aba1 -> 24a8bb5a-93c3-4dd1-9ea2-d48c11479fe7 + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `cyan-200` + - light.value: rgb(164, 240, 255) -> rgb(217, 244, 253) + - dark.value: rgb(0, 71, 111) -> rgb(0, 36, 49) + - dark.uuid: 73ab4a44-d2ef-45e7-a810-6c067657ce40 -> 3445cf4b-2460-4692-acf2-71844d687da4 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `cyan-300` + - light.value: rgb(136, 231, 250) -> rgb(183, 231, 252) + - dark.value: rgb(0, 85, 127) -> rgb(0, 48, 65) + - dark.uuid: f9868f72-1d95-4040-a223-659f98ba702f -> e4bcf4fc-aaec-49a5-a2bb-6bb55e7fff47 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `cyan-400` + - light.value: rgb(96, 216, 243) -> rgb(138, 213, 255) + - dark.value: rgb(0, 100, 145) -> rgb(0, 64, 88) + - dark.uuid: f20b54ee-fabd-4b7a-8d96-78e355a77e96 -> 94a5bd53-d69a-4063-b630-1976230d4f2d + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `cyan-500` + - light.value: rgb(51, 197, 232) -> rgb(92, 192, 255) + - dark.value: rgb(0, 116, 162) -> rgb(0, 82, 113) + - dark.uuid: d300a6ab-8f25-4a0f-b861-6023fb33d38a -> 909baeef-fd2f-4550-89ea-fb7ac9ea2db5 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `cyan-600` + - light.value: rgb(18, 176, 218) -> rgb(48, 167, 254) + - dark.value: rgb(0, 134, 180) -> rgb(3, 99, 140) + - dark.uuid: bb07fb46-9ca3-4e0d-b004-97ec2bc4a5f0 -> d753ef33-bfc0-424b-a2ac-ea87ecbee590 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `cyan-700` + - light.value: rgb(1, 156, 200) -> rgb(29, 149, 231) + - dark.value: rgb(0, 153, 198) -> rgb(8, 115, 168) + - dark.uuid: 5f971006-82ff-4793-aa03-82c2e21bebf0 -> 3cb348d4-14a9-43da-84c4-068cf46c8c6f + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `cyan-800` + - light.value: rgb(0, 134, 180) -> rgb(18, 134, 205) + - dark.value: rgb(14, 173, 215) -> rgb(13, 125, 186) + - dark.uuid: d87d8d1d-570f-4c3a-8736-f71bcc265c44 -> ee8673ca-c39c-437e-b3a5-416f4e8664d3 + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `cyan-900` + - light.value: rgb(0, 113, 159) -> rgb(11, 120, 179) + - dark.value: rgb(44, 193, 230) -> rgb(24, 142, 220) + - dark.uuid: 807d5e18-52ee-4b22-9bf3-b969c83e01ba -> 9c183829-4858-4908-b1ac-d89f40f2e903 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `cyan-1000` + - light.value: rgb(0, 93, 137) -> rgb(4, 102, 145) + - dark.value: rgb(84, 211, 241) -> rgb(38, 159, 244) + - dark.uuid: 162dd4e2-ce25-431c-9849-cb4ab0625c51 -> 04f3d463-9118-43d5-973d-8bf94417912d + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `cyan-1100` + - light.value: rgb(0, 74, 115) -> rgb(0, 87, 121) + - dark.value: rgb(127, 228, 249) -> rgb(63, 177, 255) + - dark.uuid: db93015d-b200-4437-8399-aec786c338db -> 62a7ebff-a49b-4e7a-981f-692a506b4146 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `cyan-1200` + - light.value: rgb(0, 57, 93) -> rgb(0, 71, 98) + - dark.value: rgb(167, 241, 255) -> rgb(107, 199, 255) + - dark.uuid: 3245ab92-850f-440d-bec6-1cdc34ab38b8 -> 36a2af99-eef4-476b-a3b8-58eade0931b7 + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `cyan-1300` + - light.value: rgb(0, 42, 70) -> rgb(0, 57, 78) + - dark.value: rgb(215, 250, 255) -> rgb(152, 219, 255) + - dark.uuid: 3bdb98f7-2dad-4c35-96e4-b009cbc01180 -> 5f3df12b-1330-4482-ad34-c623bd36253c + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `cyan-1400` + - light.value: rgb(0, 30, 51) -> rgb(0, 43, 59) + - dark.value: rgb(255, 255, 255) -> rgb(195, 236, 252) + - dark.uuid: 5bd12e39-1386-49d5-af4f-d9f7dd1c549c -> fe63b8a3-ebb9-45fe-99c2-e246b53e06a6 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `indigo-100` + - light.value: rgb(237, 238, 255) -> rgb(247, 248, 255) + - dark.value: rgb(40, 44, 140) -> rgb(30, 0, 93) + - dark.uuid: 4a856cd1-643f-485c-991b-c94a750277dc -> e60cb247-c265-4009-9f0a-bcbbbb801dd4 + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `indigo-200` + - light.value: rgb(224, 226, 255) -> rgb(235, 238, 255) + - dark.value: rgb(47, 52, 163) -> rgb(35, 0, 110) + - dark.uuid: 4d6f5e35-b3bd-4215-a135-f7b2b67447e0 -> 56c709dd-b41e-478a-8098-21014e3f9ec8 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `indigo-300` + - light.value: rgb(211, 213, 255) -> rgb(216, 222, 255) + - dark.value: rgb(57, 63, 187) -> rgb(47, 0, 140) + - dark.uuid: 6209d9c9-3639-4fdd-83de-904ca5ae5638 -> 716f244e-67c5-4566-b824-ed7f2192b585 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `indigo-400` + - light.value: rgb(193, 196, 255) -> rgb(192, 201, 255) + - dark.value: rgb(70, 75, 211) -> rgb(62, 12, 174) + - dark.uuid: 3d843f10-9396-43de-a855-a18b412b53fc -> c256e06e-07bc-4dcd-9239-48841916c93b + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `indigo-500` + - light.value: rgb(172, 175, 255) -> rgb(167, 178, 255) + - dark.value: rgb(85, 91, 231) -> rgb(79, 30, 209) + - dark.uuid: 1283a5f4-4a5d-4d59-a1ea-5bdd3e0396c5 -> 1ea0564b-6e88-456e-a796-4620d57b8771 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `indigo-600` + - light.value: rgb(149, 153, 255) -> rgb(145, 151, 254) + - dark.value: rgb(104, 109, 244) -> rgb(95, 52, 235) + - dark.uuid: c71827e0-5782-4b4f-b198-c6d7d4077249 -> df590853-ce16-4ddf-bbe9-a912695eae17 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `indigo-700` + - light.value: rgb(126, 132, 252) -> rgb(132, 128, 254) + - dark.value: rgb(124, 129, 251) -> rgb(109, 75, 248) + - dark.uuid: 5fc6c5cb-3072-46c6-a8b0-b88091835ff4 -> 0ea3a7e0-35c5-46ec-ae9d-500c5ee06a16 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `indigo-800` + - light.value: rgb(104, 109, 244) -> rgb(122, 106, 253) + - dark.value: rgb(145, 149, 255) -> rgb(116, 91, 252) + - dark.uuid: 9b272e22-81ba-4e31-a220-b79c4181c96f -> 97e84a30-1de4-4e84-8d59-e625f9ec9ab1 + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `indigo-900` + - light.value: rgb(82, 88, 228) -> rgb(113, 85, 250) + - dark.value: rgb(167, 170, 255) -> rgb(128, 119, 254) + - dark.uuid: 3282c01c-7b68-4999-a12e-ee389a6f9ea1 -> 5cb7ff5e-ec53-4df8-b59d-a1419190a6cf + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `indigo-1000` + - light.value: rgb(64, 70, 202) -> rgb(99, 56, 238) + - dark.value: rgb(188, 190, 255) -> rgb(139, 141, 254) + - dark.uuid: 3fab75f4-9161-4040-88ca-0af98b1236fd -> 0bf6170c-50d7-4600-96fe-2d1af93f173a + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `indigo-1100` + - light.value: rgb(50, 54, 168) -> rgb(84, 36, 219) + - dark.value: rgb(208, 210, 255) -> rgb(153, 161, 255) + - dark.uuid: c537ba0b-c81a-40f3-8255-5be0491ca2a6 -> c85ea1d9-e28d-46c5-abd0-c053858770e0 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `indigo-1200` + - light.value: rgb(38, 41, 134) -> rgb(69, 19, 191) + - dark.value: rgb(226, 228, 255) -> rgb(176, 186, 255) + - dark.uuid: f9446b63-346f-4490-b975-929bdbb12655 -> 91f9622a-03b4-47b0-b380-5f6d64c13b5d + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `indigo-1300` + - light.value: rgb(27, 30, 100) -> rgb(55, 6, 160) + - dark.value: rgb(243, 243, 254) -> rgb(199, 208, 255) + - dark.uuid: 11e00286-b34f-44c7-ba95-ab2e07990106 -> c0bfd081-7859-4ed5-aa4c-c1f547dab8f3 + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `indigo-1400` + - light.value: rgb(20, 22, 72) -> rgb(42, 0, 129) + - dark.value: rgb(255, 255, 255) -> rgb(223, 228, 255) + - dark.uuid: ee07f360-a89e-49e6-baf5-462b84133aed -> 080f9ea4-1d87-4691-adb7-3875a7708555 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `purple-100` + - light.value: rgb(246, 235, 255) -> rgb(251, 247, 254) + - dark.value: rgb(76, 13, 157) -> rgb(41, 0, 79) + - dark.uuid: 1d180da0-3c21-488e-b017-728194ed8578 -> ffc5aa7a-c339-4583-a586-3e8b1329d16d + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `purple-200` + - light.value: rgb(238, 221, 255) -> rgb(244, 235, 252) + - dark.value: rgb(89, 17, 177) -> rgb(50, 0, 96) + - dark.uuid: bad41b06-2848-4eb0-a3a0-6c2b90da8630 -> 2d67627b-372c-46af-b015-6c95bd027664 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `purple-300` + - light.value: rgb(230, 208, 255) -> rgb(235, 218, 249) + - dark.value: rgb(105, 28, 200) -> rgb(64, 0, 122) + - dark.uuid: 22929eab-9a55-48b1-9798-d04d9bbea6cf -> be628028-f41d-4ace-abf3-f7f38ecb2e01 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `purple-400` + - light.value: rgb(219, 187, 254) -> rgb(221, 193, 246) + - dark.value: rgb(122, 45, 218) -> rgb(83, 0, 159) + - dark.uuid: d2c6a538-52af-4dc0-8318-b35453ffe8c4 -> 474fed30-921a-4795-8999-2310521c64c5 + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `purple-500` + - light.value: rgb(204, 164, 253) -> rgb(208, 167, 243) + - dark.value: rgb(140, 65, 233) -> rgb(107, 6, 195) + - dark.uuid: 3a969a81-eefb-468b-8889-1ad5b47c361f -> b912e8ba-ed77-4179-9b80-7448f9e37193 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `purple-600` + - light.value: rgb(189, 139, 252) -> rgb(191, 138, 238) + - dark.value: rgb(157, 87, 243) -> rgb(130, 34, 215) + - dark.uuid: 694dda5b-71ac-4169-b71e-65fe62650098 -> 05638159-aaf7-4f3e-849e-a46e80cd9ee6 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `purple-700` + - light.value: rgb(174, 114, 249) -> rgb(178, 114, 235) + - dark.value: rgb(172, 111, 249) -> rgb(148, 62, 224) + - dark.uuid: 84640df4-6e8f-4e2c-893c-187875bf8e2c -> fb186f5e-72a8-4a27-8ba2-d2fdf53d5a5c + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `purple-800` + - light.value: rgb(157, 87, 244) -> rgb(166, 92, 231) + - dark.value: rgb(187, 135, 251) -> rgb(157, 78, 228) + - dark.uuid: 421e2e18-233d-40d8-81ed-b777d7b4539b -> 30aae683-83e3-47a1-bdcb-ebe658e110a3 + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `purple-900` + - light.value: rgb(137, 61, 231) -> rgb(154, 71, 226) + - dark.value: rgb(202, 159, 252) -> rgb(173, 105, 233) + - dark.uuid: c767aaa3-0818-4404-a921-94f924159b8f -> 12d86845-fd54-4d30-aac8-bb9451560ba5 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `purple-1000` + - light.value: rgb(115, 38, 211) -> rgb(134, 40, 217) + - dark.value: rgb(215, 182, 254) -> rgb(186, 127, 237) + - dark.uuid: 8c16ea42-3e31-41e3-9492-73f1a554079c -> e527a3bd-3543-4b40-8a9c-eb465695bdb9 + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `purple-1100` + - light.value: rgb(93, 19, 183) -> rgb(115, 13, 204) + - dark.value: rgb(228, 204, 254) -> rgb(197, 149, 240) + - dark.uuid: b45da3d4-6b07-451e-8960-ac7bca1e4da2 -> 18265c0a-e466-4575-a364-3dfda9e71bd4 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `purple-1200` + - light.value: rgb(71, 12, 148) -> rgb(93, 0, 177) + - dark.value: rgb(239, 223, 255) -> rgb(212, 176, 244) + - dark.uuid: 5bac1ada-9c00-4243-af3a-bc3727745035 -> ae071768-dcdd-4e30-8f72-d066abac97af + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `purple-1300` + - light.value: rgb(51, 16, 106) -> rgb(75, 0, 144) + - dark.value: rgb(249, 240, 255) -> rgb(225, 201, 247) + - dark.uuid: 5e3bbc6d-1489-48ca-b5a1-423288727b1d -> fbaaff02-da93-4f45-830a-5fc449a58f0b + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `purple-1400` + - light.value: rgb(35, 15, 73) -> rgb(59, 0, 111) + - dark.value: rgb(255, 253, 255) -> rgb(238, 224, 250) + - dark.uuid: ae3f64d4-ed66-4d97-b7e5-65ee395f7883 -> 9ae063c9-5817-45b4-9f57-4b2196c845b9 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `fuchsia-100` + - light.value: rgb(255, 233, 252) -> rgb(254, 246, 255) + - dark.value: rgb(107, 3, 106) -> rgb(50, 0, 61) + - dark.uuid: fcf73bd6-3852-429a-9095-14524c2efea3 -> 3a434405-c4b0-40ef-b383-7cb9a9b60cab + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `fuchsia-200` + - light.value: rgb(255, 218, 250) -> rgb(253, 233, 255) + - dark.value: rgb(123, 0, 123) -> rgb(61, 0, 74) + - dark.uuid: 57ce4570-03d7-45a8-8f6c-85a2994fb067 -> 779ec441-475d-41de-b207-3e139c7c3168 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `fuchsia-300` + - light.value: rgb(254, 199, 248) -> rgb(250, 211, 255) + - dark.value: rgb(144, 0, 145) -> rgb(79, 0, 95) + - dark.uuid: a297d901-18ab-4da0-a5fa-d9749e8ea9db -> 5fa7110f-0c33-4139-8277-eff40921939e + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `fuchsia-400` + - light.value: rgb(251, 174, 246) -> rgb(247, 181, 255) + - dark.value: rgb(165, 13, 166) -> rgb(102, 9, 120) + - dark.uuid: 7eb42bf3-0008-4e2c-a085-0c0b0a56deba -> a81bfdd6-4b80-4f1a-922d-2f6e04c27e01 + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `fuchsia-500` + - light.value: rgb(245, 146, 243) -> rgb(243, 147, 255) + - dark.value: rgb(185, 37, 185) -> rgb(127, 23, 146) + - dark.uuid: 5a5a7aac-7494-40d2-93c8-66e828c2397e -> 7ecdb8fa-7c4b-4392-bca8-a00a9b931cb4 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `fuchsia-600` + - light.value: rgb(237, 116, 237) -> rgb(236, 105, 255) + - dark.value: rgb(205, 57, 206) -> rgb(151, 38, 170) + - dark.uuid: 90ef0274-fb46-469e-a8d4-030b88dfe969 -> 0fb76488-9965-4cf9-878f-ceed7fc2be43 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `fuchsia-700` + - light.value: rgb(224, 85, 226) -> rgb(223, 77, 245) + - dark.value: rgb(223, 81, 224) -> rgb(173, 51, 192) + - dark.uuid: 3cebbadd-c690-493d-a36e-fc55d99d4b4b -> 5f971453-aa30-4c1f-8cbc-be45ff042fcd + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `fuchsia-800` + - light.value: rgb(205, 58, 206) -> rgb(200, 68, 220) + - dark.value: rgb(235, 110, 236) -> rgb(186, 60, 206) + - dark.uuid: 163fa258-c7a0-433a-bf26-875d55e2ba70 -> 5848fed6-5b42-42ef-9800-8f32e42cf6ba + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `fuchsia-900` + - light.value: rgb(182, 34, 183) -> rgb(181, 57, 200) + - dark.value: rgb(244, 140, 242) -> rgb(213, 73, 235) + - dark.uuid: d0d6c85c-233c-4394-b6a3-ac326b70992f -> 3c6d42c9-4cba-4373-a61c-c8617c509f92 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `fuchsia-1000` + - light.value: rgb(157, 3, 158) -> rgb(156, 40, 175) + - dark.value: rgb(250, 168, 245) -> rgb(232, 91, 253) + - dark.uuid: 31064db2-1b72-47c3-909d-339589204458 -> a13d5f15-e4cc-4f7c-928f-aaccbf0d590e + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `fuchsia-1100` + - light.value: rgb(128, 0, 129) -> rgb(135, 27, 154) + - dark.value: rgb(254, 194, 248) -> rgb(240, 122, 255) + - dark.uuid: 135ce68a-832c-4903-b1e3-39b0c2e4f10b -> 0a4eb3af-d067-4d9f-af91-66c676e49e26 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `fuchsia-1200` + - light.value: rgb(100, 6, 100) -> rgb(113, 15, 131) + - dark.value: rgb(255, 219, 250) -> rgb(245, 159, 255) + - dark.uuid: 6c569c3e-48fe-4bde-8521-7b63d8c4a37d -> 0d93ff9f-63e8-4caf-9e7b-714e56d968d4 + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `fuchsia-1300` + - light.value: rgb(71, 14, 70) -> rgb(92, 4, 109) + - dark.value: rgb(255, 239, 252) -> rgb(248, 191, 255) + - dark.uuid: 712ba0be-7bd6-42d1-a1db-ba4aebb7eb28 -> abd44b32-b837-4e11-95c7-4ba1c34db44b + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `fuchsia-1400` + - light.value: rgb(50, 13, 49) -> rgb(72, 0, 88) + - dark.value: rgb(255, 253, 255) -> rgb(251, 219, 255) + - dark.uuid: 9b3a54f9-d94b-4a21-9145-5891d0cf1405 -> 7c819391-d74c-4326-ae0d-fe3534eb44e3 + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `magenta-100` + - light.value: rgb(255, 234, 241) -> rgb(255, 245, 248) + - dark.value: rgb(118, 0, 58) -> rgb(59, 0, 22) + - dark.uuid: c49f033b-6e6f-4945-b199-af3ad874e8ea -> 9149371a-1978-4136-a89c-8895edd35e7d + - wireframe.value: rgb(242, 245, 251) -> rgb(246, 248, 252) +- `magenta-200` + - light.value: rgb(255, 220, 232) -> rgb(255, 232, 240) + - dark.value: rgb(137, 0, 66) -> rgb(74, 0, 27) + - dark.uuid: 28ea9b3a-7802-4f3e-a576-9ca1e217a7e4 -> f5ffc5b3-d3e6-4d7e-b8a8-850324b5d9b8 + - wireframe.value: rgb(237, 241, 250) -> rgb(235, 239, 248) +- `magenta-300` + - light.value: rgb(255, 202, 221) -> rgb(255, 213, 227) + - dark.value: rgb(160, 0, 77) -> rgb(93, 0, 34) + - dark.uuid: 8a21b266-6888-4f68-9f44-7026634d6bdf -> 673ab9b4-e296-4472-b0b5-15adf9f1f762 + - wireframe.value: rgb(233, 238, 248) -> rgb(216, 224, 242) +- `magenta-400` + - light.value: rgb(255, 178, 206) -> rgb(255, 185, 208) + - dark.value: rgb(182, 18, 90) -> rgb(123, 0, 45) + - dark.uuid: d0319094-27f1-4634-b436-07f1a0ade2ab -> 60560de2-28e6-44b4-bcff-f357fe13a4a7 + - wireframe.value: rgb(226, 232, 247) -> rgb(192, 205, 234) +- `magenta-500` + - light.value: rgb(255, 149, 189) -> rgb(255, 152, 187) + - dark.value: rgb(203, 38, 109) -> rgb(152, 7, 60) + - dark.uuid: 60a7cd2d-5c88-4fbe-8180-6840d52678fc -> 830123a6-0e42-4c4f-9b20-2f4204d37af8 + - wireframe.value: rgb(216, 225, 244) -> rgb(164, 183, 225) +- `magenta-600` + - light.value: rgb(250, 119, 170) -> rgb(255, 112, 159) + - dark.value: rgb(222, 61, 130) -> rgb(181, 19, 76) + - dark.uuid: f7dd5e8b-4c41-4385-8d96-a984b62051be -> e6b14a1d-e26e-41c4-b386-7fb3f95b8c93 + - wireframe.value: rgb(203, 215, 241) -> rgb(135, 160, 215) +- `magenta-700` + - light.value: rgb(239, 90, 152) -> rgb(255, 72, 133) + - dark.value: rgb(237, 87, 149) -> rgb(207, 31, 92) + - dark.uuid: 3f07950a-4823-4826-9d78-d7b450c9e961 -> 11055a6b-7e81-4b59-9feb-8b0b6352be07 + - wireframe.value: rgb(190, 205, 237) -> rgb(113, 142, 208) +- `magenta-800` + - light.value: rgb(222, 61, 130) -> rgb(240, 45, 110) + - dark.value: rgb(249, 114, 167) -> rgb(224, 38, 101) + - dark.uuid: 7903bf4c-e957-4e84-b0c0-276c80e9a4d9 -> 6676db79-7b7e-4fcf-868b-321f9372517a + - wireframe.value: rgb(173, 192, 233) -> rgb(93, 127, 201) +- `magenta-900` + - light.value: rgb(200, 34, 105) -> rgb(217, 35, 97) + - dark.value: rgb(255, 143, 185) -> rgb(255, 51, 119) + - dark.uuid: f316b3d8-5763-4166-94fe-664f477dd76f -> fa5e523e-7ee3-46d0-971f-4ee95c7222b8 + - wireframe.value: rgb(154, 177, 227) -> rgb(74, 111, 195) +- `magenta-1000` + - light.value: rgb(173, 9, 85) -> rgb(186, 22, 80) + - dark.value: rgb(255, 172, 202) -> rgb(255, 96, 149) + - dark.uuid: 6eeb3d6f-9eab-459c-b34c-e25c9ea107a4 -> bdabbfb5-1ae6-44a7-bc2e-55e11f4e5154 + - wireframe.value: rgb(133, 161, 219) -> rgb(61, 94, 165) +- `magenta-1100` + - light.value: rgb(142, 0, 69) -> rgb(163, 5, 62) + - dark.value: rgb(255, 198, 218) -> rgb(255, 128, 171) + - dark.uuid: 36c81f83-2299-4569-b133-4300d49fa3c2 -> 548a74eb-4401-44f4-85b4-921287d84ac9 + - wireframe.value: rgb(114, 145, 211) -> rgb(52, 79, 140) +- `magenta-1200` + - light.value: rgb(112, 0, 55) -> rgb(136, 0, 51) + - dark.value: rgb(255, 221, 233) -> rgb(255, 163, 194) + - dark.uuid: 72e2e0cb-7512-4e3b-8ac6-42a63a746e2b -> 9c634688-1ad5-438b-bd44-a92c64ef9934 + - wireframe.value: rgb(96, 130, 201) -> rgb(42, 65, 114) +- `magenta-1300` + - light.value: rgb(84, 3, 42) -> rgb(111, 0, 40) + - dark.value: rgb(255, 240, 245) -> rgb(255, 193, 214) + - dark.uuid: b1caf781-77c9-48eb-84a5-507d84b6cdf4 -> 6c441ca7-0294-462f-ac18-7b28ff20d7ff + - wireframe.value: rgb(82, 117, 192) -> rgb(34, 51, 91) +- `magenta-1400` + - light.value: rgb(60, 6, 29) -> rgb(86, 0, 30) + - dark.value: rgb(255, 252, 253) -> rgb(255, 220, 232) + - dark.uuid: 2dcf8d47-a293-4ed2-bac5-2f935ed7ca5b -> 15f36ded-01af-4c5d-8b11-45523e7d908e + - wireframe.value: rgb(74, 109, 184) -> rgb(25, 39, 69) +- `static-blue-900` + - uuid: a77887aa-da75-41bd-8bc1-43e41ab5132f -> e193b8bb-6a0b-4c23-9851-83634f3797f8 +- `static-blue-1000` + - uuid: fe65be29-fd3b-4712-84c9-d8ef84a94a53 -> 8402b6ad-f3da-4ea2-8b55-174a9794950d +- `static-fuchsia-900` + - uuid: 6d329081-9b84-47d5-a7ec-e01726a22c3c -> 7629af9c-2f91-449e-a82f-c60a771b0e6f +- `static-fuchsia-1000` + - uuid: b7318f1c-ce64-43f3-b405-f71554b22f69 -> 0aee9ad6-2d79-4479-bdb6-aafa07a98673 +- `static-indigo-900` + - uuid: b458f7a4-eb22-4741-9a5a-f65c9f4a4e63 -> 970ddf30-3683-4f48-9ac7-8a9e42902fd3 +- `static-indigo-1000` + - uuid: c938f37b-23a3-424a-b6de-9fe3289e9b46 -> fb3003ec-6793-47b0-947d-a89e642652fc +- `static-magenta-900` + - uuid: dff48efb-7044-427f-94ad-625e1a5780ab -> 5b34bb1d-a23e-4799-ad59-8fa8f51d3726 +- `static-magenta-1000` + - uuid: a8375133-a8ba-4537-83ab-83b6948adcd8 -> 058a8ff9-740d-4e11-bdb6-7473a77f872b +- `static-red-900` + - uuid: f76d5058-5a46-4678-b467-2f7cb1b97297 -> d31011ef-7270-4c83-802d-05701ae9a3c8 +- `static-red-1000` + - uuid: c6d6fd48-385e-4e39-98e7-e4d7d7f060ed -> 3a65213c-4d36-48ec-8bf9-1b163a81299d +- `swatch-border-color` + - value: gray-900 -> gray-1000 +- `swatch-border-opacity` + - value: 0.51 -> 0.42 +- `swatch-disabled-icon-border-opacity` + - value: 0.51 -> 0.42 +- `opacity-checkerboard-square-dark` + - dark.uuid: 5dbb3e96-fe86-43a2-be8b-3ceecfe2d5ba -> f783b8cb-d31f-46c2-b550-990639752510 +- `color-area-border-color` + - value: gray-900 -> gray-1000 +- `color-slider-border-color` + - value: gray-900 -> gray-1000 +- `color-loupe-drop-shadow-color` + - value: transparent-black-300 -> drop-shadow-elevated-color +- `color-loupe-drop-shadow-y` + - schema: dimension.json -> alias.json + - value: 2px -> drop-shadow-elevated-y +- `color-loupe-drop-shadow-blur` + - schema: dimension.json -> alias.json + - value: 8px -> drop-shadow-elevated-blur +- `card-selection-background-color` + - component: cards -> card +- `card-selection-background-color-opacity` + - component: cards -> card +- `overlay-opacity` + - dark.value: 0.5 -> 0.6 + - dark.uuid: df41eb51-872f-458d-9439-910064f74b7b -> 31d5b502-6266-4309-8f8a-3892e6e158da +- `drop-shadow-color` + - schema: color-set.json -> alias.json + - uuid: 4467906f-b4e1-48d9-bd5f-cfec4052c47d -> be45ace6-9227-41d1-80be-0c58c3f8b3cb +- `background-base-color` + - schema: color-set.json -> alias.json + - uuid: 44807783-e21a-42a9-b880-2cebdaa11e0c -> e0d8739d-18dd-44bc-92ea-e443882a780b +- `background-layer-1-color` + - schema: color-set.json -> alias.json + - uuid: b3e813b0-a76f-42b8-98f2-3c8a4090a4c5 -> 7e6678b7-2903-434b-8ee2-06c83815b01d +- `background-layer-2-color` + - light.value: gray-50 -> gray-25 + - dark.value: gray-100 -> gray-75 + - dark.uuid: dd462fc7-bd79-4b52-9411-adf317832989 -> e30b7936-6ae7-4ada-8892-94a1f67d55c9 +- `neutral-background-color-default` + - schema: color-set.json -> alias.json + - uuid: 0c809329-bfc8-4802-a5f8-feecc0ce6018 -> 95cf1481-f476-47ce-a45a-54da64b44255 +- `neutral-background-color-hover` + - schema: color-set.json -> alias.json + - uuid: 68fad5b1-bbbe-4337-b98e-bb9b605ea006 -> 142f9467-e519-4ed7-bd98-69a31e876e70 +- `neutral-background-color-down` + - schema: color-set.json -> alias.json + - uuid: b25017fb-d8a3-4e90-9f6d-2e1bebdffb10 -> 5a0fdda5-6ac2-4a31-a7b9-6b3a5dd868d6 +- `neutral-background-color-key-focus` + - schema: color-set.json -> alias.json + - uuid: ddbc3e84-ae77-435b-93e6-da50c7a949e0 -> f52c6bfb-2d62-4fc8-a1cd-6c8d7420eeb4 +- `neutral-background-color-selected-default` + - schema: system-set.json -> alias.json + - uuid: 1cd150bf-e900-4581-8952-dcf3e37c5b0a -> fd1c9f2b-8358-4bd3-a5cc-d211673428bc +- `neutral-background-color-selected-hover` + - schema: system-set.json -> alias.json + - uuid: 48b07514-10c0-49ee-a383-11cc2eceb866 -> 1c220122-5f32-42f9-848f-ae10061241e5 +- `neutral-background-color-selected-down` + - schema: system-set.json -> alias.json + - uuid: 98605fb3-1905-4309-95b9-bdd53e08b341 -> 966c56d0-4461-45e7-9e20-0277f2111a34 +- `neutral-background-color-selected-key-focus` + - schema: system-set.json -> alias.json + - uuid: d94c6eec-4f22-45e5-a5b3-f91773b99358 -> 9b8df7df-3439-4614-b446-97a4de782e27 +- `neutral-subdued-background-color-default` + - light.value: gray-600 -> gray-700 + - dark.value: gray-400 -> gray-500 + - dark.uuid: ccb9da64-89e5-4e9b-b868-1ac9e1d1f183 -> bc9979cb-e7c6-45b2-be4d-0ba3c817e2ef +- `neutral-subdued-background-color-hover` + - light.value: gray-700 -> gray-800 + - dark.value: gray-300 -> gray-400 + - dark.uuid: 338e2fda-0da2-4a52-b718-ca0ca50e88f9 -> 2d72c9fc-22d0-4e4d-9b00-fae4b30a47b5 +- `neutral-subdued-background-color-down` + - dark.value: gray-200 -> gray-400 + - dark.uuid: 6098f9a7-595e-488f-b44c-2b51a8924f90 -> 11bf9149-d8df-4f37-ba21-51ff911b0517 +- `neutral-subdued-background-color-key-focus` + - light.value: gray-700 -> gray-800 + - dark.value: gray-300 -> gray-400 + - dark.uuid: 8f3f4b30-3887-4368-a38b-ec274eb99aa0 -> a1e08db6-3a72-4b8e-9475-b54a7b9be506 +- `accent-background-color-default` + - dark.value: accent-color-500 -> accent-color-800 + - dark.uuid: 94a5cedd-01d3-44c8-b741-01f3b70a5e90 -> f24eb871-6419-4cef-88a2-cca8548ae31e +- `accent-background-color-hover` + - dark.value: accent-color-400 -> accent-color-700 + - dark.uuid: 7c891ae9-00a1-4b9f-8a77-d582a9d2addb -> 9e140a94-c11f-470b-b7af-49880e58d4ce +- `accent-background-color-down` + - light.value: accent-color-1100 -> accent-color-1000 + - dark.value: accent-color-300 -> accent-color-700 + - dark.uuid: d2101964-8d67-44a1-9f94-623caf51ad1d -> e2c0de7e-d271-4b2c-9393-d864a95732e6 +- `accent-background-color-key-focus` + - dark.value: accent-color-400 -> accent-color-700 + - dark.uuid: 46be0da3-d704-4d26-929e-4507a813d615 -> af809118-7a97-409c-925f-8d7636a791c8 +- `informative-background-color-default` + - dark.value: informative-color-500 -> informative-color-800 + - dark.uuid: 8676a0d3-13df-4994-8614-94fa72c89486 -> da3a7c08-7f54-4486-bb66-146db21f0627 +- `informative-background-color-hover` + - dark.value: informative-color-400 -> informative-color-700 + - dark.uuid: 5f53230c-36b0-46da-993c-3d707a4e148a -> 092415a8-0054-4f6d-9a93-1541c767b2c5 +- `informative-background-color-down` + - light.value: informative-color-1100 -> informative-color-1000 + - dark.value: informative-color-300 -> informative-color-700 + - dark.uuid: 28a819c5-6d64-4bad-a6c9-7b7c250dc46e -> c9c09cc9-1ebd-4738-9613-6a0a67bea4f9 +- `informative-background-color-key-focus` + - dark.value: informative-color-400 -> informative-color-700 + - dark.uuid: 527b21ef-5b24-4c16-8b99-f2bdd3b8f2f8 -> e5292c94-ea4a-49ba-8c25-6ab1114e0fe3 +- `negative-background-color-default` + - dark.value: negative-color-500 -> negative-color-800 + - dark.uuid: 5e18e40b-8db1-45ba-ac1c-4a54d5b7270a -> 1117b73b-42e3-4ad6-8b26-af76859a27bb +- `negative-background-color-hover` + - dark.value: negative-color-400 -> negative-color-700 + - dark.uuid: 94b551c9-a0ea-48f1-8ab3-c3168a1f511d -> 648da867-549e-47c3-9312-e9cfda288705 +- `negative-background-color-down` + - light.value: negative-color-1100 -> negative-color-1000 + - dark.value: negative-color-300 -> negative-color-700 + - dark.uuid: fc862942-7fbb-411b-8857-d8a7ae226633 -> 8565ec8e-2196-47ac-8636-40084acbfd4f +- `negative-background-color-key-focus` + - dark.value: negative-color-400 -> negative-color-700 + - dark.uuid: 6382df57-549e-40b4-b378-3921bba6b850 -> f1470931-f4f8-47d9-b118-5b813e4c154a +- `positive-background-color-default` + - dark.value: positive-color-500 -> positive-color-800 + - dark.uuid: 2fc671b6-0dde-416e-ae7e-a67c30d4a800 -> 82b54f71-7c9e-4388-9e3b-4d13f12fad60 +- `positive-background-color-hover` + - dark.value: positive-color-400 -> positive-color-700 + - dark.uuid: 596bfca6-ab01-421f-8fc1-b61ebef37ded -> 2992a78b-9ce0-4b29-a4f6-ddbc51f820f2 +- `positive-background-color-down` + - light.value: positive-color-1100 -> positive-color-1000 + - dark.value: positive-color-300 -> positive-color-700 + - dark.uuid: 2e7048e0-a74e-4e40-b739-053cf298f4e2 -> 58a934d2-a715-4544-aa79-7f94bd493f09 +- `positive-background-color-key-focus` + - dark.value: positive-color-400 -> positive-color-700 + - dark.uuid: 3ac208d1-7fac-4692-ada9-1a19f4896a81 -> 56d371b4-437f-4ca9-854f-ae6daf5dcfce +- `notice-background-color-default` + - dark.value: notice-color-800 -> notice-color-900 + - dark.uuid: 48df522d-8857-42d3-a2b3-e86828a39cfd -> 323428c1-792d-41b4-8a17-a12f1ac00e2a + - light.uuid: 87666730-0d8e-434d-9bfb-0a45e729c482 -> 48f3445a-63d8-4477-a2f5-1fee6a022328 + - wireframe.uuid: 640e857c-c62c-4289-b83a-1e36cee90ad4 -> 0fdc01c4-459a-4f74-a8e0-fdbe93f8138f +- `disabled-background-color` + - value: gray-200 -> gray-100 +- `disabled-static-white-background-color` + - value: transparent-white-200 -> transparent-white-100 +- `disabled-static-black-background-color` + - value: transparent-black-200 -> transparent-black-100 +- `gray-background-color-default` + - dark.value: gray-700 -> gray-500 + - dark.uuid: fe9180f1-54db-4ec3-82c6-f6b084dd24f7 -> a3e71134-b44f-4b52-a84d-4841e01505e6 + - wireframe.value: gray-600 -> gray-700 + - wireframe.uuid: 6a74ab0a-e481-4d38-9db7-ea8ef885940b -> c41bb795-182e-45c0-afea-4ae2148e37a4 +- `red-background-color-default` + - dark.value: red-700 -> red-800 + - dark.uuid: 3da4e1a0-7a02-4488-92d8-744b2f3e5cbc -> ce074ee2-a2a2-4da3-a99e-603524193d46 +- `orange-background-color-default` + - dark.value: orange-800 -> orange-900 + - dark.uuid: 706d7352-dd31-42c1-91d4-b9407ee49868 -> 3e9a6c2a-bd09-4d28-a95c-920109c1852f +- `yellow-background-color-default` + - dark.value: yellow-1000 -> yellow-1100 + - dark.uuid: 5fd7e36b-05df-4384-a3f1-a3d8b9330823 -> 61c5e375-bff3-479f-8c32-2d2a5edb906c +- `chartreuse-background-color-default` + - dark.value: chartreuse-900 -> chartreuse-1000 + - dark.uuid: 8c8db46e-af99-4057-85ea-3f05055b97cc -> 5df9a029-dc91-4078-a198-574486948834 +- `celery-background-color-default` + - dark.value: celery-800 -> celery-900 + - dark.uuid: 87f5b73a-19b1-40f7-991b-0d4b6bfc4a99 -> a9ab7a59-9cab-47fb-876d-6f0af93dc5df +- `green-background-color-default` + - dark.value: green-700 -> green-800 + - dark.uuid: fbe68215-410b-4f50-82f1-365754366275 -> 49170573-9c22-42e1-a1ce-cd3d3972ddb7 +- `seafoam-background-color-default` + - dark.value: seafoam-700 -> seafoam-800 + - dark.uuid: d49fb92d-b0ea-44c6-a17b-817da00361f9 -> 9a727140-328d-430f-9b10-8965eebe77d1 +- `cyan-background-color-default` + - dark.value: cyan-700 -> cyan-800 + - dark.uuid: 4dda3368-def2-4cd6-ae04-1483bb129ca5 -> 543af64f-9c28-4e88-8597-3259cd7ebf1f +- `blue-background-color-default` + - dark.value: blue-700 -> blue-800 + - dark.uuid: 04d7615b-5006-4857-9a66-38a3955516f8 -> 83591a94-83e1-4557-8f50-cc1fe9793b76 +- `indigo-background-color-default` + - dark.value: indigo-700 -> indigo-800 + - dark.uuid: 40af8933-2b38-4818-a88c-52d2f487f7b9 -> b7f5a677-4e89-40e1-8324-7619a628ce8b +- `purple-background-color-default` + - dark.value: purple-700 -> purple-800 + - dark.uuid: a2a42a1c-c0c9-41a5-80fd-c9316e233918 -> e577d521-0271-4226-a094-624b35a05826 +- `fuchsia-background-color-default` + - dark.value: fuchsia-700 -> fuchsia-800 + - dark.uuid: 56575347-51b7-4822-98a6-d4275eae2ab5 -> 7b4d71d3-ad78-4e02-a48e-fa79f40854a2 +- `magenta-background-color-default` + - dark.value: magenta-700 -> magenta-800 + - dark.uuid: f7841ca9-3d7e-419b-870e-3b3747433b38 -> 5867d764-d909-4490-b947-533e89997d0a +- `neutral-subdued-content-color-down` + - value: gray-900 -> gray-800 +- `accent-content-color-down` + - value: accent-color-1100 -> accent-color-1000 +- `negative-content-color-down` + - value: negative-color-1100 -> negative-color-1000 +- `disabled-static-white-content-color` + - value: transparent-white-500 -> transparent-white-400 +- `disabled-static-black-content-color` + - value: transparent-black-500 -> transparent-black-400 +- `neutral-visual-color` + - dark.uuid: 931b7722-20ef-4c45-8855-4cb4e82e936c -> 35ef6675-7e66-4ef5-8c8d-e8e70939b224 +- `accent-visual-color` + - dark.uuid: a595a519-0df5-463e-8ec6-f71dd9cefbee -> 8ccd197f-fc8e-4d31-866c-2b96049eea89 +- `informative-visual-color` + - dark.uuid: 97225780-35eb-4cc8-abc0-fcca31985063 -> fd64c9ca-6ad7-415c-b0b8-2579399e33a5 +- `negative-visual-color` + - dark.value: negative-color-700 -> negative-color-900 + - dark.uuid: 2f57b877-57ac-4bed-be53-07f4f6353ce2 -> 70cb0316-5b7a-416c-bf93-7d8885c4fce6 +- `notice-visual-color` + - light.value: notice-color-700 -> notice-color-800 + - dark.uuid: 560ad974-d101-44a2-90c7-8c5b5a3ce273 -> 2759c912-6385-40e4-9ed9-ff2e11815b4d +- `positive-visual-color` + - light.value: positive-color-700 -> positive-color-800 + - dark.value: positive-color-800 -> positive-color-900 + - dark.uuid: 8cd5afec-80b0-449f-860d-08d6e111af84 -> 25e8289f-6c82-4485-8920-a187f790cd47 +- `gray-visual-color` + - dark.uuid: cffe0ccb-5c67-4435-a9b2-b6fb7072417a -> 0f7a39c2-3ee7-4ff0-873f-334c81054b77 +- `red-visual-color` + - dark.uuid: 1676050d-200e-46d7-9a8f-2e74f0be5cfe -> 870f90ab-7f3e-41b6-9c11-59e9c4ff82c6 +- `orange-visual-color` + - dark.uuid: 55248d8a-e628-46e2-8882-099162eb18b1 -> e7bf9977-2edf-48bc-8099-ad95e57b55b1 +- `yellow-visual-color` + - dark.uuid: 231e80f5-8dfe-49b7-9cb5-db35bb93f3aa -> 4a2ebbb5-b8b7-43a0-9d64-4974bb382a8b +- `chartreuse-visual-color` + - dark.uuid: d7a17594-69fb-433d-b3cd-e63547ec5940 -> a46d8e05-4f56-4b46-a279-0164abfa42e8 +- `celery-visual-color` + - dark.uuid: e2239975-bc80-4d08-90fb-e95fe61a1d35 -> 37c1311b-29ed-44ab-b656-a7538726ad77 +- `green-visual-color` + - dark.uuid: 7418e20d-c751-49ca-8cd2-f0b7fb00831e -> 1219770d-543d-4216-9e87-c158f8a74df6 +- `seafoam-visual-color` + - dark.uuid: 45a2c99b-29f5-468d-956e-e3c0a78fcfd6 -> 736e4768-7944-40ec-a412-4cd36299e03d +- `cyan-visual-color` + - dark.uuid: b4c9bf18-a3d0-423b-85a1-d1de8390b7e9 -> 091a2073-baa0-4cc6-b943-9dddc285ad62 +- `blue-visual-color` + - dark.uuid: b876d683-a479-41cb-a370-5bdb75f48e9c -> 63fe16ed-70fa-4eaf-918c-f642ff69ce05 +- `indigo-visual-color` + - dark.uuid: 0f645ef3-051f-4e88-bbd4-3724fa3d93b2 -> 584ccbd4-3243-4041-b665-e2342d2b26e8 +- `purple-visual-color` + - dark.uuid: e108a5d7-dd3b-4238-ba9b-8c600e1614d0 -> 0ee2957b-c401-4106-8ff3-9de9fa544a03 +- `fuchsia-visual-color` + - dark.uuid: a336ee97-c030-42e6-ba5f-5ac6585ddeab -> 38e60263-cb08-4090-a653-5acbd1664ae0 +- `magenta-visual-color` + - dark.uuid: 2b4d2516-870c-4cb4-88a6-dce1d920ad4c -> 178e4bc6-6986-4e77-aab0-78dbe66f8e6f + +
    +``` + +## 12.28.0 + +### Minor Changes + +* [#468](https://github.com/adobe/spectrum-design-data/pull/468) [`1b5b205`](https://github.com/adobe/spectrum-design-data/commit/1b5b20557d7c5d6c88209debe0d38b529679f039) Thanks [@larz0](https://github.com/larz0)! - Added static colors (for premium gradients) to light, dark, darkest, and wireframe themes. + + ## Design Motivation + + The Firefly team is looking to add these for usage, and the team agreed that it would be better to have these tokens available then for the team to create their own custom tokens. + + ## Token Diff + + *Tokens added (10):* + + * `static-blue-900` + * `static-blue-1000` + * `static-fuchsia-900` + * `static-fuchsia-1000` + * `static-indigo-900` + * `static-indigo-1000` + * `static-magenta-900` + * `static-magenta-1000` + * `static-red-900` + * `static-red-1000` + +## 12.27.0 + +### Minor Changes + +* [#409](https://github.com/adobe/spectrum-design-data/pull/409) [`a61060a`](https://github.com/adobe/spectrum-design-data/commit/a61060a164a944907f236c8df7fcab31220cdd01) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Token changes for CJK typography improvements. + + Updated S1 tokens - typography, foundations + + ## Design Motivation + + The S1 type token changes fix some minor issues with CJK font-sizing, font-weight, and removes the added letter-spacing (since we got feedback this was unnecessary and both latin and CJK characters look too spaced out with the current letter-spacing applied). + + ## Token Diff + + *Tokens added (13):* + + * `body-cjk-size-l` + * `body-cjk-size-m` + * `body-cjk-size-s` + * `body-cjk-size-xl` + * `body-cjk-size-xs` + * `body-cjk-size-xxl` + * `body-cjk-size-xxxl` + * `detail-cjk-size-l` + * `detail-cjk-size-m` + * `detail-cjk-size-s` + * `detail-cjk-size-xl` + * `font-size-25` + * `letter-spacing` + + *Token values updated (14):* + + * `body-cjk-strong-emphasized-font-weight` + * `body-cjk-strong-font-weight` + * `cjk-letter-spacing` + * `detail-cjk-emphasized-font-weight` + * `detail-cjk-strong-emphasized-font-weight` + * `detail-cjk-strong-font-weight` + * `drop-zone-cjk-title-size` + * `heading-cjk-heavy-font-weight` + * `heading-cjk-size-s` + * `heading-cjk-size-xs` + * `heading-cjk-size-xxl` + * `heading-cjk-size-xxs` + * `heading-cjk-size-xxxl` + * `illustrated-message-cjk-title-size` + +## 12.26.0 + +### Minor Changes + +* [#345](https://github.com/adobe/spectrum-design-data/pull/345) [`fe4c707`](https://github.com/adobe/spectrum-design-data/commit/fe4c707c5ae2cc89efe6439dc775cddc94b706b3) Thanks [@GarthDB](https://github.com/GarthDB)! - Added UUIDs to the base of set tokens. + +## 12.25.0 + +### Minor Changes + +* [`413ef5a`](https://github.com/adobe/spectrum-design-data/commit/413ef5adad9083b7e133cc867e0436a879004ec8) Thanks [@GarthDB](https://github.com/GarthDB)! - Added `private` metadata to global tokens. + +## 12.24.1 + +### Patch Changes + +* [#444](https://github.com/adobe/spectrum-design-data/pull/444) [`51904cd`](https://github.com/adobe/spectrum-design-data/commit/51904cdabfcb165a560c58664c8bc75be601f28b) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)! - fixing a typo with takeover-dialog-height + + ## Token Diff + + **Updated Token (1):** + + * `takeover-dialog-height`: `1.00%` -> `100%` + +## 13.0.0-beta.51 + +### Patch Changes + +* [#441](https://github.com/adobe/spectrum-design-data/pull/441) [`89949e4`](https://github.com/adobe/spectrum-design-data/commit/89949e4d0008baacec05359a83620fa45e35cf5e) Thanks [@GarthDB](https://github.com/GarthDB)! - Change takeover dialog dimensions to use percentages which were previously converted to ems by mistake. + + ## Token Diff + + **Updated Tokens (2):** + + * `takeover-dialog-height`: `1.00em` -> `1.00%` + * `takeover-dialog-width`: `1.00em` -> `100%` + +## 13.0.0-beta.50 + +### Minor Changes + +* [#425](https://github.com/adobe/spectrum-design-data/pull/425) [`91f4536`](https://github.com/adobe/spectrum-design-data/commit/91f4536a416cf6c9e5b0b423bf3ead3233e808fc) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Adding S2 tokens for number field and takeover dialog components. + + ## Token Diff + + *Tokens added (16):* + + * `in-field-stepper-to-end-extra-large` + * `in-field-stepper-to-end-large` + * `in-field-stepper-to-end-medium` + * `in-field-stepper-to-end-small` + * `number-field-minimum-width-multiplier` + * `number-field-visual-to-in-field-stepper-extra-large` + * `number-field-visual-to-in-field-stepper-large` + * `number-field-visual-to-in-field-stepper-medium` + * `number-field-visual-to-in-field-stepper-small` + * `number-field-with-stepper-minimum-width-extra-large` + * `number-field-with-stepper-minimum-width-large` + * `number-field-with-stepper-minimum-width-medium` + * `number-field-with-stepper-minimum-width-small` + * `takeover-dialog-height` + * `takeover-dialog-width` + * `window-to-edge` + +## 13.0.0-beta.49 + +### Minor Changes + +* [#418](https://github.com/adobe/spectrum-design-data/pull/418) [`45ed87b`](https://github.com/adobe/spectrum-design-data/commit/45ed87b43af53370f74fc46c545b4c13005f381c) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - ## Design Motivation + + Made the following changes to component typography tokens for both mobile and desktop. + + ## Token Diff + + *Tokens added (2):* + + * `heading-cjk-size-xxxxl` + * `heading-size-xxxxl` + + *Tokens changed (7):* + + * `heading-sans-serif-font-weight`: `bold-font-weight` -> `extra-bold-font-weight` + * `heading-cjk-heavy-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + * `heading-sans-serif-emphasized-font-weight`: `bold-font-weight` -> `extra-bold-font-weight` + * `heading-size-s`: `font-size-300` -> `font-size-400` + * `heading-size-xs`: `font-size-200` -> `font-size-300` + * `heading-cjk-size-xxxl`: `font-size-1300` -> `font-size-1200` + * `heading-cjk-size-xxl`: `font-size-900` -> `font-size-1000` + +* [#422](https://github.com/adobe/spectrum-design-data/pull/422) [`4673d13`](https://github.com/adobe/spectrum-design-data/commit/4673d1383602d81484ae346dd278a28a26f5d91b) Thanks [@GarthDB](https://github.com/GarthDB)! - Added tokens for s2 detail typography + + *New tokens (6)* + + * `detail-cjk-size-xs` + * `detail-cjk-size-s` + * `detail-cjk-size-m` + * `detail-cjk-size-l` + * `detail-cjk-size-xl` + * `detail-size-xs` + + *Updated token values (13)* + + * `detail-sans-serif-font-weight`: `bold-font-weight` -> `medium-font-weight` + * `detail-serif-font-weight`: `bold-font-weight` -> `medium-font-weight` + * `detail-cjk-font-weight`: `extra-bold-font-weight` -> `bold-font-weight` + * `detail-cjk-strong-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + * `detail-sans-serif-emphasized-font-weight`: `bold-font-weight` -> `regular-font-weight` + * `detail-serif-emphasized-font-weight`: `bold-font-weight` -> `medium-font-weight` + * `detail-cjk-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + * `detail-cjk-strong-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + * `detail-size-xl`: `font-size-200` -> `font-size-300` + * `detail-size-l`: `font-size-100` -> `font-size-200` + * `detail-size-m`: `font-size-75` -> `font-size-100` + * `detail-size-s`: `font-size-50` -> `font-size-75` + * `detail-color`: `gray-900` -> `gray-600` + +## 13.0.0-beta.48 + +### Minor Changes + +* [#415](https://github.com/adobe/spectrum-design-data/pull/415) [`caca973`](https://github.com/adobe/spectrum-design-data/commit/caca973300d34fc688fb828633b1da2ba8284990) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - 1. New typography tokens: + + * Letter spacing, text-align, cjk + + 1. New gradient stop tokens + 2. New component tokens for bar panel, rating, segmented control, slider, select box + 3. New static color tokens + + *Tokens added (51):* + + * `letter-spacing` + * `text-align-start` + * `text-align-center` + * `text-align-end` + * `body-size-xxs` + * `body-cjk-size-xxxl` + * `body-cjk-size-xxl` + * `body-cjk-size-xl` + * `body-cjk-size-l` + * `body-cjk-size-m` + * `body-cjk-size-s` + * `body-cjk-size-xs` + * `body-cjk-size-xxs` + * `gradient-stop-1-genai` + * `gradient-stop-2-genai` + * `gradient-stop-3-genai` + * `gradient-stop-1-premium` + * `gradient-stop-2-premium` + * `gradient-stop-3-premium` + * `bar-panel-width` + * `bar-panel-minimum-width` + * `bar-panel-maximum-width` + * `bar-panel-spacing-extra-spacious` + * `rating-top-to-content-area-small` + * `rating-bottom-to-content-area-small` + * `rating-edge-to-content-area-small` + * `rating-top-to-content-area-medium` + * `rating-bottom-to-content-area-medium` + * `rating-edge-to-content-area-medium` + * `rating-width-small` + * `rating-height-small` + * `rating-width-medium` + * `rating-height-medium` + * `segmented-control-selection-border-width` + * `slider-handle-precision-width` + * `slider-track-height-medium` + * `slider-track-height-large` + * `segmented-control-item-height` + * `static-blue-900` + * `static-blue-1000` + * `static-fuchsia-900` + * `static-fuchsia-1000` + * `static-indigo-900` + * `static-indigo-1000` + * `static-magenta-900` + * `static-magenta-1000` + * `static-red-900` + * `static-red-1000` + * `bar-panel-gripper-color` + * `bar-panel-gripper-color-drag` + * `select-box-selected-border-color` + + *Token values updated (9):* + + * `font-size-1200` + * `desktop`: `50px` -> `51px` + * `font-size-1300` + * `desktop`: `60px` -> `58px` + * `cjk-letter-spacing`: `0.05em` -> `letter-spacing` + * `body-cjk-strong-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + * `body-cjk-strong-emphasized-font-weight`: `black-font-weight` -> `extra-bold-font-weight` + * `slider-control-to-field-label-small` + * `desktop`: `5px` -> `-4px` + * `mobile`: `6px` -> `-8px` + * `slider-control-to-field-label-medium` + * `desktop`: `8px` -> `-12px` + * `mobile`: `10px` -> `-16px` + * `slider-control-to-field-label-large` + * `desktop`: `11px` -> `-16px` + * `mobile`: `14px` -> `-20px` + * `slider-control-to-field-label-extra-large` + * `desktop`: `14px` -> `-20px` + * `mobile`: `17px` -> `-28px` + +## 13.0.0-beta.47 + +### Minor Changes + +* [`75a573b`](https://github.com/adobe/spectrum-design-data/commit/75a573bcbb7b71ecdf5f246682755de24dae5afc) Thanks [@GarthDB](https://github.com/GarthDB)! - S2 subtle and visual colors update + Updated S2 Table tokens + +
    Tokens added (42): + + * `illustrated-message-maximum-width` + * `side-focus-indicator` + * `table-row-bottom-to-text-extra-large` + * `table-row-bottom-to-text-extra-large-regular` + * `table-row-bottom-to-text-large` + * `table-row-bottom-to-text-large-regular` + * `table-row-bottom-to-text-medium` + * `table-row-bottom-to-text-medium-regular` + * `table-row-bottom-to-text-small` + * `table-row-bottom-to-text-small-regular` + * `table-row-checkbox-to-top-extra-large` + * `table-row-checkbox-to-top-extra-large-regular` + * `table-row-checkbox-to-top-large` + * `table-row-checkbox-to-top-large-regular` + * `table-row-checkbox-to-top-medium` + * `table-row-checkbox-to-top-medium-regular` + * `table-row-checkbox-to-top-small` + * `table-row-checkbox-to-top-small-regular` + * `table-row-height-extra-large` + * `table-row-height-extra-large-regular` + * `table-row-height-large` + * `table-row-height-large-regular` + * `table-row-height-medium` + * `table-row-height-medium-regular` + * `table-row-height-small` + * `table-row-height-small-regular` + * `table-row-top-to-text-extra-large` + * `table-row-top-to-text-extra-large-regular` + * `table-row-top-to-text-large` + * `table-row-top-to-text-large-regular` + * `table-row-top-to-text-medium` + * `table-row-top-to-text-medium-regular` + * `table-row-top-to-text-small` + * `table-row-top-to-text-small-regular` + * `table-thumbnail-to-top-minimum-extra-large` + * `table-thumbnail-to-top-minimum-extra-large-regular` + * `table-thumbnail-to-top-minimum-large` + * `table-thumbnail-to-top-minimum-large-regular` + * `table-thumbnail-to-top-minimum-medium` + * `table-thumbnail-to-top-minimum-medium-regular` + * `table-thumbnail-to-top-minimum-small` + * `table-thumbnail-to-top-minimum-small-regular` + +
    + +
    Tokens updated (101): + + * `informative-subtle-background-color-default` + * light: `blue-200` -> `informative-color-200` + * dark: `blue-200` -> `informative-color-300` + * `positive-subtle-background-color-default` + * light: `green-200` -> `positive-color-200` + * dark: `green-200` -> `positive-color-300` + * `notice-subtle-background-color-default` + * light: `orange-200` -> `notice-color-200` + * dark: `orange-200` -> `notice-color-300` + * `negative-subtle-background-color-default` + * light: `red-200` -> `negative-color-200` + * dark: `red-200` -> `negative-color-300` + * `table-column-header-row-top-to-text-medium` + * desktop: `7px` -> `6px` + * `table-row-height-small-regular` + * desktop: `32px` -> `table-row-height-small` + * mobile: `40px` -> `table-row-height-small` + * `table-row-height-medium-regular` + * desktop: `40px` -> `table-row-height-medium` + * mobile: `50px` -> `table-row-height-medium` + * `table-row-height-large-regular` + * desktop: `48px` -> `table-row-height-large` + * mobile: `60px` -> `table-row-height-large` + * `table-row-height-extra-large-regular` + * desktop: `56px` -> `table-row-height-extra-large` + * mobile: `70px` -> `table-row-height-extra-large` + * `table-row-top-to-text-small-regular` + * desktop: `8px` -> `table-row-top-to-text-small` + * mobile: `10px` -> `table-row-top-to-text-small` + * `table-row-top-to-text-medium-regular` + * desktop: `11px` -> `table-row-top-to-text-medium` + * mobile: `14px` -> `table-row-top-to-text-medium` + * `table-row-top-to-text-large-regular` + * desktop: `14px` -> `table-row-top-to-text-large` + * mobile: `18px` -> `table-row-top-to-text-large` + * `table-row-top-to-text-extra-large-regular` + * desktop: `17px` -> `table-row-top-to-text-extra-large` + * mobile: `21px` -> `table-row-top-to-text-extra-large` + * `table-row-bottom-to-text-small-regular` + * desktop: `9px` -> `table-row-bottom-to-text-small` + * mobile: `11px` -> `table-row-bottom-to-text-small` + * `table-row-bottom-to-text-medium-regular` + * desktop: `12px` -> `table-row-bottom-to-text-medium` + * mobile: `15px` -> `table-row-bottom-to-text-medium` + * `table-row-bottom-to-text-large-regular` + * desktop: `14px` -> `table-row-bottom-to-text-large` + * mobile: `18px` -> `table-row-bottom-to-text-large` + * `table-row-bottom-to-text-extra-large-regular` + * desktop: `17px` -> `table-row-bottom-to-text-extra-large` + * mobile: `22px` -> `table-row-bottom-to-text-extra-large` + * `table-row-top-to-text-medium-spacious` + * mobile: `18px` -> `16px` + * `table-header-row-checkbox-to-top-medium` + * desktop: `9px` -> `8px` + * mobile: `13px` -> `11px` + * `table-row-checkbox-to-top-small-regular` + * desktop: `10px` -> `table-row-checkbox-to-top-small` + * mobile: `14px` -> `table-row-checkbox-to-top-small` + * `table-row-checkbox-to-top-medium-compact` + * desktop: `9px` -> `8px` + * mobile: `13px` -> `11px` + * `table-row-checkbox-to-top-medium-regular` + * desktop: `13px` -> `table-row-checkbox-to-top-medium` + * mobile: `18px` -> `table-row-checkbox-to-top-medium` + * `table-row-checkbox-to-top-medium-spacious` + * desktop: `17px` -> `16px` + * mobile: `23px` -> `21px` + * `table-row-checkbox-to-top-large-regular` + * desktop: `16px` -> `table-row-checkbox-to-top-large` + * mobile: `22px` -> `table-row-checkbox-to-top-large` + * `table-row-checkbox-to-top-extra-large-regular` + * desktop: `19px` -> `table-row-checkbox-to-top-extra-large` + * mobile: `26px` -> `table-row-checkbox-to-top-extra-large` + * `table-thumbnail-to-top-minimum-small-regular` + * desktop: `5px` -> `table-thumbnail-to-top-minimum-small` + * mobile: `6px` -> `table-thumbnail-to-top-minimum-small` + * `table-thumbnail-to-top-minimum-medium-regular` + * desktop: `7px` -> `table-thumbnail-to-top-minimum-medium` + * mobile: `9px` -> `table-thumbnail-to-top-minimum-medium` + * `table-thumbnail-to-top-minimum-large-regular` + * desktop: `8px` -> `table-thumbnail-to-top-minimum-large` + * mobile: `10px` -> `table-thumbnail-to-top-minimum-large` + * `table-thumbnail-to-top-minimum-extra-large-regular` + * desktop: `8px` -> `table-thumbnail-to-top-minimum-extra-large` + * mobile: `10px` -> `table-thumbnail-to-top-minimum-extra-large` + * `blue-800` + * dark: `rgb(69, 110, 254)` -> `rgb(64, 105, 253)` + * `red-800` + * dark: `rgb(230, 54, 35)` -> `rgb(223, 52, 34)` + * `orange-800` + * dark: `rgb(205, 86, 0)` -> `rgb(199, 82, 0)` + * `yellow-800` + * dark: `rgb(169, 110, 0)` -> `rgb(164, 106, 0)` + * `chartreuse-800` + * dark: `rgb(109, 131, 0)` -> `rgb(106, 127, 0)` + * `celery-800` + * dark: `rgb(69, 138, 19)` -> `rgb(66, 134, 18)` + * `green-800` + * dark: `rgb(6, 140, 82)` -> `rgb(6, 136, 80)` + * `seafoam-800` + * dark: `rgb(8, 138, 116)` -> `rgb(8, 134, 112)` + * `cyan-800` + * dark: `rgb(15, 128, 194)` -> `rgb(13, 125, 186)` + * `indigo-800` + * dark: `rgb(119, 97, 252)` -> `rgb(116, 91, 252)` + * `purple-800` + * dark: `rgb(161, 84, 229)` -> `rgb(157, 78, 228)` + * `fuchsia-800` + * dark: `rgb(192, 64, 212)` -> `rgb(186, 60, 206)` + * `magenta-800` + * dark: `rgb(231, 41, 105)` -> `rgb(224, 38, 101)` + * `pink-800` + * dark: `rgb(220, 47, 156)` -> `rgb(213, 45, 151)` + * `turquoise-800` + * dark: `rgb(9, 135, 147)` -> `rgb(9, 131, 142)` + * `brown-800` + * dark: `rgb(148, 118, 73)` -> `rgb(143, 114, 69)` + * `silver-800` + * dark: `rgb(123, 123, 123)` -> `rgb(118, 118, 118)` + * `cinnamon-800` + * dark: `rgb(179, 103, 64)` -> `rgb(176, 98, 59)` + * `accent-background-color-default` + * dark: `accent-color-700` -> `accent-color-800` + * `accent-background-color-hover` + * dark: `accent-color-600` -> `accent-color-700` + * `accent-background-color-down` + * dark: `accent-color-600` -> `accent-color-700` + * `accent-background-color-key-focus` + * dark: `accent-color-600` -> `accent-color-700` + * `informative-background-color-default` + * dark: `informative-color-700` -> `informative-color-800` + * `informative-background-color-hover` + * dark: `informative-color-600` -> `informative-color-700` + * `informative-background-color-down` + * dark: `informative-color-600` -> `informative-color-700` + * `informative-background-color-key-focus` + * dark: `informative-color-600` -> `informative-color-700` + * `negative-background-color-default` + * dark: `negative-color-700` -> `negative-color-800` + * `negative-background-color-hover` + * dark: `negative-color-600` -> `negative-color-700` + * `negative-background-color-down` + * dark: `negative-color-600` -> `negative-color-700` + * `negative-background-color-key-focus` + * dark: `negative-color-600` -> `negative-color-700` + * `positive-background-color-default` + * dark: `positive-color-700` -> `positive-color-800` + * `positive-background-color-hover` + * dark: `positive-color-600` -> `positive-color-700` + * `positive-background-color-down` + * dark: `positive-color-600` -> `positive-color-700` + * `positive-background-color-key-focus` + * dark: `positive-color-600` -> `positive-color-700` + * `red-background-color-default` + * dark: `red-700` -> `red-800` + * `green-background-color-default` + * dark: `green-700` -> `green-800` + * `seafoam-background-color-default` + * dark: `seafoam-700` -> `seafoam-800` + * `cyan-background-color-default` + * dark: `cyan-700` -> `cyan-800` + * `blue-background-color-default` + * dark: `blue-700` -> `blue-800` + * `indigo-background-color-default` + * dark: `indigo-700` -> `indigo-800` + * `purple-background-color-default` + * dark: `purple-700` -> `purple-800` + * `fuchsia-background-color-default` + * dark: `fuchsia-700` -> `fuchsia-800` + * `magenta-background-color-default` + * dark: `magenta-700` -> `magenta-800` + * `negative-visual-color` + * dark: `negative-color-700` -> `negative-color-900` + * `notice-visual-color` + * light: `notice-color-700` -> `notice-color-800` + * `positive-visual-color` + * light: `positive-color-700` -> `positive-color-800` + * dark: `positive-color-800` -> `positive-color-900` + * `brown-background-color-default` + * dark: `brown-700` -> `brown-800` + * `cinnamon-background-color-default` + * dark: `cinnamon-700` -> `cinnamon-800` + * `pink-background-color-default` + * dark: `pink-700` -> `pink-800` + * `silver-background-color-default` + * dark: `silver-700` -> `silver-800` + * `turquoise-background-color-default` + * dark: `turquoise-700` -> `turquoise-800` + * `neutral-subtle-background-color-default` + * light: `gray-100` -> `gray-100` + * dark: `gray-100` -> `gray-300` + * `accent-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `accent-color-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `accent-color-300` + * `gray-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `gray-100` + * dark: `rgba(0, 0, 0, 0.6)` -> `gray-300` + * `blue-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `blue-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `blue-300` + * `green-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `green-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `green-300` + * `orange-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `orange-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `orange-300` + * `red-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `red-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `red-300` + * `brown-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `brown-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `brown-300` + * `cinnamon-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `cinnamon-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `cinnamon-300` + * `celery-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `celery-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `celery-300` + * `chartreuse-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `chartreuse-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `chartreuse-300` + * `cyan-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `cyan-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `cyan-300` + * `fuchsia-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `fuchsia-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `fuchsia-300` + * `indigo-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `indigo-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `indigo-300` + * `magenta-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `magenta-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `magenta-300` + * `pink-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `pink-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `pink-300` + * `purple-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `purple-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `purple-300` + * `seafoam-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `seafoam-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `seafoam-300` + * `silver-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `silver-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `silver-300` + * `turquoise-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `turquoise-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `turquoise-300` + * `yellow-subtle-background-color-default` + * light: `rgba(0, 0, 0, 0.2)` -> `yellow-200` + * dark: `rgba(0, 0, 0, 0.6)` -> `yellow-300` + +
    + +## 13.0.0-beta.46 + +### Minor Changes + +* [#396](https://github.com/adobe/spectrum-design-data/pull/396) [`4fcfe5b`](https://github.com/adobe/spectrum-design-data/commit/4fcfe5bd83214a7ca3644646bbf0f38802a20f43) Thanks [@larz0](https://github.com/larz0)! - Added brand new tokens for the S2 Standard Panel: + + ## Design Motivation + + Added tokens needed for the new S2 standard panel component. + + ## Token Diff + + *Tokens Added (12):* + + * `standard-panel-width` + * `standard-panel-minimum-width` + * `standard-panel-maximum-width` + * `standard-panel-top-to-close-button-compact` + * `standard-panel-top-to-close-button-regular` + * `standard-panel-top-to-close-button-spacious` + * `standard-panel-edge-to-close-button-compact` + * `standard-panel-edge-to-close-button-regular` + * `standard-panel-edge-to-close-button-spacious` + * `standard-panel-title-font-size` + * `standard-panel-gripper-color` + * `standard-panel-gripper-color-drag` + +## 13.0.0-beta.45 + +### Minor Changes + +* [#390](https://github.com/adobe/spectrum-design-data/pull/390) [`cc9c304`](https://github.com/adobe/spectrum-design-data/commit/cc9c3048893058c3f01d6f1ce4688d8ab3716397) Thanks [@lynnhao](https://github.com/lynnhao)! - Updated code tokens for S2 + + ## Design Motivation + + These code token updates include some fixes to CJK font-weights to match the Latin font-weights when possible. We added CJK size tokens for consistency with other typography style tokens. Note that the new CJK size tokens currently point to the default code font-size tokens since Source Code Pro handles Latin and CJK sizing comparably. + + ## Token Diff + + *Tokens added (5):* + + * `code-cjk-size-l` + * `code-cjk-size-m` + * `code-cjk-size-s` + * `code-cjk-size-xl` + * `code-cjk-size-xs` + + *Token values updated (2):* + + * `code-cjk-strong-emphasized-font-weight` + * `code-cjk-strong-font-weight` + +## 13.0.0-beta.44 + +### Minor Changes + +* [#388](https://github.com/adobe/spectrum-design-data/pull/388) [`58425e6`](https://github.com/adobe/spectrum-design-data/commit/58425e67b2d4cbd716205d4d502cc823245811fe) Thanks [@lynnhao](https://github.com/lynnhao)! - Updated avatar and avatar group tokens + + ## Description + + * Updated avatar size tokens, including all sizes from `75` to `700` + * Added new avatar size tokens, from `800` to `1500` + * Added new avatar border thickness and color tokens + * Added avatar group size tokens, from `50` to `500` + * Added avatar group spacing tokens, from `50` to `500` + + ## Motivation and context + + * Avatar: added new sizes and updated existing sizes to better match other components and work across a variety of use cases. + * ⚠️ Important note: Accepting updates from this release will update the avatar sizes. The largest change in size is 8px. In some cases, you may want to relink to a new size. View the migration guide below to find the closest recommended size: + + | Former avatar size | Available avatar size | + | :----------------- | :--------------------------------------- | + | size 50 (16 x 16) | size 50 (16 x 16) | + | size 75 (18 x 18) | size 50 (16 x 16) or size 75 (20 x 20) | + | size 100 (20 x 20) | size 75 (20 x 20) | + | size 200 (22 x 22) | size 75 (20 x 20) or size 100 (24 x 24) | + | size 300 (26 x 26) | size 100 (24 x 24) or size 200 (28 x 28) | + | size 400 (28 x 28) | size 200 (28 x 28) | + | size 500 (32 x 32) | size 300 (32 x 32) | + | size 600 (36 x 36) | size 400 (36 x 36) | + | size 700 (40 x 40) | size 500 (40 x 40) | + | -- | size 600 (44 x 44) | + | -- | size 700 (48 x 48) | + | -- | size 800 (52 x 52) | + | -- | size 900 (56 x 56) | + | -- | size 1000 (64 x 64) | + | -- | size 1100 (72 x 72) | + | -- | size 1200 (80 x 80) | + | -- | size 1300 (88 x 88) | + | -- | size 1400 (96 x 96) | + | -- | size 1500 (104 x 104) | + + ## Token Diff + + *Tokens added (24):* + + * `avatar-border-color` + * `avatar-border-width` + * `avatar-group-size-100` + * `avatar-group-size-200` + * `avatar-group-size-300` + * `avatar-group-size-400` + * `avatar-group-size-50` + * `avatar-group-size-500` + * `avatar-group-size-75` + * `avatar-size-1000` + * `avatar-size-1100` + * `avatar-size-1200` + * `avatar-size-1300` + * `avatar-size-1400` + * `avatar-size-1500` + * `avatar-size-800` + * `avatar-size-900` + * `avatar-to-avatar-100` + * `avatar-to-avatar-200` + * `avatar-to-avatar-300` + * `avatar-to-avatar-400` + * `avatar-to-avatar-50` + * `avatar-to-avatar-500` + * `avatar-to-avatar-75` + + *Token values updated (8):* + + * `avatar-size-100` + * `avatar-size-200` + * `avatar-size-300` + * `avatar-size-400` + * `avatar-size-500` + * `avatar-size-600` + * `avatar-size-700` + * `avatar-size-75` + +## 13.0.0-beta.43 + +### Minor Changes + +* [#384](https://github.com/adobe/spectrum-design-data/pull/384) [`681b4b0`](https://github.com/adobe/spectrum-design-data/commit/681b4b0094d31bae4c9b1b095fa59d6448c26cab) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added dragged drop shadow tokens that point to new 300 global drop shadow tokens + + ## Design Motivation + + These are new foundational drop shadow tokens that represent a higher elevation when items are dragged. The more prominent shadow also brings more visual focus to the dragged item. They will be used in the standard panel "dragged" state, as well as in future component updates, to be determined. + + ## Token Diff + + *Tokens added (8):* + + * `drop-shadow-blur-300` + * `drop-shadow-color-300` + * `drop-shadow-dragged-blur` + * `drop-shadow-dragged-color` + * `drop-shadow-dragged-x` + * `drop-shadow-dragged-y` + * `drop-shadow-x-300` + * `drop-shadow-y-300` + +## 13.0.0-beta.42 + +### Minor Changes + +* [#382](https://github.com/adobe/spectrum-design-data/pull/382) [`2af3850`](https://github.com/adobe/spectrum-design-data/commit/2af3850a554812fd9c1b3e6fd902a746c9ac42c7) Thanks [@nabuhasan](https://github.com/nabuhasan)! - Updated S2 swatch tokens and added swatch-group tokens in S2 Color and S2 Non-color data sets, respectively. + + ## Design Motivation + + Swatch and swatch group components are being formalized as Spectrum 2 components. These tokens define the design data needed for implementation. Changes include updated corner rounding, colors and spacing for spacious density. + + For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13497). + + ## Token Diff + + *Tokens added (3):* + + * `swatch-group-spacing-spacious` + * `swatch-group-border-opacity` + * `swatch-group-border-color` + + *Tokens values updated (3):* + + * `swatch-border-color`: `gray-900` -> `gray-1000` + * `swatch-border-opacity`: `0.51` -> `0.42` + * `swatch-disabled-icon-border-opacity`: `0.51` -> `0.42` + +## 13.0.0-beta.41 + +### Minor Changes + +* [#375](https://github.com/adobe/spectrum-design-data/pull/375) [`6e3be6d`](https://github.com/adobe/spectrum-design-data/commit/6e3be6d8a458efa1752a8dd1360f03fa83f84c37) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - [Updated thumbnail size tokens and added new tokens](https://github.com/adobe/spectrum-design-data-studio-data/pull/144) + + * [Updated S2 Action bar tokens](https://github.com/adobe/spectrum-design-data-studio-data/pull/149) + + ## Design Motivation + + Thumbnail: updated sizes in order for opacity checkerboards to translate better in implementation. + + ⚠️ Important note: Accepting updates from this release will update the thumbnail sizes. The change in size is no more than 4 px. In some cases, you may want to relink to a new size. View the migration guide below to find the closest recommended size: + + | Former thumbnail size | Available thumbnail size | + | :-------------------- | :--------------------------------------- | + | size 50 (16 x 16) | size 50 (16 x 16) | + | size 75 (18 x 18) | size 75 (20 x 20) | + | size 100 (20 x 20) | size 75 (20 x 20) | + | size 200 (22 x 22) | size 100 (24 x 24) | + | size 300 (26 x 26) | size 200 (28 x 28) | + | size 400 (28 x 28) | size 200 (28 x 28) | + | size 500 (32 x 32) | size 300 (32 x 32) | + | size 600 (36 x 36) | size 400 (36 x 36) | + | size 700 (40 x 40) | size 500 (40 x 40) | + | size 800 (44 x 44) | size 600 (44 x 44) | + | size 900 (50 x 50) | size 700 (48 x 48) or size 800 (52 x 52) | + | size 1000 (56 x 56) | size 900 (56 x 56) | + | -- | size 1000 (64 x 64) | + + Action bar: Updated S2 action bar (non-color) in respective desktop and mobile layout sets. + + ## Token Diff + + *Tokens added (8):* + + * `action-bar-top-to-content-area` + * `action-bar-bottom-to-content-area` + * `action-bar-edge-to-content-area` + * `action-bar-close-button-to-counter` + * `action-bar-counter-font-size` + * `thumbnail-opacity-checkerboard-square-size` + * `thumbnail-corner-radius` + * `text-to-control-50` + + *Tokens updated (2):* + + * `action-bar-height` + * `action-bar-top-to-item-counter` + + *Token values updated (11):* + + * `thumbnail-size-75` + * `desktop`: `18px` -> `20px` + * `mobile`: `22px` -> `24px` + * `thumbnail-size-100` + * `desktop`: `20px` -> `24px` + * `mobile`: `26px` -> `28px` + * `thumbnail-size-200` + * `desktop`: `22px` -> `28px` + * `mobile`: `28px` -> `32px` + * `thumbnail-size-300` + * `desktop`: `26px` -> `32px` + * `mobile`: `32px` -> `36px` + * `thumbnail-size-400` + * `desktop`: `28px` -> `36px` + * `mobile`: `36px` -> `40px` + * `thumbnail-size-500` + * `desktop`: `32px` -> `40px` + * `mobile`: `40px` -> `44px` + * `thumbnail-size-600` + * `desktop`: `36px` -> `44px` + * `mobile`: `46px` -> `48px` + * `thumbnail-size-700` + * `desktop`: `40px` -> `48px` + * `mobile`: `50px` -> `52px` + * `thumbnail-size-800` + * `desktop`: `44px` -> `52px` + * `mobile`: `55px` -> `56px` + * `thumbnail-size-900` + * `desktop`: `50px` -> `56px` + * `mobile`: `62px` -> `64px` + * `thumbnail-size-1000` + * `desktop`: `56px` -> `64px` + * `mobile`: `70px` -> `72px` + +## 13.0.0-beta.40 + +### Minor Changes + +* [#373](https://github.com/adobe/spectrum-design-data/pull/373) [`e04bddf`](https://github.com/adobe/spectrum-design-data/commit/e04bddf65549c87cd314b54966fe066ae649b7f7) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - Updated S2 accordion tokens (non-color) in respective desktop and mobile layout sets + + * Added S2 meter tokens, including both color and non-color. + + ## Design Motivation + + * Accordion component is being formalized as a Spectrum 2 component. These net-new tokens define the design data needed for implementation. Introducing content-area-edge-to-content tokens enhances inclusivity for various design patterns. For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13435). + * Meter component is being formalized as a Spectrum 2 component. These net-new tokens define the design data needed for implementation. Introducing static tokens enables us to standardize the use of tokens across various components with indicators and tracks. This includes progress bars, progress circles, and potentially sliders in the future. For more information, [view Jira ticket](https://jira.corp.adobe.com/browse/SDS-13414). + + ## Token Diff + + *Tokens added (18):* + + * `accordion-content-area-edge-to-content-extra-large` + * `accordion-content-area-edge-to-content-large` + * `accordion-content-area-edge-to-content-medium` + * `accordion-content-area-edge-to-content-small` + * `accordion-disclosure-indicator-to-text-extra-large` + * `accordion-disclosure-indicator-to-text-large` + * `accordion-disclosure-indicator-to-text-medium` + * `accordion-disclosure-indicator-to-text-small` + * `accordion-item-to-divider` + * `meter-thickness-extra-large` + * `meter-thickness-medium` + * `static-black-text-color` + * `static-black-track-color` + * `static-black-track-indicator-color` + * `static-white-text-color` + * `static-white-track-color` + * `static-white-track-indicator-color` + * `track-color` + + *Newly deprecated tokens (2):* + + * `accordion-edge-to-disclosure-indicator` + * `accordion-disclosure-indicator-to-text` + + *Tokens updated (1):* + + * `meter-thickness-large` + +## 13.0.0-beta.39 + +### Minor Changes + +* [#364](https://github.com/adobe/spectrum-design-data/pull/364) [`f96ffca`](https://github.com/adobe/spectrum-design-data/commit/f96ffca4990547f8ddc8341d141e0edc65b872d9) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added coach-indicator s2 tokens + + ## Token Diff + + *Tokens added (8):* + + * `coach-indicator-collapsed-gap` + * `coach-indicator-collapsed-ring-rounding-increment` + * `coach-indicator-collapsed-ring-thickness` + * `coach-indicator-color` + * `coach-indicator-expanded-gap` + * `coach-indicator-expanded-ring-rounding-increment` + * `coach-indicator-expanded-ring-thickness` + * `coach-indicator-opacity` + +## 13.0.0-beta.38 + +### Minor Changes + +* [#360](https://github.com/adobe/spectrum-design-data/pull/360) [`f73a0b4`](https://github.com/adobe/spectrum-design-data/commit/f73a0b40464f1c73f2d9e8f6cf97da926e392ac7) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - - Fixed token type from Sizing to Font size for contextual-help-body-size and `contextual-help-title-size` + + * Renamed tokens by deprecating previous ones and creating new ones, with font in the token name + Updated value of `contextual-help-title-font-size` + + Marked the the following tokens in Tokens Studio for deprecation: + + * `negative-subdued-background-color-default` ( --> points to `negative-subtle-background-color-default`) + * `negative-subdued-background-color-hover` + * `negative-subdued-background-color-down` + * `negative-subdued-background-color-key-focus` + + ## Design motivation + + * The updated type sorts them correctly in the Tokens Studio data + * The updated value reflects the latest design for Spectrum 2, using the new title style instead of heading + * The negative-subdued tokens were deprecated because the tag "error" variant has been deprecated and are no longer needed in the system. A new "subtle" token has been added for the in-line alert use case. + + ## Token diff + + *Tokens added (2):* + + * `contextual-help-body-font-size` + * `contextual-help-title-font-size` + + *Newly deprecated Tokens (6):* + + * `contextual-help-body-size` + * `contextual-help-title-size` + * `negative-subdued-background-color-default` + * `negative-subdued-background-color-hover` + * `negative-subdued-background-color-down` + * `negative-subdued-background-color-key-focus` + +## 13.0.0-beta.37 + +### Minor Changes + +* [#355](https://github.com/adobe/spectrum-design-data/pull/355) [`783a200`](https://github.com/adobe/spectrum-design-data/commit/783a200983efa8e1f2cc31fd40ac3ed7298bb312) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated tokens according to updated token spec for Spectrum 2, including new and deprecated tokens + + ## Design Motivation + + ### Change 1: Updated terminology to align with t-shirt sizes + + Previously in S1, the breadcrumb variants were default, compact, and multiline. However, in S2, we have aligned breadcrumb to t-shirt sizes, resulting in the following changes: + + * Breadcrumbs (default) -> Breadcrumbs (L) + * Breadcrumbs (compact) -> Breadcrumbs (M) + * Breadcrumbs (multiline) -> Breadcrumbs (multiline) + + ### Change 2: Updated truncated menu button sizes and spacing + + Other structural changes + + * In S1 all variants used M sized action button – now we use S, M, L sized action buttons for respective sizes. + * In S1 all variants had same spacing 8px around chevron, now we use different spacings for all the three variants + + ## Token Diff + + *Tokens added (11):* + + * `breadcrumbs-separator-to-bottom-text-multiline` + * `breadcrumbs-start-edge-to-text-large` + * `breadcrumbs-start-edge-to-text-medium` + * `breadcrumbs-start-edge-to-text-multiline` + * `breadcrumbs-top-to-separator-large` + * `breadcrumbs-top-to-separator-medium` + * `breadcrumbs-top-to-separator-multiline` + * `breadcrumbs-truncated-menu-to-separator` + * `breadcrumbs-text-to-separator-large` + * `breadcrumbs-text-to-separator-medium` + * `breadcrumbs-text-to-separator-multiline` + + *Newly deprecated tokens (13):* + + * `breadcrumbs-height` + * `breadcrumbs-height-compact` + * `breadcrumbs-top-to-text` + * `breadcrumbs-top-to-text-compact` + * `breadcrumbs-bottom-to-text` + * `breadcrumbs-bottom-to-text-compact` + * `breadcrumbs-start-edge-to-text` + * `breadcrumbs-top-to-separator-icon` + * `breadcrumbs-top-to-separator-icon-compact` + * `breadcrumbs-top-to-separator-icon-multiline` + * `breadcrumbs-separator-icon-to-bottom-text-multiline` + * `breadcrumbs-truncated-menu-to-separator-icon` + * `breadcrumbs-top-to-truncated-menu-compact` + + *Token values updated (20):* + + * `breadcrumbs-top-to-separator-icon-multiline` + * `breadcrumbs-top-to-text-multiline` + * `breadcrumbs-bottom-to-text-multiline` + * `breadcrumbs-height-multiline` + * `breadcrumbs-top-to-separator-icon-multiline` + * `breadcrumbs-top-to-text-multiline` + * `breadcrumbs-height` + * `breadcrumbs-height-compact` + * `breadcrumbs-truncated-menu-to-separator-icon` + * `breadcrumbs-truncated-menu-to-bottom-text` + * `breadcrumbs-bottom-to-text` + * `breadcrumbs-bottom-to-text-compact` + * `breadcrumbs-separator-icon-to-bottom-text-multiline` + * `breadcrumbs-start-edge-to-text` + * `breadcrumbs-top-to-separator-icon` + * `breadcrumbs-top-to-separator-icon-compact` + * `breadcrumbs-top-to-text` + * `breadcrumbs-top-to-text-compact` + * `breadcrumbs-top-to-truncated-menu` + * `breadcrumbs-top-to-truncated-menu-compact` + +## 13.0.0-beta.36 + +### Minor Changes + +* [#342](https://github.com/adobe/spectrum-design-data/pull/342) [`9da9532`](https://github.com/adobe/spectrum-design-data/commit/9da9532f1915070d289f7cce6f4e562c2565f889) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Newly defined S2 Icon colors by the Icons team were incorporated into our system. This includes updates to existing colors and new color additions. More details on icon colors can be found [in this document](https://paper.dropbox.com/doc/S2-Icon-colors-May-update--CPQCbAN3uvmfSCYV5UekAgYkAg-BqbGyRAAL87Ehoqm9WrCB) and [this Figma file](https://www.figma.com/design/KRqwJWgLuW4R7HwFUzKWiB/S2-Icon-color?node-id=0%3A1\&t=jRZwm9gOH4dyLwL7-1). + + ## Design motivation + + Icons team defined new S2 color tokens needed for their iconography assets. + + ## Token diff + + *Tokens added (78):* + + * `icon-color-blue-background` + * `icon-color-blue-primary-down` + * `icon-color-blue-primary-hover` + * `icon-color-brown-background` + * `icon-color-brown-primary-default` + * `icon-color-brown-primary-down` + * `icon-color-brown-primary-hover` + * `icon-color-celery-background` + * `icon-color-celery-primary-default` + * `icon-color-celery-primary-down` + * `icon-color-celery-primary-hover` + * `icon-color-chartreuse-background` + * `icon-color-chartreuse-primary-default` + * `icon-color-chartreuse-primary-down` + * `icon-color-chartreuse-primary-hover` + * `icon-color-cinnamon-background` + * `icon-color-cinnamon-primary-default` + * `icon-color-cinnamon-primary-down` + * `icon-color-cinnamon-primary-hover` + * `icon-color-cyan-background` + * `icon-color-cyan-primary-default` + * `icon-color-cyan-primary-down` + * `icon-color-cyan-primary-hover` + * `icon-color-disabled-primary` + * `icon-color-emphasized-background` + * `icon-color-fuchsia-background` + * `icon-color-fuchsia-primary-default` + * `icon-color-fuchsia-primary-down` + * `icon-color-fuchsia-primary-hover` + * `icon-color-green-background` + * `icon-color-green-primary-down` + * `icon-color-green-primary-hover` + * `icon-color-indigo-background` + * `icon-color-indigo-primary-default` + * `icon-color-indigo-primary-down` + * `icon-color-indigo-primary-hover` + * `icon-color-informative` + * `icon-color-inverse-background` + * `icon-color-magenta-background` + * `icon-color-magenta-primary-default` + * `icon-color-magenta-primary-down` + * `icon-color-magenta-primary-hover` + * `icon-color-negative` + * `icon-color-neutral` + * `icon-color-notice` + * `icon-color-orange-background` + * `icon-color-orange-primary-default` + * `icon-color-orange-primary-down` + * `icon-color-orange-primary-hover` + * `icon-color-pink-background` + * `icon-color-pink-primary-default` + * `icon-color-pink-primary-down` + * `icon-color-pink-primary-hover` + * `icon-color-positive` + * `icon-color-primary-down` + * `icon-color-primary-hover` + * `icon-color-purple-background` + * `icon-color-purple-primary-default` + * `icon-color-purple-primary-down` + * `icon-color-purple-primary-hover` + * `icon-color-red-background` + * `icon-color-red-primary-down` + * `icon-color-red-primary-hover` + * `icon-color-seafoam-background` + * `icon-color-seafoam-primary-default` + * `icon-color-seafoam-primary-down` + * `icon-color-seafoam-primary-hover` + * `icon-color-silver-background` + * `icon-color-silver-primary-default` + * `icon-color-silver-primary-down` + * `icon-color-silver-primary-hover` + * `icon-color-turquoise-background` + * `icon-color-turquoise-primary-default` + * `icon-color-turquoise-primary-down` + * `icon-color-turquoise-primary-hover` + * `icon-color-yellow-background` + * `icon-color-yellow-primary-down` + * `icon-color-yellow-primary-hover` + +## 13.0.0-beta.35 + +### Minor Changes + +* [#337](https://github.com/adobe/spectrum-design-data/pull/337) [`df2ab7e`](https://github.com/adobe/spectrum-design-data/commit/df2ab7ed77d385593342a3ced7bfded94bd8af8e) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated illustrated message and drop zone tokens + + ## Design Motivation + + * The previous tokens had the incorrect types. By fixing the type, they can reference the updated tokens that are replacing them. + * Illustrated message now has three sizes (S, M, L) in Spectrum 2 to cover a wider range of use cases + * Component font size tokens now specify font in the token name + + ## Token Diff + + *Tokens added (12):* + + * `drop-zone-body-font-size` + * `drop-zone-cjk-title-font-size` + * `drop-zone-title-font-size` + * `illustrated-message-large-body-font-size` + * `illustrated-message-large-cjk-title-font-size` + * `illustrated-message-large-title-font-size` + * `illustrated-message-medium-body-font-size` + * `illustrated-message-medium-cjk-title-font-size` + * `illustrated-message-medium-title-font-size` + * `illustrated-message-small-body-font-size` + * `illustrated-message-small-cjk-title-font-size` + * `illustrated-message-small-title-font-size` + + *Newly deprecated tokens (6):* + + * `drop-zone-body-size` + * `drop-zone-cjk-title-size` + * `drop-zone-title-size` + * `illustrated-message-body-size` + * `illustrated-message-cjk-title-size` + * `illustrated-message-title-size` + + *Token value updated (1):* + + * `drop-zone-border-dash-gap` + +## 13.0.0-beta.34 + +### Minor Changes + +* [#334](https://github.com/adobe/spectrum-design-data/pull/334) [`4d28593`](https://github.com/adobe/spectrum-design-data/commit/4d28593c9d34414d72d78a1cc6c480d9ffdf82ce) Thanks [@nabuhasan](https://github.com/nabuhasan)! - S2 Popover tokens update + + ## Token Diff + + *Tokens added (3):* + + * `popover-border-color` + * `popover-border-opacity` + * `popover-edge-to-content-area` + + *Newly deprecated token (1):* + + * `popover-top-to-content-area` + +## 13.0.0-beta.33 + +### Minor Changes + +* [#331](https://github.com/adobe/spectrum-design-data/pull/331) [`0bbfedb`](https://github.com/adobe/spectrum-design-data/commit/0bbfedb9dbb63fdd5b20e91f65b3f958a833313b) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - S2 Menu token updates + + ## Token Diff + + *Tokens added (23):* + + * `link-out-icon-size-100` + * `link-out-icon-size-200` + * `link-out-icon-size-75` + * `menu-item-background-color-default` + * `menu-item-background-color-disabled` + * `menu-item-background-color-down` + * `menu-item-background-color-hover` + * `menu-item-background-color-keyboard-focus` + * `menu-item-background-opacity` + * `menu-item-label-to-description` + * `menu-item-label-to-description-extra-large` + * `menu-item-label-to-description-large` + * `menu-item-label-to-description-medium` + * `menu-item-label-to-description-small` + * `menu-item-top-to-thumbnail-extra-large` + * `menu-item-top-to-thumbnail-large` + * `menu-item-top-to-thumbnail-medium` + * `menu-item-top-to-thumbnail-small` + * `menu-section-header-to-description-extra-large` + * `menu-section-header-to-description-large` + * `menu-section-header-to-description-medium` + * `menu-section-header-to-description-small` + * `text-to-visual-400` + + *Token values updated (1):* + + * `menu-item-section-divider-height` + +## 13.0.0-beta.32 + +### Minor Changes + +* [#325](https://github.com/adobe/spectrum-design-data/pull/325) [`095248e`](https://github.com/adobe/spectrum-design-data/commit/095248e26bdd1c8b65a61f3793646bb44093c38b) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added semantic aliases used by in-line alert. + + ## Token Diff + + *Tokens added (5):* + + * `informative-subtle-background-color-default` + * `negative-subtle-background-color-default` + * `neutral-subtle-background-color-default` + * `notice-subtle-background-color-default` + * `positive-subtle-background-color-default` + +## 13.0.0-beta.31 + +### Minor Changes + +* [#327](https://github.com/adobe/spectrum-design-data/pull/327) [`3caa31d`](https://github.com/adobe/spectrum-design-data/commit/3caa31d014a3d49496422c38a93c3c7645da0373) Thanks [@GarthDB](https://github.com/GarthDB)! - Added `private` metadata to global tokens. + +## 13.0.0-beta.30 + +### Minor Changes + +* [#321](https://github.com/adobe/spectrum-design-data/pull/321) [`e392c49`](https://github.com/adobe/spectrum-design-data/commit/e392c497a4d474c9619a882ad9ab4948441712e0) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Added new Standard dialog, status light, and updated alert-banner-top-to-workflow-icon tokens + + ## Token Diff + + *Tokens added (10):* + + * `standard-dialog-body-font-size` + * `standard-dialog-maximum-width-large` + * `standard-dialog-maximum-width-medium` + * `standard-dialog-maximum-width-small` + * `standard-dialog-minimum-width` + * `standard-dialog-title-font-size` + * `status-light-text-to-visual-100` + * `status-light-text-to-visual-200` + * `status-light-text-to-visual-300` + * `status-light-text-to-visual-75` + + *Token values updated (10):* + + * `alert-banner-to-top-workflow-icon` + * `alert-banner-top-to-workflow-icon` + * `status-light-dot-size-extra-large` + * `status-light-dot-size-large` + * `status-light-dot-size-medium` + * `status-light-top-to-dot-extra-large` + * `status-light-top-to-dot-large` + * `status-light-top-to-dot-medium` + * `status-light-top-to-dot-small` + * `status-light-dot-size-small` + +## 13.0.0-beta.29 + +### Minor Changes + +* [#319](https://github.com/adobe/spectrum-design-data/pull/319) [`5f962fc`](https://github.com/adobe/spectrum-design-data/commit/5f962fc864c516213db58bece2c47a74c68cc985) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Updated values for component pill edge to visual only tokens for both desktop and mobile. + + These values are updated based on the new workflow icon size. + + ## Token Diff + + *Token values updated (4):* + + * `component-pill-edge-to-visual-only-100` + * `component-pill-edge-to-visual-only-200` + * `component-pill-edge-to-visual-only-300` + * `component-pill-edge-to-visual-only-75` + +* [#316](https://github.com/adobe/spectrum-design-data/pull/316) [`664ab0b`](https://github.com/adobe/spectrum-design-data/commit/664ab0bba68b9f4752599ed73c98b5d339414478) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - S2 Color loupe tokens update (color-only) + + ## Token Diff + + *Newly deprecated tokens (2):* + + * `color-loupe-drop-shadow-color` + * `drop-shadow-color` + +## 13.0.0-beta.28 + +### Patch Changes + +* [`1150331`](https://github.com/adobe/spectrum-design-data/commit/1150331): Removed duplicate tokens from src files. + +## 13.0.0-beta.27 + +### Minor Changes + +* [`3236495`](https://github.com/adobe/spectrum-design-data/commit/3236495): Updated coach mark tokens for both desktop and mobile + + ## Token Diff + + *Tokens added (6):* + + * `coach-mark-body-font-size` + * `coach-mark-pagination-body-font-size` + * `coach-mark-title-font-size` + + *Newly deprecated tokens (3):* + + * `coach-mark-body-size` + * `coach-mark-pagination-body-size` + * `coach-mark-title-size` + +## 13.0.0-beta.26 + +### Minor Changes + +* [`b59fa8f`](https://github.com/adobe/spectrum-design-data/commit/b59fa8f): Updated alert dialog tokens + + ## Token Diff + + *Tokens added (4):* + + * `alert-dialog-description-font-size` + * `alert-dialog-description-size` + * `alert-dialog-title-font-size` + * `alert-dialog-title-size` + + *Newly deprecated tokens (2):* + + * `alert-dialog-description-size` + * `alert-dialog-title-size` + +## 13.0.0-beta.25 + +### Minor Changes + +* [`e79ddd6`](https://github.com/adobe/spectrum-design-data/commit/e79ddd6): S2 Combo box, In-field button and In-field progress circle updates + + ## Motivation and context + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + *Tokens added (15):* + + * `combo-box-visual-to-field-button` + * `combo-box-visual-to-field-button-extra-large` + * `combo-box-visual-to-field-button-large` + * `combo-box-visual-to-field-button-medium` + * `combo-box-visual-to-field-button-quiet` + * `combo-box-visual-to-field-button-small` + * `in-field-button-edge-to-fill-extra-large` + * `in-field-button-edge-to-fill-large` + * `in-field-button-edge-to-fill-medium` + * `in-field-button-edge-to-fill-small` + * `in-field-progress-circle-edge-to-fill` + * `in-field-progress-circle-size-100` + * `in-field-progress-circle-size-200` + * `in-field-progress-circle-size-300` + * `in-field-progress-circle-size-75` + + *Newly deprecated tokens (6):* + + * `combo-box-quiet-minimum-width-multiplier` + * `combo-box-visual-to-field-button-small` + * `combo-box-visual-to-field-button-medium` + * `combo-box-visual-to-field-button-large` + * `combo-box-visual-to-field-button-extra-large` + * `in-field-button-edge-to-fill` + +* [`e79ddd6`](https://github.com/adobe/spectrum-design-data/commit/e79ddd6): S2 Color loupe tokens update + + ## Design Motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + *Newly deprecated tokens (2):* + + * `color-loupe-drop-shadow-blur` + * `color-loupe-drop-shadow-y` + +## 13.0.0-beta.24 + +### Major Changes + +* [`1c8f7ab`](https://github.com/adobe/spectrum-design-data/commit/1c8f7ab): Renamed previous drop shadow tokens from S1 and pointed them to the new `100` S2 drop shadow tokens + Added new drop shadow tokens, `100`, `200`, `emphasized-default`, `emphasized-hover`, `elevated`. + + ## Design Motivation + + These tokens reflect the updates to drop tokens foundations in Spectrum 2, allowing more options and flexibility of usage in containers + + ## Token Diff + + *Tokens added (24):* + + * `drop-shadow-blur` + * `drop-shadow-blur-100` + * `drop-shadow-blur-200` + * `drop-shadow-color` + * `drop-shadow-color-100` + * `drop-shadow-color-200` + * `drop-shadow-elevated-blur` + * `drop-shadow-elevated-color` + * `drop-shadow-elevated-x` + * `drop-shadow-elevated-y` + * `drop-shadow-emphasized-default-blur` + * `drop-shadow-emphasized-default-color` + * `drop-shadow-emphasized-default-x` + * `drop-shadow-emphasized-default-y` + * `drop-shadow-emphasized-hover-blur` + * `drop-shadow-emphasized-hover-color` + * `drop-shadow-emphasized-hover-x` + * `drop-shadow-emphasized-hover-y` + * `drop-shadow-x` + * `drop-shadow-x-100` + * `drop-shadow-x-200` + * `drop-shadow-y` + * `drop-shadow-y-100` + * `drop-shadow-y-200` + + *Tokens deleted (2):* + + * `drop-shadow-blur` + * `drop-shadow-y` + + *Token values updated (2):* + + * `color-handle-drop-shadow-color` + * `drop-shadow-color` + +### Minor Changes + +* [`3230aba`](https://github.com/adobe/spectrum-design-data/commit/3230aba): Updated and added S2 drop shadow tokens + + ## Design Motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + *Tokens added (7):* + + * `field-default-width-extra-large` + * `field-default-width-large` + * `field-default-width-medium` + * `field-default-width-small` + * `tag-minimum-width-large` + * `tag-minimum-width-medium` + * `tag-minimum-width-small` + + *Token values updated (4):* + + * `field-top-to-progress-circle-extra-large` + * `field-top-to-progress-circle-large` + * `field-top-to-progress-circle-medium` + * `field-top-to-progress-circle-small` + + *Newly Deprecated Tokens (4):* + + * `field-width-extra-large` + * `field-width-large` + * `field-width-medium` + * `field-width-small` + +## 13.0.0-beta.23 + +### Patch Changes + +* [`936f608`](https://github.com/adobe/spectrum-design-data/commit/936f608): Fixed misnamed accordion token. + + ## Token Diff + + *Tokens added (1):* + + * `accordion-top-to-text-spacious-small` + + *Newly deprecated token (1):* + + * `accordion-small-top-to-text-spacious` + +## 13.0.0-beta.22 + +### Minor Changes + +* [`c42448c`](https://github.com/adobe/spectrum-design-data/commit/c42448c): Updated and added alert dialog tokens for both desktop and mobile. + + ## Design Motivation + + Title text in alert dialog is now using the new Title typography token. Also updated the size for description text, and added a new token for top to alert icon. + + Title is a new typography style for Spectrum 2, and has a default `title-color` token. + + ## Token Diff + + *Tokens added (2):* + + * `alert-banner-top-to-alert-icon` + * `title-color` + + *Token values updated (2):* + + * `alert-dialog-description-size` + * `alert-dialog-title-size` + +* [`46a801c`](https://github.com/adobe/spectrum-design-data/commit/46a801c): Added tokens for S2 title color + +## 13.0.0-beta.21 + +### Minor Changes + +* [`d71bea1`](https://github.com/adobe/spectrum-design-data/commit/d71bea1): S2 Opacity checkerboard non-color token updates + + ## Design Motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + *Tokens added (2):* + + * `opacity-checkerboard-square-size-medium` + * `opacity-checkerboard-square-size-small` + + *Newly deprecated token (1):* + + * `opacity-checkerboard-square-size` + +## 13.0.0-beta.20 + +### Minor Changes + +* [`fb61f17`](https://github.com/adobe/spectrum-design-data/commit/fb61f17): Added Title typography tokens + + ## Design Motivation + + Adding new typography styles for Title. While the Heading style is for the loudest, most broad message, there are still going to be other important items in your information hierarchy. The Title style is for text that’s communicating other need-to-know concepts. It’s often set in Bold weight, and it has a range of font sizes that can be paired with Body and Detail sizes to create visual balance. File names, cards, user names, panels, and other high-signal concepts in interfaces use the Title style. + + ## Token Diff + + *Tokens added (45):* + + * `title-cjk-emphasized-font-style` + * `title-cjk-emphasized-font-weight` + * `title-cjk-font-family` + * `title-cjk-font-style` + * `title-cjk-font-weight` + * `title-cjk-line-height` + * `title-cjk-size-l` + * `title-cjk-size-m` + * `title-cjk-size-s` + * `title-cjk-size-xl` + * `title-cjk-size-xs` + * `title-cjk-size-xxl` + * `title-cjk-size-xxxl` + * `title-cjk-strong-emphasized-font-style` + * `title-cjk-strong-emphasized-font-weight` + * `title-cjk-strong-font-style` + * `title-cjk-strong-font-weight` + * `title-line-height` + * `title-margin-bottom-multiplier` + * `title-margin-top-multiplier` + * `title-sans-serif-emphasized-font-style` + * `title-sans-serif-emphasized-font-weight` + * `title-sans-serif-font-family` + * `title-sans-serif-font-style` + * `title-sans-serif-font-weight` + * `title-sans-serif-strong-emphasized-font-style` + * `title-sans-serif-strong-emphasized-font-weight` + * `title-sans-serif-strong-font-style` + * `title-sans-serif-strong-font-weight` + * `title-serif-emphasized-font-style` + * `title-serif-emphasized-font-weight` + * `title-serif-font-family` + * `title-serif-font-style` + * `title-serif-font-weight` + * `title-serif-strong-emphasized-font-style` + * `title-serif-strong-emphasized-font-weight` + * `title-serif-strong-font-style` + * `title-serif-strong-font-weight` + * `title-size-l` + * `title-size-m` + * `title-size-s` + * `title-size-xl` + * `title-size-xs` + * `title-size-xxl` + * `title-size-xxxl` + +## 13.0.0-beta.19 + +### Minor Changes + +* [`723d3b0`](https://github.com/adobe/spectrum-design-data/commit/723d3b0): Updated, added, and deprecated tokens for text field and text area. + + ## Design Motivation + + Updating text field and text area for Spectrum 2. + + ## Token Diff + + *Tokens added (4):* + + * `field-width-small` + * `field-width-medium` + * `field-width-large` + * `field-width-extra-large` + + *Updated token values (4):* + + * `side-label-character-count-top-margin-small` + * `side-label-character-count-top-margin-medium` + * `side-label-character-count-top-margin-large` + * `side-label-character-count-top-margin-extra-large` + + *Newly deprecated tokens (8):* + + * `field-width` + * `field-edge-to-text-quiet` + * `field-edge-to-border-quiet` + * `field-edge-to-alert-icon-quiet` + * `field-edge-to-validation-icon-quiet` + * `field-label-to-component-quiet-small` + * `field-label-to-component-quiet-medium` + * `field-label-to-component-quiet-large` + * `field-label-to-component-quiet-extra-large` + * `character-count-to-field-quiet-small` + * `character-count-to-field-quiet-medium` + * `character-count-to-field-quiet-large` + * `character-count-to-field-quiet-extra-large` + +* [`66b1edf`](https://github.com/adobe/spectrum-design-data/commit/66b1edf): Updated color of color-area-border-color token from gray.900 to gray.1000 in both light and dark sets. + + ## Design motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + *Token value updated (1):* + + * `color-area-border-color` + +* [`7b5f18b`](https://github.com/adobe/spectrum-design-data/commit/7b5f18b): Update alert banner for Spectrum 2 + + ## Design Motivation + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + *Token values updated (5):* + + * `alert-banner-bottom-to-text` + * `alert-banner-minimum-height` + * `alert-banner-top-to-text` + * `alert-banner-top-to-workflow-icon` + * `search-field-minimum-width-multiplier` + +* [`4a84fdd`](https://github.com/adobe/spectrum-design-data/commit/4a84fdd): Spectrum 2 Toast Tokens + + ## Design motivation + + Updated the `color-area-border-rounding` token type from spacing to borderRadius and adjusted value referenced, desktop and mobile scale. + + These changes occurred as a result of scaling things for S2 design language and experiences. + + ## Token Diff + + *Token values updated (5):* + + * `toast-height` + * `toast-top-to-workflow-icon` + * `toast-top-to-text` + * `toast-bottom-to-text` + * `color-area-border-rounding` + +## 13.0.0-beta.18 + +### Minor Changes + +* [`940bd78`](https://github.com/adobe/spectrum-design-data/commit/940bd78): Updated background aliases in dark theme; added new non-semantic colors + + ## Design Motivation + + The existing background colors were updated for better consistency across semantic and non-semantic variants of the Badge component. The colors also introduce some general improved contrast in dark theme across other components using these aliases. + The new non-semantic visual and background colors were added because new hues were introduced. These colors will be used in status light and badge components, respectively. + + ## Token Diff + + *Tokens added (10):* + + * `brown-background-color-default` + * `brown-visual-color` + * `cinnamon-background-color-default` + * `cinnamon-visual-color` + * `pink-background-color-default` + * `pink-visual-color` + * `silver-background-color-default` + * `silver-visual-color` + * `turquoise-background-color-default` + * `turquoise-visual-color` + + *Token values updated (27):* + + * `accent-background-color-default` + * `accent-background-color-down` + * `accent-background-color-hover` + * `accent-background-color-key-focus` + * `celery-background-color-default` + * `chartreuse-background-color-default` + * `gray-background-color-default` + * `informative-background-color-default` + * `informative-background-color-down` + * `informative-background-color-hover` + * `informative-background-color-key-focus` + * `negative-background-color-default` + * `negative-background-color-down` + * `negative-background-color-hover` + * `negative-background-color-key-focus` + * `neutral-subdued-background-color-default` + * `neutral-subdued-background-color-down` + * `neutral-subdued-background-color-hover` + * `neutral-subdued-background-color-key-focus` + * `notice-background-color-default` + * `orange-background-color-default` + * `positive-background-color-default` + * `positive-background-color-down` + * `positive-background-color-hover` + * `positive-background-color-key-focus` + * `table-selected-row-background-color` + * `yellow-background-color-default` + +## 13.0.0-beta.17 + +### Minor Changes + +* [`9072ae7`](https://github.com/adobe/spectrum-design-data/commit/9072ae7): `color-slider-border-color` token was updated to reference `gray-1000` instead of `gray-90`0 in both light and dark themes. +* [`912e307`](https://github.com/adobe/spectrum-design-data/commit/912e307): Updated `color-slider-border-rounding` token to use 7px instead of 4px in desktop only. + This token value update is the same value used by alias token: `corner-radius-medium-size-small`. + + ## Design Motivation + + S2 color slider design changes. + + ## Token Diff + + *Token values updated (2):* + + * `color-slider-border-color` + * `color-slider-border-rounding` + +## 13.0.0-beta.16 + +### Minor Changes + +* [`80a3fec`](https://github.com/adobe/spectrum-design-data/commit/80a3fec): New non-color tokens for S2 tag component added to both desktop and mobile layout.component sets. + + ## Design Motivation + + New values for tag component for S2. + + ## Token Diff + + *Tokens added (9):* + + * `tag-edge-to-clear-icon-large` + * `tag-edge-to-clear-icon-medium` + * `tag-edge-to-clear-icon-small` + * `tag-label-clear-icon-large` + * `tag-label-to-clear-icon-large` + * `tag-label-to-clear-icon-medium` + * `tag-label-to-clear-icon-small` + * `tag-maximum-width-multiplier` + * `tag-minimum-width-multiplier` + +## 13.0.0-beta.15 + +### Minor Changes + +* [`c7c1d81`](https://github.com/adobe/spectrum-design-data/commit/c7c1d81): Added new semantic color aliases to Tokens Studio, in the S2 color tokens, alias sets for both light and dark themes. +* [`4b78009`](https://github.com/adobe/spectrum-design-data/commit/4b78009): Updated values and added new tokens for Switch. + + ## Design Motivation + + New negative-subdued background tokens were needed for negative and not selected tag components. + + Added new tokens: `switch-handle-size-_` and `switch-handle-selected-size-_` for both desktop and mobile. + Update token values on: `switch-control-width-_` and `switch-control-height-_` for both desktop and mobile. + + The design for Switch in S2 has changed and now has a border when it's not selected. New handle sizes are added and control sizes have been updated. + + ## Token Diff + + *Tokens added (12):* + + * `negative-subdued-background-color-default` + * `negative-subdued-background-color-down` + * `negative-subdued-background-color-hover` + * `negative-subdued-background-color-key-focus` + * `switch-handle-selected-size-extra-large` + * `switch-handle-selected-size-large` + * `switch-handle-selected-size-medium` + * `switch-handle-selected-size-small` + * `switch-handle-size-extra-large` + * `switch-handle-size-large` + * `switch-handle-size-medium` + * `switch-handle-size-small` + + *Token values updated (8):* + + * `switch-control-height-extra-large` + * `switch-control-height-large` + * `switch-control-height-medium` + * `switch-control-height-small` + * `switch-control-width-extra-large` + * `switch-control-width-large` + * `switch-control-width-medium` + * `switch-control-width-small` + +## 13.0.0-beta.14 + +### Minor Changes + +* [`f004b0c`](https://github.com/adobe/spectrum-design-data/commit/f004b0c): The tokens listed in the diff below had identical values between sets and so were merged to single values to simplify the data. + + ## Token Diff + + *Tokens values updated (46):* + + * `accordion-disclosure-indicator-to-text` + * `accordion-edge-to-disclosure-indicator` + * `accordion-edge-to-text` + * `accordion-focus-indicator-gap` + * `accordion-top-to-text-compact-medium` + * `accordion-top-to-text-compact-small` + * `action-button-edge-to-hold-icon-extra-small` + * `action-button-edge-to-hold-icon-small` + * `asterisk-icon-size-75` + * `background-base-color` + * `background-layer-1-color` + * `color-area-border-rounding` + * `corner-radius-0` + * `corner-radius-100` + * `corner-radius-1000` + * `corner-radius-200` + * `corner-radius-300` + * `corner-radius-400` + * `corner-radius-500` + * `corner-radius-600` + * `corner-radius-700` + * `corner-radius-75` + * `corner-radius-800` + * `corner-radius-extra-large-default` + * `corner-radius-full` + * `corner-radius-large-default` + * `corner-radius-medium-default` + * `corner-radius-medium-size-extra-large` + * `corner-radius-medium-size-extra-small` + * `corner-radius-medium-size-large` + * `corner-radius-medium-size-medium` + * `corner-radius-medium-size-small` + * `corner-radius-none` + * `corner-radius-small-default` + * `corner-radius-small-size-extra-large` + * `corner-radius-small-size-large` + * `corner-radius-small-size-medium` + * `corner-radius-small-size-small` + * `drop-shadow-x` + * `field-label-top-margin-extra-large` + * `field-label-top-margin-large` + * `field-label-top-margin-medium` + * `field-label-top-margin-small` + * `gray-background-color-default` + * `status-light-dot-size-small` + * `table-edge-to-content` + +## 13.0.0-beta.13 + +### Minor Changes + +* [`ef600c4`](https://github.com/adobe/spectrum-design-data/commit/ef600c4): ## Design Motivation + + * The updated tooltip component in Spectrum 2 has a larger, slightly rounded tip + * Added tokens for horizontal and vertical orientation + + ## Tokens Diff + + *Tokens added (3):* + + * `divider-horizontal-minimum-width` + * `divider-vertical-minimum-height` + * `tooltip-tip-corner-radius` + + *Token values updated (2):* + + * `tooltip-tip-height` + * `tooltip-tip-width` + +## 13.0.0-beta.12 + +### Minor Changes + +* [`c87d743`](https://github.com/adobe/spectrum-design-data/commit/c87d743): Updates to spacing tokens for the S2 field label component include: + + Token: field-label-top-to-asterisk-\[medium, large, extra-large]. Only value for extra-large token required updating in the desktop scale. All other sizes presented accurate values. + + Token: field-label-top-margin-\[medium, large, extra-large]. All values were updated to reflect 0px for both desktop and mobile scales + + ## Design Motivation + + These changes occurred as a result of updates to the field label component for S2. + + ## Token Diff + + *Token values updated (4):* + + * `field-label-top-margin-extra-large` + * `field-label-top-margin-large` + * `field-label-top-margin-medium` + * `field-label-top-to-asterisk-extra-large` + + ## Schema Diff + + Adds missing schema information for `corner-radius-1000`. Also added `schemas/token-types/multiplier.json` to the `scale-set` schema. + +## 13.0.0-beta.11 + +### Minor Changes + +* [`3c6303a`](https://github.com/adobe/spectrum-design-data/commit/3c6303a): Updated text-to-visual-300 mobile value from 11px to 10px. + + ## Design Motivation + + To better follow our logarithmic scale rounding principle. + + ## Token Diff + + *Token values updated (1):* + + * `text-to-visual-300` + +* [`6579966`](https://github.com/adobe/spectrum-design-data/commit/6579966): existing corner-radius tokens, adding net-new global corner radius tokens, and introducing new alias names that point to these global values. + + ## Design Motivation + + More on Spectrum 2 rounding: + + In Spectrum 2, rounding also applies to the different t-shirt sized components and varies based on a Major Second logarithmic scale, rounded to whole numbers to avoid using half-pixels. This allows for components to retain a consistent and identifiable shape at all sizes. Because of this there are now component size specific tokens like corner-radius-small-size-medium or corner-radius-medium-size-extra-large to help us keep track of the nuance within t-shirt sizes. + + ## Token Diff + + *Tokens added (23):* + + * `corner-radius-0` + * `corner-radius-300` + * `corner-radius-400` + * `corner-radius-500` + * `corner-radius-600` + * `corner-radius-700` + * `corner-radius-800` + * `corner-radius-1000` + * `corner-radius-extra-large-default` + * `corner-radius-full` + * `corner-radius-large-default` + * `corner-radius-medium-default` + * `corner-radius-medium-size-extra-small` + * `corner-radius-medium-size-small` + * `corner-radius-medium-size-medium` + * `corner-radius-medium-size-large` + * `corner-radius-medium-size-extra-large` + * `corner-radius-none` + * `corner-radius-small-default` + * `corner-radius-small-size-small` + * `corner-radius-small-size-medium` + * `corner-radius-small-size-large` + * `corner-radius-small-size-extra-large` + + *Token values updated (3):* + + * `corner-radius-75` + * `corner-radius-100` + * `corner-radius-200` + +## 13.0.0-beta.10 + +### Minor Changes + +* [`23d9085`](https://github.com/adobe/spectrum-design-data/commit/23d9085): Updated desktop and mobile values for component-edge-to-visual-only tokens. + + Spacing changed due to new workflow icon sizes. + + ## Token Diff + + *Token values updated (5):* + + * `component-edge-to-visual-only-100` + * `component-edge-to-visual-only-200` + * `component-edge-to-visual-only-300` + * `component-edge-to-visual-only-50` + * `component-edge-to-visual-only-75` + +* [`c5430b7`](https://github.com/adobe/spectrum-design-data/commit/c5430b7): Updated help-text-top-to-workflow-icon-\_ token values to point to component-top-to-workflow-icon-\_ tokens + + ## Token Diff + + *Newly deprecated tokens (4):* + + * `help-text-top-to-workflow-icon-extra-large`: use `component-edge-to-visual-only-300` + * `help-text-top-to-workflow-icon-large`: use `component-edge-to-visual-only-200` + * `help-text-top-to-workflow-icon-medium`: use `component-edge-to-visual-only-100` + * `help-text-top-to-workflow-icon-small`: use `component-edge-to-visual-only-75` + +## 13.0.0-beta.9 + +### Minor Changes + +* [`cf09c84`](https://github.com/adobe/spectrum-design-data/commit/cf09c84): Updated workflow-icon-size-50, 75, 100, 200, 300 with Spectrum 2 values in mobile and desktop. + Updated component-top-to-workflow and text-to-visual padding. + Added 3 new non-color tokens for S2 component downstates in Tokens Studio. + + ## Design Motivation + + Spectrum 2 icons have a different workflow icon sizing with base sizes 20 px (desktop), 24 px (mobile). + + Updated padding values due to new workflow icon sizes in S2. + + These tokens are used to calculate the perspective transform in CSS to achieve the effect of a component scaling down for down states in Spectrum 2. This is not applicable to all components. + + ## Tokens Diff + + *Tokens added (3):* + + * `component-size-difference-down` + * `component-size-minimum-perspective-down` + * `component-size-width-ratio-down` + + *Token values updated (15):* + + * `component-top-to-workflow-icon-100` + * `component-top-to-workflow-icon-200` + * `component-top-to-workflow-icon-300` + * `component-top-to-workflow-icon-50` + * `component-top-to-workflow-icon-75` + * `text-to-visual-100` + * `text-to-visual-200` + * `text-to-visual-300` + * `text-to-visual-50` + * `text-to-visual-75` + * `workflow-icon-size-100` + * `workflow-icon-size-200` + * `workflow-icon-size-300` + * `workflow-icon-size-50` + * `workflow-icon-size-75` + +## 13.0.0-beta.8 + +### Minor Changes + +* [`507f3c2`](https://github.com/adobe/spectrum-design-data/commit/507f3c2): Added new and updating existing background layer tokens to S2 set in Tokens Studio and S2/Variables. Also reordered token organization to reflect proper usage based on [S2 guidelines](https://s2.spectrum.corp.adobe.com/page/background-layers/#editing-contexts). + + ## Design Motivation + + In Spectrum 2, background layers are used differently depending on the primary context of the page. We now have a full set of tokens to help users distinguish between primary purposes, editing vs browsing. + + ## Token Diff + + *Tokens added (2):* + + * `background-elevated-color` + * `background-pasteboard-color` + + *Token values updated (1):* + + * `background-base-color` + +## 13.0.0-beta.7 + +### Minor Changes + +* [`4853f76`](https://github.com/adobe/spectrum-design-data/commit/4853f76): Added schema to all tokens and fixed values that didn't meet schema requirements + + ## Token Diff + + *Token values updated (328):* + + * `accent-background-color-default` + * `accent-background-color-down` + * `accent-background-color-hover` + * `accent-background-color-key-focus` + * `accent-color-100` + * `accent-color-1000` + * `accent-color-1100` + * `accent-color-1200` + * `accent-color-1300` + * `accent-color-1400` + * `accent-color-200` + * `accent-color-300` + * `accent-color-400` + * `accent-color-500` + * `accent-color-600` + * `accent-color-700` + * `accent-color-800` + * `accent-color-900` + * `accent-content-color-default` + * `accent-content-color-down` + * `accent-content-color-hover` + * `accent-content-color-key-focus` + * `accent-content-color-selected` + * `accent-visual-color` + * `blue-100` + * `blue-1000` + * `blue-1100` + * `blue-1200` + * `blue-1300` + * `blue-1400` + * `blue-200` + * `blue-300` + * `blue-400` + * `blue-500` + * `blue-600` + * `blue-700` + * `blue-800` + * `blue-900` + * `blue-background-color-default` + * `blue-visual-color` + * `celery-100` + * `celery-1000` + * `celery-1100` + * `celery-1200` + * `celery-1300` + * `celery-1400` + * `celery-200` + * `celery-300` + * `celery-400` + * `celery-500` + * `celery-600` + * `celery-700` + * `celery-800` + * `celery-900` + * `celery-background-color-default` + * `celery-visual-color` + * `chartreuse-100` + * `chartreuse-1000` + * `chartreuse-1100` + * `chartreuse-1200` + * `chartreuse-1300` + * `chartreuse-1400` + * `chartreuse-200` + * `chartreuse-300` + * `chartreuse-400` + * `chartreuse-500` + * `chartreuse-600` + * `chartreuse-700` + * `chartreuse-800` + * `chartreuse-900` + * `chartreuse-background-color-default` + * `chartreuse-visual-color` + * `contextual-help-body-size` + * `cyan-100` + * `cyan-1000` + * `cyan-1100` + * `cyan-1200` + * `cyan-1300` + * `cyan-1400` + * `cyan-200` + * `cyan-300` + * `cyan-400` + * `cyan-500` + * `cyan-600` + * `cyan-700` + * `cyan-800` + * `cyan-900` + * `cyan-background-color-default` + * `cyan-visual-color` + * `drop-zone-background-color` + * `focus-indicator-color` + * `fuchsia-100` + * `fuchsia-1000` + * `fuchsia-1100` + * `fuchsia-1200` + * `fuchsia-1300` + * `fuchsia-1400` + * `fuchsia-200` + * `fuchsia-300` + * `fuchsia-400` + * `fuchsia-500` + * `fuchsia-600` + * `fuchsia-700` + * `fuchsia-800` + * `fuchsia-900` + * `fuchsia-background-color-default` + * `fuchsia-visual-color` + * `green-100` + * `green-1000` + * `green-1100` + * `green-1200` + * `green-1300` + * `green-1400` + * `green-200` + * `green-300` + * `green-400` + * `green-500` + * `green-600` + * `green-700` + * `green-800` + * `green-900` + * `green-background-color-default` + * `green-visual-color` + * `icon-color-blue-primary-default` + * `icon-color-green-primary-default` + * `icon-color-red-primary-default` + * `icon-color-yellow-primary-default` + * `indigo-100` + * `indigo-1000` + * `indigo-1100` + * `indigo-1200` + * `indigo-1300` + * `indigo-1400` + * `indigo-200` + * `indigo-300` + * `indigo-400` + * `indigo-500` + * `indigo-600` + * `indigo-700` + * `indigo-800` + * `indigo-900` + * `indigo-background-color-default` + * `indigo-visual-color` + * `informative-background-color-default` + * `informative-background-color-down` + * `informative-background-color-hover` + * `informative-background-color-key-focus` + * `informative-color-100` + * `informative-color-1000` + * `informative-color-1100` + * `informative-color-1200` + * `informative-color-1300` + * `informative-color-1400` + * `informative-color-200` + * `informative-color-300` + * `informative-color-400` + * `informative-color-500` + * `informative-color-600` + * `informative-color-700` + * `informative-color-800` + * `informative-color-900` + * `informative-visual-color` + * `magenta-100` + * `magenta-1000` + * `magenta-1100` + * `magenta-1200` + * `magenta-1300` + * `magenta-1400` + * `magenta-200` + * `magenta-300` + * `magenta-400` + * `magenta-500` + * `magenta-600` + * `magenta-700` + * `magenta-800` + * `magenta-900` + * `magenta-background-color-default` + * `magenta-visual-color` + * `navigational-indicator-top-to-back-icon-extra-large` + * `navigational-indicator-top-to-back-icon-large` + * `navigational-indicator-top-to-back-icon-medium` + * `navigational-indicator-top-to-back-icon-small` + * `negative-background-color-default` + * `negative-background-color-down` + * `negative-background-color-hover` + * `negative-background-color-key-focus` + * `negative-border-color-default` + * `negative-border-color-down` + * `negative-border-color-focus` + * `negative-border-color-focus-hover` + * `negative-border-color-hover` + * `negative-border-color-key-focus` + * `negative-color-100` + * `negative-color-1000` + * `negative-color-1100` + * `negative-color-1200` + * `negative-color-1300` + * `negative-color-1400` + * `negative-color-200` + * `negative-color-300` + * `negative-color-400` + * `negative-color-500` + * `negative-color-600` + * `negative-color-700` + * `negative-color-800` + * `negative-color-900` + * `negative-content-color-default` + * `negative-content-color-down` + * `negative-content-color-hover` + * `negative-content-color-key-focus` + * `negative-visual-color` + * `notice-background-color-default` + * `notice-color-100` + * `notice-color-1000` + * `notice-color-1100` + * `notice-color-1200` + * `notice-color-1300` + * `notice-color-1400` + * `notice-color-200` + * `notice-color-300` + * `notice-color-400` + * `notice-color-500` + * `notice-color-600` + * `notice-color-700` + * `notice-color-800` + * `notice-color-900` + * `notice-visual-color` + * `orange-100` + * `orange-1000` + * `orange-1100` + * `orange-1200` + * `orange-1300` + * `orange-1400` + * `orange-200` + * `orange-300` + * `orange-400` + * `orange-500` + * `orange-600` + * `orange-700` + * `orange-800` + * `orange-900` + * `orange-background-color-default` + * `orange-visual-color` + * `positive-background-color-default` + * `positive-background-color-down` + * `positive-background-color-hover` + * `positive-background-color-key-focus` + * `positive-color-100` + * `positive-color-1000` + * `positive-color-1100` + * `positive-color-1200` + * `positive-color-1300` + * `positive-color-1400` + * `positive-color-200` + * `positive-color-300` + * `positive-color-400` + * `positive-color-500` + * `positive-color-600` + * `positive-color-700` + * `positive-color-800` + * `positive-color-900` + * `positive-visual-color` + * `purple-100` + * `purple-1000` + * `purple-1100` + * `purple-1200` + * `purple-1300` + * `purple-1400` + * `purple-200` + * `purple-300` + * `purple-400` + * `purple-500` + * `purple-600` + * `purple-700` + * `purple-800` + * `purple-900` + * `purple-background-color-default` + * `purple-visual-color` + * `red-100` + * `red-1000` + * `red-1100` + * `red-1200` + * `red-1300` + * `red-1400` + * `red-200` + * `red-300` + * `red-400` + * `red-500` + * `red-600` + * `red-700` + * `red-800` + * `red-900` + * `red-background-color-default` + * `red-visual-color` + * `seafoam-100` + * `seafoam-1000` + * `seafoam-1100` + * `seafoam-1200` + * `seafoam-1300` + * `seafoam-1400` + * `seafoam-200` + * `seafoam-300` + * `seafoam-400` + * `seafoam-500` + * `seafoam-600` + * `seafoam-700` + * `seafoam-800` + * `seafoam-900` + * `seafoam-background-color-default` + * `seafoam-visual-color` + * `side-navigation-item-to-header` + * `table-selected-row-background-color` + * `yellow-100` + * `yellow-1000` + * `yellow-1100` + * `yellow-1200` + * `yellow-1300` + * `yellow-1400` + * `yellow-200` + * `yellow-300` + * `yellow-400` + * `yellow-500` + * `yellow-600` + * `yellow-700` + * `yellow-800` + * `yellow-900` + * `yellow-background-color-default` + * `yellow-visual-color` + +## 13.0.0-beta.6 + +### Minor Changes + +* [`6d1c661`](https://github.com/adobe/spectrum-design-data/commit/6d1c661): Added new Spectrum 2 color tokens for both light and dark themes: + + Cinnamon 100 to 1600 + + ## Design Motivation + + This is the last new color that is a part of the new color set needed from Premiere Pro. The additional color will also help when creating new data vis color palettes for Spectrum 2. + + ## Token Diff + + *Tokens added (17):* + + * `cinnamon-100` + * `cinnamon-200` + * `cinnamon-300` + * `cinnamon-400` + * `cinnamon-500` + * `cinnamon-600` + * `cinnamon-700` + * `cinnamon-800` + * `cinnamon-900` + * `cinnamon-1000` + * `cinnamon-1100` + * `cinnamon-1200` + * `cinnamon-1300` + * `cinnamon-1400` + * `cinnamon-1500` + * `cinnamon-1600` + +* [`91d7e95`](https://github.com/adobe/spectrum-design-data/commit/91d7e95): Fixed bug in the light theme value for notice-background-color-default, from notice-color-800 to notice-color-600 + + ## Design Motivation + + While updating the badge component in Figma, we noticed a bug where notice-background-color-default in S2 was entered incorrectly for light theme, and should instead match the value for S1 + + ## Token Diff + + *Token values updated (1):* + + * `notice-background-color-default`: `light`: `notice-color-800` -> `notice-color-600` + +## 13.0.0-beta.5 + +### Major Changes + +* [`0af2674`](https://github.com/adobe/spectrum-design-data/commit/0af2674): feat: new color values for spectrum2 + + ## Design Motivation + + This update addresses several improvements: + + fuchsia, seafoam: all values shifted to make room for new colors, pink and turquoise + all other colors: certain values were updated to address accessibility contrast requirements against Spectrum 2 background layer colors + + ## Token Diff + +
    Token values updated (246): + + * `accent-background-color-default` + * `accent-background-color-down` + * `accent-background-color-hover` + * `accent-background-color-key-focus` + * `accent-color-1000` + * `accent-color-200` + * `accent-color-300` + * `accent-color-400` + * `accent-color-500` + * `accent-color-600` + * `accent-color-700` + * `accent-color-800` + * `accent-color-900` + * `accent-content-color-default` + * `accent-content-color-down` + * `accent-content-color-hover` + * `accent-content-color-key-focus` + * `accent-content-color-selected` + * `accent-visual-color` + * `blue-1000` + * `blue-200` + * `blue-300` + * `blue-400` + * `blue-500` + * `blue-600` + * `blue-700` + * `blue-800` + * `blue-900` + * `blue-background-color-default` + * `blue-visual-color` + * `celery-1000` + * `celery-200` + * `celery-300` + * `celery-400` + * `celery-500` + * `celery-600` + * `celery-700` + * `celery-800` + * `celery-900` + * `celery-background-color-default` + * `celery-visual-color` + * `chartreuse-1000` + * `chartreuse-200` + * `chartreuse-300` + * `chartreuse-400` + * `chartreuse-500` + * `chartreuse-600` + * `chartreuse-700` + * `chartreuse-800` + * `chartreuse-900` + * `chartreuse-background-color-default` + * `chartreuse-visual-color` + * `cyan-1000` + * `cyan-300` + * `cyan-400` + * `cyan-500` + * `cyan-600` + * `cyan-700` + * `cyan-800` + * `cyan-900` + * `cyan-background-color-default` + * `cyan-visual-color` + * `drop-zone-background-color` + * `focus-indicator-color` + * `fuchsia-100` + * `fuchsia-1000` + * `fuchsia-1100` + * `fuchsia-1200` + * `fuchsia-1300` + * `fuchsia-1400` + * `fuchsia-1500` + * `fuchsia-1600` + * `fuchsia-200` + * `fuchsia-300` + * `fuchsia-400` + * `fuchsia-500` + * `fuchsia-600` + * `fuchsia-700` + * `fuchsia-800` + * `fuchsia-900` + * `fuchsia-background-color-default` + * `fuchsia-visual-color` + * `green-100` + * `green-1000` + * `green-200` + * `green-300` + * `green-400` + * `green-500` + * `green-600` + * `green-700` + * `green-800` + * `green-900` + * `green-background-color-default` + * `green-visual-color` + * `icon-color-blue-primary-default` + * `icon-color-green-primary-default` + * `icon-color-red-primary-default` + * `icon-color-yellow-primary-default` + * `indigo-1000` + * `indigo-300` + * `indigo-400` + * `indigo-500` + * `indigo-600` + * `indigo-700` + * `indigo-800` + * `indigo-900` + * `indigo-background-color-default` + * `indigo-visual-color` + * `informative-background-color-default` + * `informative-background-color-down` + * `informative-background-color-hover` + * `informative-background-color-key-focus` + * `informative-color-1000` + * `informative-color-200` + * `informative-color-300` + * `informative-color-400` + * `informative-color-500` + * `informative-color-600` + * `informative-color-700` + * `informative-color-800` + * `informative-color-900` + * `informative-visual-color` + * `magenta-100` + * `magenta-1000` + * `magenta-1100` + * `magenta-1200` + * `magenta-1300` + * `magenta-1400` + * `magenta-200` + * `magenta-300` + * `magenta-400` + * `magenta-500` + * `magenta-600` + * `magenta-700` + * `magenta-800` + * `magenta-900` + * `magenta-background-color-default` + * `magenta-visual-color` + * `negative-background-color-default` + * `negative-background-color-down` + * `negative-background-color-hover` + * `negative-background-color-key-focus` + * `negative-border-color-default` + * `negative-border-color-focus` + * `negative-border-color-hover` + * `negative-border-color-key-focus` + * `negative-color-1000` + * `negative-color-200` + * `negative-color-300` + * `negative-color-400` + * `negative-color-500` + * `negative-color-600` + * `negative-color-700` + * `negative-color-800` + * `negative-color-900` + * `negative-content-color-default` + * `negative-content-color-down` + * `negative-content-color-hover` + * `negative-content-color-key-focus` + * `negative-visual-color` + * `notice-background-color-default` + * `notice-color-1000` + * `notice-color-200` + * `notice-color-400` + * `notice-color-500` + * `notice-color-600` + * `notice-color-700` + * `notice-color-800` + * `notice-color-900` + * `notice-visual-color` + * `orange-1000` + * `orange-200` + * `orange-400` + * `orange-500` + * `orange-600` + * `orange-700` + * `orange-800` + * `orange-900` + * `orange-background-color-default` + * `orange-visual-color` + * `positive-background-color-default` + * `positive-background-color-down` + * `positive-background-color-hover` + * `positive-background-color-key-focus` + * `positive-color-100` + * `positive-color-1000` + * `positive-color-200` + * `positive-color-300` + * `positive-color-400` + * `positive-color-500` + * `positive-color-600` + * `positive-color-700` + * `positive-color-800` + * `positive-color-900` + * `positive-visual-color` + * `purple-1000` + * `purple-200` + * `purple-300` + * `purple-400` + * `purple-500` + * `purple-600` + * `purple-700` + * `purple-800` + * `purple-900` + * `purple-background-color-default` + * `purple-visual-color` + * `red-1000` + * `red-200` + * `red-300` + * `red-400` + * `red-500` + * `red-600` + * `red-700` + * `red-800` + * `red-900` + * `red-background-color-default` + * `red-visual-color` + * `seafoam-100` + * `seafoam-1000` + * `seafoam-1100` + * `seafoam-1200` + * `seafoam-1300` + * `seafoam-1400` + * `seafoam-1500` + * `seafoam-1600` + * `seafoam-200` + * `seafoam-300` + * `seafoam-400` + * `seafoam-500` + * `seafoam-600` + * `seafoam-700` + * `seafoam-800` + * `seafoam-900` + * `seafoam-background-color-default` + * `seafoam-visual-color` + * `table-selected-row-background-color` + * `yellow-1000` + * `yellow-300` + * `yellow-400` + * `yellow-500` + * `yellow-600` + * `yellow-700` + * `yellow-800` + * `yellow-900` + * `yellow-background-color-default` + * `yellow-visual-color` + +
    + +### Minor Changes + +* [`7b5ec24`](https://github.com/adobe/spectrum-design-data/commit/7b5ec24): feat: add new color tokens + + ## Design Motivation + + Added new colors due to needs from Premiere Pro. The additional colors will also help when creating new data vis color palettes for Spectrum 2. + + ## Token Diff + +
    Tokens added (64): + + * `brown-100` + * `brown-1000` + * `brown-1100` + * `brown-1200` + * `brown-1300` + * `brown-1400` + * `brown-1500` + * `brown-1600` + * `brown-200` + * `brown-300` + * `brown-400` + * `brown-500` + * `brown-600` + * `brown-700` + * `brown-800` + * `brown-900` + * `pink-100` + * `pink-1000` + * `pink-1100` + * `pink-1200` + * `pink-1300` + * `pink-1400` + * `pink-1500` + * `pink-1600` + * `pink-200` + * `pink-300` + * `pink-400` + * `pink-500` + * `pink-600` + * `pink-700` + * `pink-800` + * `pink-900` + * `silver-100` + * `silver-1000` + * `silver-1100` + * `silver-1200` + * `silver-1300` + * `silver-1400` + * `silver-1500` + * `silver-1600` + * `silver-200` + * `silver-300` + * `silver-400` + * `silver-500` + * `silver-600` + * `silver-700` + * `silver-800` + * `silver-900` + * `turquoise-100` + * `turquoise-1000` + * `turquoise-1100` + * `turquoise-1200` + * `turquoise-1300` + * `turquoise-1400` + * `turquoise-1500` + * `turquoise-1600` + * `turquoise-200` + * `turquoise-300` + * `turquoise-400` + * `turquoise-500` + * `turquoise-600` + * `turquoise-700` + * `turquoise-800` + * `turquoise-900` + +
    + +## 13.0.0-beta.4 + +### Major Changes + +* [`a08dced`](https://github.com/adobe/spectrum-design-data/commit/a08dced): A handful of values transitioned from being defined per-set to being constants; set values are deprecated and root values are defined. + + ## Token Diff + + *Token values updated (5):* + + * `neutral-background-color-default`: changed from a color-set to a single value of a reference of `gray-800` + * `neutral-background-color-down`: changed from a color-set to a single value of a reference of `gray-900` + * `neutral-background-color-hover`: changed from a color-set to a single value of a reference of `gray-900` + * `neutral-background-color-key-focus`: changed from a color-set to a single value of a reference of `gray-900` + * `notice-background-color-default`: changed from a color-set to a single value of a reference of `notice-color-800` + +### Patch Changes + +* [`c0a10b4`](https://github.com/adobe/spectrum-design-data/commit/c0a10b4): fix: rgb used instead of rgba for a couple tokens + +## 13.0.0-beta.3 + +### Patch Changes + +* [`a546ef7`](https://github.com/adobe/spectrum-design-data/commit/a546ef7): Returned some tokens that were removed by accident in the previous merging. + + ## Token Diff + + *Tokens added (51):* + + * `checkbox-control-size-extra-large` + * `checkbox-control-size-large` + * `checkbox-control-size-medium` + * `checkbox-control-size-small` + * `checkbox-top-to-control-extra-large` + * `checkbox-top-to-control-large` + * `checkbox-top-to-control-medium` + * `checkbox-top-to-control-small` + * `color-area-border-rounding` + * `corner-radius-100` + * `corner-radius-200` + * `corner-radius-75` + * `drop-shadow-blur` + * `drop-shadow-x` + * `drop-shadow-y` + * `radio-button-control-size-extra-large` + * `radio-button-control-size-large` + * `radio-button-control-size-medium` + * `radio-button-control-size-small` + * `radio-button-top-to-control-extra-large` + * `radio-button-top-to-control-large` + * `radio-button-top-to-control-medium` + * `radio-button-top-to-control-small` + * `slider-bottom-to-handle-extra-large` + * `slider-bottom-to-handle-large` + * `slider-bottom-to-handle-medium` + * `slider-bottom-to-handle-small` + * `slider-control-height-extra-large` + * `slider-control-height-large` + * `slider-control-height-medium` + * `slider-control-height-small` + * `slider-handle-border-width-down-extra-large` + * `slider-handle-border-width-down-large` + * `slider-handle-border-width-down-medium` + * `slider-handle-border-width-down-small` + * `slider-handle-size-extra-large` + * `slider-handle-size-large` + * `slider-handle-size-medium` + * `slider-handle-size-small` + * `switch-control-height-extra-large` + * `switch-control-height-large` + * `switch-control-height-medium` + * `switch-control-height-small` + * `switch-control-width-extra-large` + * `switch-control-width-large` + * `switch-control-width-medium` + * `switch-control-width-small` + * `switch-top-to-control-extra-large` + * `switch-top-to-control-large` + * `switch-top-to-control-medium` + * `switch-top-to-control-small` + +## 13.0.0-beta.2 + +### Major Changes + +* [`ee15851`](https://github.com/adobe/spectrum-design-data/commit/ee15851): Updated color tokens to use S2 values + + ## Design Motivation + + The S2 microsite documentation discusses changes to the [grays](https://s2.spectrum.corp.adobe.com/page/grays/) and [colors](https://s2.spectrum.corp.adobe.com/page/colors/). + + ## Token Diff + +
    Tokens added (46): + + * `accent-color-1500` + * `accent-color-1600` + * `blue-1500` + * `blue-1600` + * `celery-1500` + * `celery-1600` + * `chartreuse-1500` + * `chartreuse-1600` + * `cyan-1500` + * `cyan-1600` + * `fuchsia-1500` + * `fuchsia-1600` + * `gray-1000` + * `gray-25` + * `green-1500` + * `green-1600` + * `indigo-1500` + * `indigo-1600` + * `informative-color-1500` + * `informative-color-1600` + * `magenta-1500` + * `magenta-1600` + * `negative-color-1500` + * `negative-color-1600` + * `notice-color-1500` + * `notice-color-1600` + * `orange-1500` + * `orange-1600` + * `positive-color-1500` + * `positive-color-1600` + * `purple-1500` + * `purple-1600` + * `red-1500` + * `red-1600` + * `seafoam-1500` + * `seafoam-1600` + * `transparent-black-1000` + * `transparent-black-25` + * `transparent-black-50` + * `transparent-black-75` + * `transparent-white-1000` + * `transparent-white-25` + * `transparent-white-50` + * `transparent-white-75` + * `yellow-1500` + * `yellow-1600` + +
    + +
    Token values updated (408): + + * `accent-background-color-default` + * `accent-background-color-down` + * `accent-background-color-hover` + * `accent-background-color-key-focus` + * `accent-color-100` + * `accent-color-1000` + * `accent-color-1100` + * `accent-color-1200` + * `accent-color-1300` + * `accent-color-1400` + * `accent-color-200` + * `accent-color-300` + * `accent-color-400` + * `accent-color-500` + * `accent-color-600` + * `accent-color-700` + * `accent-color-800` + * `accent-color-900` + * `accent-content-color-default` + * `accent-content-color-down` + * `accent-content-color-hover` + * `accent-content-color-key-focus` + * `accent-content-color-selected` + * `accent-visual-color` + * `background-base-color` + * `background-layer-1-color` + * `background-layer-2-color` + * `blue-100` + * `blue-1000` + * `blue-1100` + * `blue-1200` + * `blue-1300` + * `blue-1400` + * `blue-200` + * `blue-300` + * `blue-400` + * `blue-500` + * `blue-600` + * `blue-700` + * `blue-800` + * `blue-900` + * `blue-background-color-default` + * `blue-visual-color` + * `body-color` + * `card-selection-background-color` + * `celery-100` + * `celery-1000` + * `celery-1100` + * `celery-1200` + * `celery-1300` + * `celery-1400` + * `celery-200` + * `celery-300` + * `celery-400` + * `celery-500` + * `celery-600` + * `celery-700` + * `celery-800` + * `celery-900` + * `celery-background-color-default` + * `celery-visual-color` + * `chartreuse-100` + * `chartreuse-1000` + * `chartreuse-1100` + * `chartreuse-1200` + * `chartreuse-1300` + * `chartreuse-1400` + * `chartreuse-200` + * `chartreuse-300` + * `chartreuse-400` + * `chartreuse-500` + * `chartreuse-600` + * `chartreuse-700` + * `chartreuse-800` + * `chartreuse-900` + * `chartreuse-background-color-default` + * `chartreuse-visual-color` + * `coach-mark-pagination-color` + * `code-color` + * `color-area-border-color` + * `color-loupe-drop-shadow-color` + * `color-loupe-inner-border` + * `color-slider-border-color` + * `cyan-100` + * `cyan-1000` + * `cyan-1100` + * `cyan-1200` + * `cyan-1300` + * `cyan-1400` + * `cyan-200` + * `cyan-300` + * `cyan-400` + * `cyan-500` + * `cyan-600` + * `cyan-700` + * `cyan-800` + * `cyan-900` + * `cyan-background-color-default` + * `cyan-visual-color` + * `detail-color` + * `disabled-background-color` + * `disabled-border-color` + * `disabled-content-color` + * `disabled-static-black-background-color` + * `disabled-static-black-border-color` + * `disabled-static-black-content-color` + * `disabled-static-white-background-color` + * `disabled-static-white-border-color` + * `disabled-static-white-content-color` + * `drop-zone-background-color` + * `floating-action-button-drop-shadow-color` + * `floating-action-button-shadow-color` + * `focus-indicator-color` + * `fuchsia-100` + * `fuchsia-1000` + * `fuchsia-1100` + * `fuchsia-1200` + * `fuchsia-1300` + * `fuchsia-1400` + * `fuchsia-200` + * `fuchsia-300` + * `fuchsia-400` + * `fuchsia-500` + * `fuchsia-600` + * `fuchsia-700` + * `fuchsia-800` + * `fuchsia-900` + * `fuchsia-background-color-default` + * `fuchsia-visual-color` + * `gray-100` + * `gray-200` + * `gray-300` + * `gray-400` + * `gray-50` + * `gray-500` + * `gray-600` + * `gray-700` + * `gray-75` + * `gray-800` + * `gray-900` + * `gray-background-color-default` + * `gray-visual-color` + * `green-100` + * `green-1000` + * `green-1100` + * `green-1200` + * `green-1300` + * `green-1400` + * `green-200` + * `green-300` + * `green-400` + * `green-500` + * `green-600` + * `green-700` + * `green-800` + * `green-900` + * `green-background-color-default` + * `green-visual-color` + * `heading-color` + * `icon-color-blue-primary-default` + * `icon-color-green-primary-default` + * `icon-color-inverse` + * `icon-color-primary-default` + * `icon-color-red-primary-default` + * `icon-color-yellow-primary-default` + * `indigo-100` + * `indigo-1000` + * `indigo-1100` + * `indigo-1200` + * `indigo-1300` + * `indigo-1400` + * `indigo-200` + * `indigo-300` + * `indigo-400` + * `indigo-500` + * `indigo-600` + * `indigo-700` + * `indigo-800` + * `indigo-900` + * `indigo-background-color-default` + * `indigo-visual-color` + * `informative-background-color-default` + * `informative-background-color-down` + * `informative-background-color-hover` + * `informative-background-color-key-focus` + * `informative-color-100` + * `informative-color-1000` + * `informative-color-1100` + * `informative-color-1200` + * `informative-color-1300` + * `informative-color-1400` + * `informative-color-200` + * `informative-color-300` + * `informative-color-400` + * `informative-color-500` + * `informative-color-600` + * `informative-color-700` + * `informative-color-800` + * `informative-color-900` + * `informative-visual-color` + * `magenta-100` + * `magenta-1000` + * `magenta-1100` + * `magenta-1200` + * `magenta-1300` + * `magenta-1400` + * `magenta-200` + * `magenta-300` + * `magenta-400` + * `magenta-500` + * `magenta-600` + * `magenta-700` + * `magenta-800` + * `magenta-900` + * `magenta-background-color-default` + * `magenta-visual-color` + * `negative-background-color-default` + * `negative-background-color-down` + * `negative-background-color-hover` + * `negative-background-color-key-focus` + * `negative-border-color-default` + * `negative-border-color-down` + * `negative-border-color-focus` + * `negative-border-color-focus-hover` + * `negative-border-color-hover` + * `negative-border-color-key-focus` + * `negative-color-100` + * `negative-color-1000` + * `negative-color-1100` + * `negative-color-1200` + * `negative-color-1300` + * `negative-color-1400` + * `negative-color-200` + * `negative-color-300` + * `negative-color-400` + * `negative-color-500` + * `negative-color-600` + * `negative-color-700` + * `negative-color-800` + * `negative-color-900` + * `negative-content-color-default` + * `negative-content-color-down` + * `negative-content-color-hover` + * `negative-content-color-key-focus` + * `negative-visual-color` + * `neutral-background-color-default` + * `neutral-background-color-down` + * `neutral-background-color-hover` + * `neutral-background-color-key-focus` + * `neutral-background-color-selected-default` + * `neutral-background-color-selected-down` + * `neutral-background-color-selected-hover` + * `neutral-background-color-selected-key-focus` + * `neutral-content-color-default` + * `neutral-content-color-down` + * `neutral-content-color-focus` + * `neutral-content-color-focus-hover` + * `neutral-content-color-hover` + * `neutral-content-color-key-focus` + * `neutral-subdued-background-color-default` + * `neutral-subdued-background-color-down` + * `neutral-subdued-background-color-hover` + * `neutral-subdued-background-color-key-focus` + * `neutral-subdued-content-color-default` + * `neutral-subdued-content-color-down` + * `neutral-subdued-content-color-hover` + * `neutral-subdued-content-color-key-focus` + * `neutral-subdued-content-color-selected` + * `neutral-visual-color` + * `notice-background-color-default` + * `notice-color-100` + * `notice-color-1000` + * `notice-color-1100` + * `notice-color-1200` + * `notice-color-1300` + * `notice-color-1400` + * `notice-color-200` + * `notice-color-300` + * `notice-color-400` + * `notice-color-500` + * `notice-color-600` + * `notice-color-700` + * `notice-color-800` + * `notice-color-900` + * `notice-visual-color` + * `opacity-checkerboard-square-dark` + * `orange-100` + * `orange-1000` + * `orange-1100` + * `orange-1200` + * `orange-1300` + * `orange-1400` + * `orange-200` + * `orange-300` + * `orange-400` + * `orange-500` + * `orange-600` + * `orange-700` + * `orange-800` + * `orange-900` + * `orange-background-color-default` + * `orange-visual-color` + * `positive-background-color-default` + * `positive-background-color-down` + * `positive-background-color-hover` + * `positive-background-color-key-focus` + * `positive-color-100` + * `positive-color-1000` + * `positive-color-1100` + * `positive-color-1200` + * `positive-color-1300` + * `positive-color-1400` + * `positive-color-200` + * `positive-color-300` + * `positive-color-400` + * `positive-color-500` + * `positive-color-600` + * `positive-color-700` + * `positive-color-800` + * `positive-color-900` + * `positive-visual-color` + * `purple-100` + * `purple-1000` + * `purple-1100` + * `purple-1200` + * `purple-1300` + * `purple-1400` + * `purple-200` + * `purple-300` + * `purple-400` + * `purple-500` + * `purple-600` + * `purple-700` + * `purple-800` + * `purple-900` + * `purple-background-color-default` + * `purple-visual-color` + * `red-100` + * `red-1000` + * `red-1100` + * `red-1200` + * `red-1300` + * `red-1400` + * `red-200` + * `red-300` + * `red-400` + * `red-500` + * `red-600` + * `red-700` + * `red-800` + * `red-900` + * `red-background-color-default` + * `red-visual-color` + * `seafoam-100` + * `seafoam-1000` + * `seafoam-1100` + * `seafoam-1200` + * `seafoam-1300` + * `seafoam-1400` + * `seafoam-200` + * `seafoam-300` + * `seafoam-400` + * `seafoam-500` + * `seafoam-600` + * `seafoam-700` + * `seafoam-800` + * `seafoam-900` + * `seafoam-background-color-default` + * `seafoam-visual-color` + * `swatch-border-color` + * `table-row-hover-color` + * `table-selected-row-background-color` + * `table-selected-row-background-color-non-emphasized` + * `thumbnail-border-color` + * `transparent-black-100` + * `transparent-black-200` + * `transparent-black-300` + * `transparent-black-400` + * `transparent-black-500` + * `transparent-black-600` + * `transparent-black-700` + * `transparent-black-800` + * `transparent-black-900` + * `transparent-white-100` + * `transparent-white-200` + * `transparent-white-300` + * `transparent-white-400` + * `transparent-white-500` + * `transparent-white-600` + * `transparent-white-700` + * `transparent-white-800` + * `transparent-white-900` + * `yellow-100` + * `yellow-1000` + * `yellow-1100` + * `yellow-1200` + * `yellow-1300` + * `yellow-1400` + * `yellow-200` + * `yellow-300` + * `yellow-400` + * `yellow-500` + * `yellow-600` + * `yellow-700` + * `yellow-800` + * `yellow-900` + * `yellow-background-color-default` + * `yellow-visual-color` + +
    + +## 13.0.0-beta.1 + +### Major Changes + +* [`f1cb901`](https://github.com/adobe/spectrum-design-data/commit/f1cb901): Merged dark and darkest color sets. This was done by removing `dark` and renaming `darkest` to `dark`. + + ## Design Motivation + + The S2 microsite documentation discusses the move to a [single dark theme](https://s2.spectrum.corp.adobe.com/page/grays/#a-single-dark-theme). + + ## Token Diff + +
    Token values updated (358): + + * `accent-background-color-default` + * `accent-background-color-down` + * `accent-background-color-hover` + * `accent-background-color-key-focus` + * `accent-visual-color` + * `background-base-color` + * `background-layer-1-color` + * `background-layer-2-color` + * `blue-100` + * `blue-1000` + * `blue-1100` + * `blue-1200` + * `blue-1300` + * `blue-1400` + * `blue-200` + * `blue-300` + * `blue-400` + * `blue-500` + * `blue-600` + * `blue-700` + * `blue-800` + * `blue-900` + * `blue-background-color-default` + * `blue-visual-color` + * `body-color` + * `card-selection-background-color` + * `celery-100` + * `celery-1000` + * `celery-1100` + * `celery-1200` + * `celery-1300` + * `celery-1400` + * `celery-200` + * `celery-300` + * `celery-400` + * `celery-500` + * `celery-600` + * `celery-700` + * `celery-800` + * `celery-900` + * `celery-background-color-default` + * `celery-visual-color` + * `chartreuse-100` + * `chartreuse-1000` + * `chartreuse-1100` + * `chartreuse-1200` + * `chartreuse-1300` + * `chartreuse-1400` + * `chartreuse-200` + * `chartreuse-300` + * `chartreuse-400` + * `chartreuse-500` + * `chartreuse-600` + * `chartreuse-700` + * `chartreuse-800` + * `chartreuse-900` + * `chartreuse-background-color-default` + * `chartreuse-visual-color` + * `coach-mark-pagination-color` + * `code-color` + * `color-area-border-color` + * `color-slider-border-color` + * `cyan-100` + * `cyan-1000` + * `cyan-1100` + * `cyan-1200` + * `cyan-1300` + * `cyan-1400` + * `cyan-200` + * `cyan-300` + * `cyan-400` + * `cyan-500` + * `cyan-600` + * `cyan-700` + * `cyan-800` + * `cyan-900` + * `cyan-background-color-default` + * `cyan-visual-color` + * `detail-color` + * `disabled-background-color` + * `disabled-border-color` + * `disabled-content-color` + * `drop-shadow-color` + * `drop-zone-background-color` + * `focus-indicator-color` + * `fuchsia-100` + * `fuchsia-1000` + * `fuchsia-1100` + * `fuchsia-1200` + * `fuchsia-1300` + * `fuchsia-1400` + * `fuchsia-200` + * `fuchsia-300` + * `fuchsia-400` + * `fuchsia-500` + * `fuchsia-600` + * `fuchsia-700` + * `fuchsia-800` + * `fuchsia-900` + * `fuchsia-background-color-default` + * `fuchsia-visual-color` + * `gray-100` + * `gray-200` + * `gray-300` + * `gray-400` + * `gray-50` + * `gray-500` + * `gray-600` + * `gray-700` + * `gray-75` + * `gray-800` + * `gray-900` + * `gray-background-color-default` + * `gray-visual-color` + * `green-100` + * `green-1000` + * `green-1100` + * `green-1200` + * `green-1300` + * `green-1400` + * `green-200` + * `green-300` + * `green-400` + * `green-500` + * `green-600` + * `green-700` + * `green-800` + * `green-900` + * `green-background-color-default` + * `green-visual-color` + * `heading-color` + * `icon-color-blue-primary-default` + * `icon-color-green-primary-default` + * `icon-color-inverse` + * `icon-color-primary-default` + * `icon-color-red-primary-default` + * `icon-color-yellow-primary-default` + * `indigo-100` + * `indigo-1000` + * `indigo-1100` + * `indigo-1200` + * `indigo-1300` + * `indigo-1400` + * `indigo-200` + * `indigo-300` + * `indigo-400` + * `indigo-500` + * `indigo-600` + * `indigo-700` + * `indigo-800` + * `indigo-900` + * `indigo-background-color-default` + * `indigo-visual-color` + * `informative-background-color-default` + * `informative-background-color-down` + * `informative-background-color-hover` + * `informative-background-color-key-focus` + * `informative-color-100` + * `informative-color-1000` + * `informative-color-1100` + * `informative-color-1200` + * `informative-color-1300` + * `informative-color-1400` + * `informative-color-200` + * `informative-color-300` + * `informative-color-400` + * `informative-color-500` + * `informative-color-600` + * `informative-color-700` + * `informative-color-800` + * `informative-color-900` + * `informative-visual-color` + * `magenta-100` + * `magenta-1000` + * `magenta-1100` + * `magenta-1200` + * `magenta-1300` + * `magenta-1400` + * `magenta-200` + * `magenta-300` + * `magenta-400` + * `magenta-500` + * `magenta-600` + * `magenta-700` + * `magenta-800` + * `magenta-900` + * `magenta-background-color-default` + * `magenta-visual-color` + * `negative-background-color-default` + * `negative-background-color-down` + * `negative-background-color-hover` + * `negative-background-color-key-focus` + * `negative-border-color-default` + * `negative-border-color-down` + * `negative-border-color-focus` + * `negative-border-color-focus-hover` + * `negative-border-color-hover` + * `negative-border-color-key-focus` + * `negative-color-100` + * `negative-color-1000` + * `negative-color-1100` + * `negative-color-1200` + * `negative-color-1300` + * `negative-color-1400` + * `negative-color-200` + * `negative-color-300` + * `negative-color-400` + * `negative-color-500` + * `negative-color-600` + * `negative-color-700` + * `negative-color-800` + * `negative-color-900` + * `negative-content-color-default` + * `negative-content-color-down` + * `negative-content-color-hover` + * `negative-content-color-key-focus` + * `negative-visual-color` + * `neutral-background-color-default` + * `neutral-background-color-down` + * `neutral-background-color-hover` + * `neutral-background-color-key-focus` + * `neutral-content-color-default` + * `neutral-content-color-down` + * `neutral-content-color-focus` + * `neutral-content-color-focus-hover` + * `neutral-content-color-hover` + * `neutral-content-color-key-focus` + * `neutral-subdued-background-color-default` + * `neutral-subdued-background-color-down` + * `neutral-subdued-background-color-hover` + * `neutral-subdued-background-color-key-focus` + * `neutral-subdued-content-color-default` + * `neutral-subdued-content-color-down` + * `neutral-subdued-content-color-hover` + * `neutral-subdued-content-color-key-focus` + * `neutral-subdued-content-color-selected` + * `neutral-visual-color` + * `notice-background-color-default` + * `notice-color-100` + * `notice-color-1000` + * `notice-color-1100` + * `notice-color-1200` + * `notice-color-1300` + * `notice-color-1400` + * `notice-color-200` + * `notice-color-300` + * `notice-color-400` + * `notice-color-500` + * `notice-color-600` + * `notice-color-700` + * `notice-color-800` + * `notice-color-900` + * `notice-visual-color` + * `opacity-checkerboard-square-dark` + * `orange-100` + * `orange-1000` + * `orange-1100` + * `orange-1200` + * `orange-1300` + * `orange-1400` + * `orange-200` + * `orange-300` + * `orange-400` + * `orange-500` + * `orange-600` + * `orange-700` + * `orange-800` + * `orange-900` + * `orange-background-color-default` + * `orange-visual-color` + * `overlay-opacity` + * `positive-background-color-default` + * `positive-background-color-down` + * `positive-background-color-hover` + * `positive-background-color-key-focus` + * `positive-color-100` + * `positive-color-1000` + * `positive-color-1100` + * `positive-color-1200` + * `positive-color-1300` + * `positive-color-1400` + * `positive-color-200` + * `positive-color-300` + * `positive-color-400` + * `positive-color-500` + * `positive-color-600` + * `positive-color-700` + * `positive-color-800` + * `positive-color-900` + * `positive-visual-color` + * `purple-100` + * `purple-1000` + * `purple-1100` + * `purple-1200` + * `purple-1300` + * `purple-1400` + * `purple-200` + * `purple-300` + * `purple-400` + * `purple-500` + * `purple-600` + * `purple-700` + * `purple-800` + * `purple-900` + * `purple-background-color-default` + * `purple-visual-color` + * `red-100` + * `red-1000` + * `red-1100` + * `red-1200` + * `red-1300` + * `red-1400` + * `red-200` + * `red-300` + * `red-400` + * `red-500` + * `red-600` + * `red-700` + * `red-800` + * `red-900` + * `red-background-color-default` + * `red-visual-color` + * `seafoam-100` + * `seafoam-1000` + * `seafoam-1100` + * `seafoam-1200` + * `seafoam-1300` + * `seafoam-1400` + * `seafoam-200` + * `seafoam-300` + * `seafoam-400` + * `seafoam-500` + * `seafoam-600` + * `seafoam-700` + * `seafoam-800` + * `seafoam-900` + * `seafoam-background-color-default` + * `seafoam-visual-color` + * `swatch-border-color` + * `table-row-hover-color` + * `table-selected-row-background-color` + * `thumbnail-border-color` + * `yellow-100` + * `yellow-1000` + * `yellow-1100` + * `yellow-1200` + * `yellow-1300` + * `yellow-1400` + * `yellow-200` + * `yellow-300` + * `yellow-400` + * `yellow-500` + * `yellow-600` + * `yellow-700` + * `yellow-800` + * `yellow-900` + * `yellow-background-color-default` + * `yellow-visual-color` + +
    + +## 13.0.0-beta.0 + +### Major Changes + +* [`4f518be`](https://github.com/adobe/spectrum-design-data/commit/4f518be): Merged Spectrum and Express system set data. This is part of the Spectrum 2 work that will no longer have two separate systems. + + The merge takes the keeps the `value` and `uuid` from `spectrum`. + + ## Token Diff + +
    Tokens values updated (102): + + * `accent-background-color-default` + * `accent-background-color-down` + * `accent-background-color-hover` + * `accent-background-color-key-focus` + * `accent-color-100` + * `accent-color-1000` + * `accent-color-1100` + * `accent-color-1200` + * `accent-color-1300` + * `accent-color-1400` + * `accent-color-200` + * `accent-color-300` + * `accent-color-400` + * `accent-color-500` + * `accent-color-600` + * `accent-color-700` + * `accent-color-800` + * `accent-color-900` + * `accent-content-color-default` + * `accent-content-color-down` + * `accent-content-color-hover` + * `accent-content-color-key-focus` + * `accent-content-color-selected` + * `accent-visual-color` + * `border-width-100` + * `checkbox-control-size-extra-large` + * `checkbox-control-size-large` + * `checkbox-control-size-medium` + * `checkbox-control-size-small` + * `checkbox-top-to-control-extra-large` + * `checkbox-top-to-control-large` + * `checkbox-top-to-control-medium` + * `checkbox-top-to-control-small` + * `color-area-border-rounding` + * `color-area-border-width` + * `color-handle-drop-shadow-color` + * `corner-radius-100` + * `corner-radius-200` + * `corner-radius-75` + * `drop-shadow-blur` + * `drop-shadow-x` + * `drop-shadow-y` + * `drop-zone-background-color` + * `heading-cjk-font-weight` + * `heading-sans-serif-emphasized-font-weight` + * `heading-sans-serif-font-weight` + * `heading-serif-emphasized-font-weight` + * `heading-serif-font-weight` + * `in-field-button-edge-to-fill` + * `in-field-button-fill-stacked-inner-border-rounding` + * `in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large` + * `in-field-button-inner-edge-to-disclosure-icon-stacked-large` + * `in-field-button-inner-edge-to-disclosure-icon-stacked-medium` + * `in-field-button-inner-edge-to-disclosure-icon-stacked-small` + * `in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large` + * `in-field-button-outer-edge-to-disclosure-icon-stacked-large` + * `in-field-button-outer-edge-to-disclosure-icon-stacked-medium` + * `in-field-button-stacked-inner-edge-to-fill` + * `neutral-background-color-selected-default` + * `neutral-background-color-selected-down` + * `neutral-background-color-selected-hover` + * `neutral-background-color-selected-key-focus` + * `picker-border-width` + * `radio-button-control-size-extra-large` + * `radio-button-control-size-large` + * `radio-button-control-size-medium` + * `radio-button-control-size-small` + * `radio-button-top-to-control-extra-large` + * `radio-button-top-to-control-large` + * `radio-button-top-to-control-medium` + * `radio-button-top-to-control-small` + * `slider-bottom-to-handle-extra-large` + * `slider-bottom-to-handle-large` + * `slider-bottom-to-handle-medium` + * `slider-bottom-to-handle-small` + * `slider-control-height-extra-large` + * `slider-control-height-large` + * `slider-control-height-medium` + * `slider-control-height-small` + * `slider-handle-border-width-down-extra-large` + * `slider-handle-border-width-down-large` + * `slider-handle-border-width-down-medium` + * `slider-handle-border-width-down-small` + * `slider-handle-gap` + * `slider-handle-size-extra-large` + * `slider-handle-size-large` + * `slider-handle-size-medium` + * `slider-handle-size-small` + * `slider-track-thickness` + * `switch-control-height-extra-large` + * `switch-control-height-large` + * `switch-control-height-medium` + * `switch-control-height-small` + * `switch-control-width-extra-large` + * `switch-control-width-large` + * `switch-control-width-medium` + * `switch-control-width-small` + * `switch-top-to-control-extra-large` + * `switch-top-to-control-large` + * `switch-top-to-control-medium` + * `switch-top-to-control-small` + * `table-selected-row-background-color-non-emphasized` + +
    + +## 12.19.1 + +### Patch Changes + +* [`d9a6b7b`](https://github.com/adobe/spectrum-design-data/commit/d9a6b7b): Updated manifest.json file + +## 12.19.0 + +### Minor Changes + +* [`0c716de`](https://github.com/adobe/spectrum-design-data/commit/0c716de): Added icon tokens + + ### Token Diff + + *Tokens added (6):* + + * `icon-color-blue-primary-default` + * `icon-color-green-primary-default` + * `icon-color-inverse` + * `icon-color-primary-default` + * `icon-color-red-primary-default` + * `icon-color-yellow-primary-default` + +## 12.18.1 + +### Patch Changes + +* [`6f5443e`](https://github.com/adobe/spectrum-design-data/commit/6f5443e): Added missing `wireframe` values for 2 color tokens + + ## Token Diff + + *Tokens update (2):* + + * `opacity-checkerboard-square-dark` + * `overlay-opacity` + +## 12.18.0 + +### Minor Changes + +* [`bb89361`](https://github.com/adobe/spectrum-design-data/commit/bb89361): Update meter token from meter-default-width to meter-width. + + ### Design motivation + + We try to avoid "default" in the name (unless it's the state) because it's a word that implies that it's relative to something else that may not be named, which could get confusing. So meter-width I think for the name, and then just add a note in the specs. + + ### Token diff + + *Renamed token:* + + * `meter-default-width` -> `meter-width` + + *Token added for deprecation and rename:* + + * `meter-default-width` + +## 12.17.0 + +### Minor Changes + +* [`687f6c3`](https://github.com/adobe/spectrum-design-data/commit/687f6c3): Updated coach-mark tokens + +#### Token Diff + +*Tokens added (3):* + +* `coach-mark-maximum-width` +* `coach-mark-media-height` +* `coach-mark-width` + +*Token values updated (4):* + +* `coach-mark-minimum-width`: `mobile` from `208px` to `216px` +* `coach-mark-title-size`: added `desktop` value +* `coach-mark-body-size`: added `desktop` value +* `coach-mark-pagination-body-size`: added `desktop` value + +## 12.16.0 + +### Minor Changes + +* [`25dc20d`](https://github.com/adobe/spectrum-design-data/commit/25dc20d): Add new menu-item token for section dividers + +#### Token Diff + +*Tokens added (1):* + +* `menu-item-section-divider-height` + +## 12.15.0 + +### Minor Changes + +* [`fc12f6d`](https://github.com/adobe/spectrum-design-data/commit/fc12f6d): Added side-navigation token + +#### Token Diff + +*Tokens added (1):* + +* `side-navigation-bottom-to-text` + +## 12.14.0 + +### Minor Changes + +* [`cb9e3bf`](https://github.com/adobe/spectrum-design-data/commit/cb9e3bf): Added in-field button tokens + + ## Token Diff + + *Tokens added (19):* + + * `in-field-button-edge-to-disclosure-icon-stacked-extra-large` + * `in-field-button-edge-to-disclosure-icon-stacked-large` + * `in-field-button-edge-to-disclosure-icon-stacked-medium` + * `in-field-button-edge-to-disclosure-icon-stacked-small` + * `in-field-button-edge-to-fill` + * `in-field-button-fill-stacked-inner-border-rounding` + * `in-field-button-inner-edge-to-disclosure-icon-stacked-extra-large` + * `in-field-button-inner-edge-to-disclosure-icon-stacked-large` + * `in-field-button-inner-edge-to-disclosure-icon-stacked-medium` + * `in-field-button-inner-edge-to-disclosure-icon-stacked-small` + * `in-field-button-outer-edge-to-disclosure-icon-stacked-extra-large` + * `in-field-button-outer-edge-to-disclosure-icon-stacked-large` + * `in-field-button-outer-edge-to-disclosure-icon-stacked-medium` + * `in-field-button-outer-edge-to-disclosure-icon-stacked-small` + * `in-field-button-stacked-inner-edge-to-fill` + * `in-field-button-width-stacked-extra-large` + * `in-field-button-width-stacked-large` + * `in-field-button-width-stacked-medium` + * `in-field-button-width-stacked-small` + +## 12.13.1 + +### Patch Changes + +* [`02459bf`](https://github.com/adobe/spectrum-design-data/commit/02459bf): Migrate dependencies to devDependencies as they are not needed downstream to leverage the package. + +## 12.13.0 + +### Minor Changes + +* [`d740d2c`](https://github.com/adobe/spectrum-design-data/commit/d740d2c): added table tokens + + ## Token diff + + *Tokens added (88):* + + * `table-border-divider-width` + * `table-checkbox-to-text` + * `table-column-header-row-bottom-to-text-extra-large` + * `table-column-header-row-bottom-to-text-large` + * `table-column-header-row-bottom-to-text-medium` + * `table-column-header-row-bottom-to-text-small` + * `table-column-header-row-top-to-text-extra-large` + * `table-column-header-row-top-to-text-large` + * `table-column-header-row-top-to-text-medium` + * `table-column-header-row-top-to-text-small` + * `table-edge-to-content` + * `table-header-row-checkbox-to-top-extra-large` + * `table-header-row-checkbox-to-top-large` + * `table-header-row-checkbox-to-top-medium` + * `table-header-row-checkbox-to-top-small` + * `table-row-bottom-to-text-extra-large-compact` + * `table-row-bottom-to-text-extra-large-regular` + * `table-row-bottom-to-text-extra-large-spacious` + * `table-row-bottom-to-text-large-compact` + * `table-row-bottom-to-text-large-regular` + * `table-row-bottom-to-text-large-spacious` + * `table-row-bottom-to-text-medium-compact` + * `table-row-bottom-to-text-medium-regular` + * `table-row-bottom-to-text-medium-spacious` + * `table-row-bottom-to-text-small-compact` + * `table-row-bottom-to-text-small-regular` + * `table-row-bottom-to-text-small-spacious` + * `table-row-checkbox-to-top-extra-large-compact` + * `table-row-checkbox-to-top-extra-large-regular` + * `table-row-checkbox-to-top-extra-large-spacious` + * `table-row-checkbox-to-top-large-compact` + * `table-row-checkbox-to-top-large-regular` + * `table-row-checkbox-to-top-large-spacious` + * `table-row-checkbox-to-top-medium-compact` + * `table-row-checkbox-to-top-medium-regular` + * `table-row-checkbox-to-top-medium-spacious` + * `table-row-checkbox-to-top-small-compact` + * `table-row-checkbox-to-top-small-regular` + * `table-row-checkbox-to-top-small-spacious` + * `table-row-down-opacity` + * `table-row-height-extra-large-compact` + * `table-row-height-extra-large-regular` + * `table-row-height-extra-large-spacious` + * `table-row-height-large-compact` + * `table-row-height-large-regular` + * `table-row-height-large-spacious` + * `table-row-height-medium-compact` + * `table-row-height-medium-regular` + * `table-row-height-medium-spacious` + * `table-row-height-small-compact` + * `table-row-height-small-regular` + * `table-row-height-small-spacious` + * `table-row-hover-color` + * `table-row-hover-opacity` + * `table-row-top-to-text-extra-large-compact` + * `table-row-top-to-text-extra-large-regular` + * `table-row-top-to-text-extra-large-spacious` + * `table-row-top-to-text-large-compact` + * `table-row-top-to-text-large-regular` + * `table-row-top-to-text-large-spacious` + * `table-row-top-to-text-medium-compact` + * `table-row-top-to-text-medium-regular` + * `table-row-top-to-text-medium-spacious` + * `table-row-top-to-text-small-compact` + * `table-row-top-to-text-small-regular` + * `table-row-top-to-text-small-spacious` + * `table-section-header-row-height-extra-large` + * `table-section-header-row-height-large` + * `table-section-header-row-height-medium` + * `table-section-header-row-height-small` + * `table-selected-row-background-color` + * `table-selected-row-background-color-non-emphasized` + * `table-selected-row-background-opacity` + * `table-selected-row-background-opacity-hover` + * `table-selected-row-background-opacity-non-emphasized` + * `table-selected-row-background-opacity-non-emphasized-hover` + * `table-thumbnail-to-top-minimum-extra-large-compact` + * `table-thumbnail-to-top-minimum-extra-large-regular` + * `table-thumbnail-to-top-minimum-extra-large-spacious` + * `table-thumbnail-to-top-minimum-large-compact` + * `table-thumbnail-to-top-minimum-large-regular` + * `table-thumbnail-to-top-minimum-large-spacious` + * `table-thumbnail-to-top-minimum-medium-compact` + * `table-thumbnail-to-top-minimum-medium-regular` + * `table-thumbnail-to-top-minimum-medium-spacious` + * `table-thumbnail-to-top-minimum-small-compact` + * `table-thumbnail-to-top-minimum-small-regular` + * `table-thumbnail-to-top-minimum-small-spacious` + +## 12.12.1 + +### Patch Changes + +* [`6365597`](https://github.com/adobe/spectrum-design-data/commit/6365597): Added IDs to previously publish tab tokens + + ## Token Diff + + *Tokens updated (51):* + + * `accent-content-color-selected` + * `neutral-subdued-content-color-selected` + * `tab-item-bottom-to-text-compact-extra-large` + * `tab-item-bottom-to-text-compact-large` + * `tab-item-bottom-to-text-compact-medium` + * `tab-item-bottom-to-text-compact-small` + * `tab-item-bottom-to-text-extra-large` + * `tab-item-bottom-to-text-large` + * `tab-item-bottom-to-text-medium` + * `tab-item-bottom-to-text-small` + * `tab-item-compact-height-extra-large` + * `tab-item-compact-height-large` + * `tab-item-compact-height-medium` + * `tab-item-compact-height-small` + * `tab-item-focus-indicator-gap-extra-large` + * `tab-item-focus-indicator-gap-large` + * `tab-item-focus-indicator-gap-medium` + * `tab-item-focus-indicator-gap-small` + * `tab-item-height-extra-large` + * `tab-item-height-large` + * `tab-item-height-medium` + * `tab-item-height-small` + * `tab-item-start-to-edge-extra-large` + * `tab-item-start-to-edge-large` + * `tab-item-start-to-edge-medium` + * `tab-item-start-to-edge-quiet` + * `tab-item-start-to-edge-small` + * `tab-item-to-tab-item-horizontal-extra-large` + * `tab-item-to-tab-item-horizontal-large` + * `tab-item-to-tab-item-horizontal-medium` + * `tab-item-to-tab-item-horizontal-small` + * `tab-item-to-tab-item-vertical-extra-large` + * `tab-item-to-tab-item-vertical-large` + * `tab-item-to-tab-item-vertical-medium` + * `tab-item-to-tab-item-vertical-small` + * `tab-item-top-to-text-compact-extra-large` + * `tab-item-top-to-text-compact-large` + * `tab-item-top-to-text-compact-medium` + * `tab-item-top-to-text-compact-small` + * `tab-item-top-to-text-extra-large` + * `tab-item-top-to-text-large` + * `tab-item-top-to-text-medium` + * `tab-item-top-to-text-small` + * `tab-item-top-to-workflow-icon-compact-extra-large` + * `tab-item-top-to-workflow-icon-compact-large` + * `tab-item-top-to-workflow-icon-compact-medium` + * `tab-item-top-to-workflow-icon-compact-small` + * `tab-item-top-to-workflow-icon-extra-large` + * `tab-item-top-to-workflow-icon-large` + * `tab-item-top-to-workflow-icon-medium` + * `tab-item-top-to-workflow-icon-small` + +## 12.12.0 + +### Minor Changes + +* [`ba02b18`](https://github.com/adobe/spectrum-design-data/commit/ba02b18): Added tokens for the tabs component + + ## Token diff + + *Tokens added (51):* + + * `accent-content-color-selected` + * `neutral-subdued-content-color-selected` + * `tab-item-bottom-to-text-compact-extra-large` + * `tab-item-bottom-to-text-compact-large` + * `tab-item-bottom-to-text-compact-medium` + * `tab-item-bottom-to-text-compact-small` + * `tab-item-bottom-to-text-extra-large` + * `tab-item-bottom-to-text-large` + * `tab-item-bottom-to-text-medium` + * `tab-item-bottom-to-text-small` + * `tab-item-compact-height-extra-large` + * `tab-item-compact-height-large` + * `tab-item-compact-height-medium` + * `tab-item-compact-height-small` + * `tab-item-focus-indicator-gap-extra-large` + * `tab-item-focus-indicator-gap-large` + * `tab-item-focus-indicator-gap-medium` + * `tab-item-focus-indicator-gap-small` + * `tab-item-height-extra-large` + * `tab-item-height-large` + * `tab-item-height-medium` + * `tab-item-height-small` + * `tab-item-start-to-edge-extra-large` + * `tab-item-start-to-edge-large` + * `tab-item-start-to-edge-medium` + * `tab-item-start-to-edge-quiet` + * `tab-item-start-to-edge-small` + * `tab-item-to-tab-item-horizontal-extra-large` + * `tab-item-to-tab-item-horizontal-large` + * `tab-item-to-tab-item-horizontal-medium` + * `tab-item-to-tab-item-horizontal-small` + * `tab-item-to-tab-item-vertical-extra-large` + * `tab-item-to-tab-item-vertical-large` + * `tab-item-to-tab-item-vertical-medium` + * `tab-item-to-tab-item-vertical-small` + * `tab-item-top-to-text-compact-extra-large` + * `tab-item-top-to-text-compact-large` + * `tab-item-top-to-text-compact-medium` + * `tab-item-top-to-text-compact-small` + * `tab-item-top-to-text-extra-large` + * `tab-item-top-to-text-large` + * `tab-item-top-to-text-medium` + * `tab-item-top-to-text-small` + * `tab-item-top-to-workflow-icon-compact-extra-large` + * `tab-item-top-to-workflow-icon-compact-large` + * `tab-item-top-to-workflow-icon-compact-medium` + * `tab-item-top-to-workflow-icon-compact-small` + * `tab-item-top-to-workflow-icon-extra-large` + * `tab-item-top-to-workflow-icon-large` + * `tab-item-top-to-workflow-icon-medium` + * `tab-item-top-to-workflow-icon-small` + +## 12.11.0 + +### Minor Changes + +* [`1a57f08`](https://github.com/adobe/spectrum-design-data/commit/1a57f08): Fixed typo with `picker-end-edge-to-disclosure-icon-quiet` by adding a new token and deprecating `picker-end-edge-to-disclousure-icon-quiet`. + + ## Token Diff + + *Token added (1):* + + * `picker-end-edge-to-disclosure-icon-quiet` + + *Newly deprecated token (1):* + + * `picker-end-edge-to-disclousure-icon-quiet` + +## 12.10.0 + +### Minor Changes + +* [`0829c5d`](https://github.com/adobe/spectrum-design-data/commit/0829c5d): Added UUIDs to each token + + ## Token Diff + + *Modified Tokens (1154)* + + Every token has a `uuid` property added to them. + +## 12.9.1 + +### Patch Changes + +* [`cace8d8`](https://github.com/adobe/spectrum-design-data/commit/cace8d8): Fixed component name typo + + ## Token Diff + + The following tokens have update `component` metadata property (all have been set to `coach-mark`): + + * `coach-mark-minimum-width` + * `coach-mark-edge-to-content` + * `coach-mark-pagination-text-to-bottom-edge` + * `coach-mark-width` + * `coach-mark-media-minimum-height` + * `coach-mark-media-height` + * `coach-mark-title-size` + * `coach-mark-body-size` + * `coach-mark-pagination-body-size` + +## 12.9.0 + +### Minor Changes + +* [`fe7a002`](https://github.com/adobe/spectrum-design-data/commit/fe7a002): Fixed typo by adding correct token (`floating-action-button-drop-shadow-color`) and deprecating incorrect token name (`floating-action-button-shadow-color`). + + ## Token Diff + + *Token added (1):* + + * `floating-action-button-drop-shadow-color` + + *Newly deprecated token (1):* + + * `floating-action-button-shadow-color` (use `floating-action-button-drop-shadow-color` instead) + +## 12.8.0 + +### Minor Changes + +* [`d639b4b`](https://github.com/adobe/spectrum-design-data/commit/d639b4b): Updated color-handle-inner-border-opacity to remove express specific value + + ## Token Diff + + *Token values updated (2):* + + * `color-handle-inner-border-opacity` (to remove express specific values) + * `color-handle-outer-border-opacity` (to remove express specific values) + +## 12.7.0 + +### Minor Changes + +* [`625cb7f`](https://github.com/adobe/spectrum-design-data/commit/625cb7f): Removed express specific token data for color handle + +### Token Diff + +*Tokens values updated (4):* + +* `color-loupe-bottom-to-color-handle` (removed express specific token data) +* `color-loupe-height` (removed express specific token data) +* `color-loupe-inner-border-width` (removed express specific token data) +* `color-loupe-width` (removed express specific token data) + +## 12.6.0 + +### Minor Changes + +* [`ee5bfd8`](https://github.com/adobe/spectrum-design-data/commit/ee5bfd8): Adding a couple tokens to floating action button that should have been included earlier. +* [`853d8c3`](https://github.com/adobe/spectrum-design-data/commit/853d8c3): Removed express specific token data for color loupe and color handle +* [`c9e76ab`](https://github.com/adobe/spectrum-design-data/commit/c9e76ab): Contextual help did not have any type specific tokens when it was initially defined. + +### Token Diff + +*Tokens added (4):* + +* `floating-action-button-drop-shadow-y` +* `floating-action-button-shadow-color` +* `contextual-help-body-size` +* `contextual-help-title-size` + +*Tokens values updated (7):* + +* `color-handle-drop-shadow-blur` +* `color-handle-drop-shadow-x` +* `color-handle-drop-shadow-y` +* `color-handle-outer-border-opacity` +* `color-handle-outer-border-width` +* `color-handle-size` +* `color-handle-size-key-focus` + +*Newly deprecated tokens (1):* + +* `color-handle-drop-shadow-color` + +## 12.5.0 + +### Minor Changes + +* [`c1eaeee`](https://github.com/adobe/spectrum-design-data/commit/c1eaeee): Added new tokens for slider. Deprecated old slider tokens. + +## 12.4.0 + +### Minor Changes + +* [`5406a24`](https://github.com/adobe/spectrum-design-data/commit/5406a24): Added `side-navigation` tokens. + +## 12.3.0 + +### Minor Changes + +* [`fc919d2`](https://github.com/adobe/spectrum-design-data/commit/fc919d2): Added tray token `tray-top-to-content-area` diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c5d4aaca..9a136c7f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,29 +1,28 @@ -lockfileVersion: '9.0' +lockfileVersion: "9.0" settings: autoInstallPeers: true excludeLinksFromLockfile: false importers: - .: devDependencies: - '@action-validator/core': + "@action-validator/core": specifier: ^0.6.0 version: 0.6.0 - '@changesets/changelog-github': + "@changesets/changelog-github": specifier: ^0.5.1 version: 0.5.1 - '@changesets/cli': + "@changesets/cli": specifier: ^2.29.2 version: 2.29.5 - '@commitlint/cli': + "@commitlint/cli": specifier: ^19.8.0 version: 19.8.1(@types/node@22.15.33)(typescript@5.8.3) - '@commitlint/config-conventional': + "@commitlint/config-conventional": specifier: ^19.8.0 version: 19.8.1 - '@moonrepo/cli': + "@moonrepo/cli": specifier: ^1.39.1 version: 1.39.1 ava: @@ -62,65 +61,65 @@ importers: docs/s2-tokens-viewer: dependencies: - '@adobe/spectrum-tokens': + "@adobe/spectrum-tokens": specifier: workspace:* version: link:../../packages/tokens docs/s2-visualizer: dependencies: - '@spectrum-web-components/action-button': + "@spectrum-web-components/action-button": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/alert-banner': + "@spectrum-web-components/alert-banner": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/button': + "@spectrum-web-components/button": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/button-group': + "@spectrum-web-components/button-group": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/field-group': + "@spectrum-web-components/field-group": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/field-label': + "@spectrum-web-components/field-label": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/link': + "@spectrum-web-components/link": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/overlay': + "@spectrum-web-components/overlay": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/popover': + "@spectrum-web-components/popover": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/search': + "@spectrum-web-components/search": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/slider': + "@spectrum-web-components/slider": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/switch': + "@spectrum-web-components/switch": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/textfield': + "@spectrum-web-components/textfield": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/theme': + "@spectrum-web-components/theme": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/toast': + "@spectrum-web-components/toast": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/tooltip': + "@spectrum-web-components/tooltip": specifier: ^0.49.0 version: 0.49.0 lit: specifier: ^3.2.1 version: 3.3.0 devDependencies: - '@types/node': + "@types/node": specifier: ^22.7.5 version: 22.15.33 typescript: @@ -132,25 +131,25 @@ importers: docs/site: dependencies: - '@adobe/spectrum-component-api-schemas': + "@adobe/spectrum-component-api-schemas": specifier: workspace:* version: link:../../packages/component-schemas - '@spectrum-css/link': + "@spectrum-css/link": specifier: ^5.1.3 version: 5.2.0(@spectrum-css/tokens@14.6.0) - '@spectrum-css/page': + "@spectrum-css/page": specifier: ^8.1.3 version: 8.2.1(@spectrum-css/tokens@14.6.0) - '@spectrum-css/sidenav': + "@spectrum-css/sidenav": specifier: ^5.1.3 version: 5.2.0(@spectrum-css/icon@9.1.0(@spectrum-css/tokens@14.6.0))(@spectrum-css/tokens@14.6.0) - '@spectrum-css/table': + "@spectrum-css/table": specifier: ^6.1.3 version: 6.2.0(@spectrum-css/icon@9.1.0(@spectrum-css/tokens@14.6.0))(@spectrum-css/tokens@14.6.0) - '@spectrum-css/tokens': + "@spectrum-css/tokens": specifier: ^14.4.0 version: 14.6.0 - '@spectrum-css/typography': + "@spectrum-css/typography": specifier: ^6.1.3 version: 6.2.0(@spectrum-css/tokens@14.6.0) ajv: @@ -174,56 +173,56 @@ importers: docs/visualizer: dependencies: - '@spectrum-web-components/action-button': + "@spectrum-web-components/action-button": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/button': + "@spectrum-web-components/button": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/button-group': + "@spectrum-web-components/button-group": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/field-group': + "@spectrum-web-components/field-group": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/field-label': + "@spectrum-web-components/field-label": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/link': + "@spectrum-web-components/link": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/overlay': + "@spectrum-web-components/overlay": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/popover': + "@spectrum-web-components/popover": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/search': + "@spectrum-web-components/search": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/slider': + "@spectrum-web-components/slider": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/switch': + "@spectrum-web-components/switch": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/textfield': + "@spectrum-web-components/textfield": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/theme': + "@spectrum-web-components/theme": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/toast': + "@spectrum-web-components/toast": specifier: ^0.49.0 version: 0.49.0 - '@spectrum-web-components/tooltip': + "@spectrum-web-components/tooltip": specifier: ^0.49.0 version: 0.49.0 lit: specifier: ^3.2.1 version: 3.3.0 devDependencies: - '@types/node': + "@types/node": specifier: ^22.7.5 version: 22.15.33 typescript: @@ -291,7 +290,7 @@ importers: tools/component-diff-generator: dependencies: - '@adobe/spectrum-diff-core': + "@adobe/spectrum-diff-core": specifier: workspace:* version: link:../spectrum-diff-core chalk: @@ -325,10 +324,10 @@ importers: tools/diff-generator: dependencies: - '@adobe/optimized-diff': + "@adobe/optimized-diff": specifier: workspace:* version: link:../optimized-diff - '@adobe/spectrum-diff-core': + "@adobe/spectrum-diff-core": specifier: workspace:* version: link:../spectrum-diff-core chalk: @@ -378,13 +377,13 @@ importers: tools/spectrum-design-data-mcp: dependencies: - '@adobe/spectrum-component-api-schemas': + "@adobe/spectrum-component-api-schemas": specifier: workspace:* version: link:../../packages/component-schemas - '@adobe/spectrum-tokens': + "@adobe/spectrum-tokens": specifier: workspace:* version: link:../../packages/tokens - '@modelcontextprotocol/sdk': + "@modelcontextprotocol/sdk": specifier: ^0.5.0 version: 0.5.0 commander: @@ -397,7 +396,7 @@ importers: tools/spectrum-diff-core: dependencies: - '@adobe/optimized-diff': + "@adobe/optimized-diff": specifier: workspace:* version: link:../optimized-diff chalk: @@ -428,7 +427,7 @@ importers: tools/token-changeset-generator: dependencies: - '@adobe/token-diff-generator': + "@adobe/token-diff-generator": specifier: workspace:* version: link:../diff-generator commander: @@ -447,7 +446,7 @@ importers: tools/token-csv-generator: dependencies: - '@adobe/spectrum-tokens': + "@adobe/spectrum-tokens": specifier: workspace:* version: link:../../packages/tokens jsonpath-plus: @@ -463,844 +462,1440 @@ importers: version: 8.1.0 packages: - - '@action-validator/core@0.6.0': - resolution: {integrity: sha512-tPglwCr8Mm8SWzwnVewwFmqRx91F0WvMsM0BRAqH4CLalyGndm53Xvp+UcUSzswpk1wkjIDYI7RyEhWMLyPkig==} - - '@babel/code-frame@7.27.1': - resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@7.27.1': - resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} - engines: {node: '>=6.9.0'} - - '@babel/runtime@7.27.6': - resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==} - engines: {node: '>=6.9.0'} - - '@bcoe/v8-coverage@1.0.2': - resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} - engines: {node: '>=18'} - - '@changesets/apply-release-plan@7.0.12': - resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==} - - '@changesets/assemble-release-plan@6.0.9': - resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==} - - '@changesets/changelog-git@0.2.1': - resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==} - - '@changesets/changelog-github@0.5.1': - resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==} - - '@changesets/cli@2.29.5': - resolution: {integrity: sha512-0j0cPq3fgxt2dPdFsg4XvO+6L66RC0pZybT9F4dG5TBrLA3jA/1pNkdTXH9IBBVHkgsKrNKenI3n1mPyPlIydg==} + "@action-validator/core@0.6.0": + resolution: + { + integrity: sha512-tPglwCr8Mm8SWzwnVewwFmqRx91F0WvMsM0BRAqH4CLalyGndm53Xvp+UcUSzswpk1wkjIDYI7RyEhWMLyPkig==, + } + + "@babel/code-frame@7.27.1": + resolution: + { + integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-validator-identifier@7.27.1": + resolution: + { + integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==, + } + engines: { node: ">=6.9.0" } + + "@babel/runtime@7.27.6": + resolution: + { + integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==, + } + engines: { node: ">=6.9.0" } + + "@bcoe/v8-coverage@1.0.2": + resolution: + { + integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==, + } + engines: { node: ">=18" } + + "@changesets/apply-release-plan@7.0.12": + resolution: + { + integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==, + } + + "@changesets/assemble-release-plan@6.0.9": + resolution: + { + integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==, + } + + "@changesets/changelog-git@0.2.1": + resolution: + { + integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==, + } + + "@changesets/changelog-github@0.5.1": + resolution: + { + integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==, + } + + "@changesets/cli@2.29.5": + resolution: + { + integrity: sha512-0j0cPq3fgxt2dPdFsg4XvO+6L66RC0pZybT9F4dG5TBrLA3jA/1pNkdTXH9IBBVHkgsKrNKenI3n1mPyPlIydg==, + } hasBin: true - '@changesets/config@3.1.1': - resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==} - - '@changesets/errors@0.2.0': - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - - '@changesets/get-dependents-graph@2.1.3': - resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==} - - '@changesets/get-github-info@0.6.0': - resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} - - '@changesets/get-release-plan@4.0.13': - resolution: {integrity: sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==} - - '@changesets/get-version-range-type@0.4.0': - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - - '@changesets/git@3.0.4': - resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==} - - '@changesets/logger@0.1.1': - resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} - - '@changesets/parse@0.4.1': - resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==} - - '@changesets/pre@2.0.2': - resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==} - - '@changesets/read@0.6.5': - resolution: {integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==} - - '@changesets/should-skip-package@0.1.2': - resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==} - - '@changesets/types@4.1.0': - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - - '@changesets/types@6.1.0': - resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==} - - '@changesets/write@0.4.0': - resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==} - - '@commitlint/cli@19.8.1': - resolution: {integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==} - engines: {node: '>=v18'} + "@changesets/config@3.1.1": + resolution: + { + integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==, + } + + "@changesets/errors@0.2.0": + resolution: + { + integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, + } + + "@changesets/get-dependents-graph@2.1.3": + resolution: + { + integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==, + } + + "@changesets/get-github-info@0.6.0": + resolution: + { + integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==, + } + + "@changesets/get-release-plan@4.0.13": + resolution: + { + integrity: sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==, + } + + "@changesets/get-version-range-type@0.4.0": + resolution: + { + integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==, + } + + "@changesets/git@3.0.4": + resolution: + { + integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==, + } + + "@changesets/logger@0.1.1": + resolution: + { + integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==, + } + + "@changesets/parse@0.4.1": + resolution: + { + integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==, + } + + "@changesets/pre@2.0.2": + resolution: + { + integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==, + } + + "@changesets/read@0.6.5": + resolution: + { + integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==, + } + + "@changesets/should-skip-package@0.1.2": + resolution: + { + integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==, + } + + "@changesets/types@4.1.0": + resolution: + { + integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, + } + + "@changesets/types@6.1.0": + resolution: + { + integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==, + } + + "@changesets/write@0.4.0": + resolution: + { + integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==, + } + + "@commitlint/cli@19.8.1": + resolution: + { + integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==, + } + engines: { node: ">=v18" } hasBin: true - '@commitlint/config-conventional@19.8.1': - resolution: {integrity: sha512-/AZHJL6F6B/G959CsMAzrPKKZjeEiAVifRyEwXxcT6qtqbPwGw+iQxmNS+Bu+i09OCtdNRW6pNpBvgPrtMr9EQ==} - engines: {node: '>=v18'} - - '@commitlint/config-validator@19.8.1': - resolution: {integrity: sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ==} - engines: {node: '>=v18'} - - '@commitlint/ensure@19.8.1': - resolution: {integrity: sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw==} - engines: {node: '>=v18'} - - '@commitlint/execute-rule@19.8.1': - resolution: {integrity: sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA==} - engines: {node: '>=v18'} - - '@commitlint/format@19.8.1': - resolution: {integrity: sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw==} - engines: {node: '>=v18'} - - '@commitlint/is-ignored@19.8.1': - resolution: {integrity: sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg==} - engines: {node: '>=v18'} - - '@commitlint/lint@19.8.1': - resolution: {integrity: sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw==} - engines: {node: '>=v18'} - - '@commitlint/load@19.8.1': - resolution: {integrity: sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A==} - engines: {node: '>=v18'} - - '@commitlint/message@19.8.1': - resolution: {integrity: sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg==} - engines: {node: '>=v18'} - - '@commitlint/parse@19.8.1': - resolution: {integrity: sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw==} - engines: {node: '>=v18'} - - '@commitlint/read@19.8.1': - resolution: {integrity: sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ==} - engines: {node: '>=v18'} - - '@commitlint/resolve-extends@19.8.1': - resolution: {integrity: sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg==} - engines: {node: '>=v18'} - - '@commitlint/rules@19.8.1': - resolution: {integrity: sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw==} - engines: {node: '>=v18'} - - '@commitlint/to-lines@19.8.1': - resolution: {integrity: sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg==} - engines: {node: '>=v18'} - - '@commitlint/top-level@19.8.1': - resolution: {integrity: sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw==} - engines: {node: '>=v18'} - - '@commitlint/types@19.8.1': - resolution: {integrity: sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw==} - engines: {node: '>=v18'} - - '@esbuild/aix-ppc64@0.21.5': - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} - engines: {node: '>=12'} + "@commitlint/config-conventional@19.8.1": + resolution: + { + integrity: sha512-/AZHJL6F6B/G959CsMAzrPKKZjeEiAVifRyEwXxcT6qtqbPwGw+iQxmNS+Bu+i09OCtdNRW6pNpBvgPrtMr9EQ==, + } + engines: { node: ">=v18" } + + "@commitlint/config-validator@19.8.1": + resolution: + { + integrity: sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ==, + } + engines: { node: ">=v18" } + + "@commitlint/ensure@19.8.1": + resolution: + { + integrity: sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw==, + } + engines: { node: ">=v18" } + + "@commitlint/execute-rule@19.8.1": + resolution: + { + integrity: sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA==, + } + engines: { node: ">=v18" } + + "@commitlint/format@19.8.1": + resolution: + { + integrity: sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw==, + } + engines: { node: ">=v18" } + + "@commitlint/is-ignored@19.8.1": + resolution: + { + integrity: sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg==, + } + engines: { node: ">=v18" } + + "@commitlint/lint@19.8.1": + resolution: + { + integrity: sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw==, + } + engines: { node: ">=v18" } + + "@commitlint/load@19.8.1": + resolution: + { + integrity: sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A==, + } + engines: { node: ">=v18" } + + "@commitlint/message@19.8.1": + resolution: + { + integrity: sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg==, + } + engines: { node: ">=v18" } + + "@commitlint/parse@19.8.1": + resolution: + { + integrity: sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw==, + } + engines: { node: ">=v18" } + + "@commitlint/read@19.8.1": + resolution: + { + integrity: sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ==, + } + engines: { node: ">=v18" } + + "@commitlint/resolve-extends@19.8.1": + resolution: + { + integrity: sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg==, + } + engines: { node: ">=v18" } + + "@commitlint/rules@19.8.1": + resolution: + { + integrity: sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw==, + } + engines: { node: ">=v18" } + + "@commitlint/to-lines@19.8.1": + resolution: + { + integrity: sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg==, + } + engines: { node: ">=v18" } + + "@commitlint/top-level@19.8.1": + resolution: + { + integrity: sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw==, + } + engines: { node: ">=v18" } + + "@commitlint/types@19.8.1": + resolution: + { + integrity: sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw==, + } + engines: { node: ">=v18" } + + "@esbuild/aix-ppc64@0.21.5": + resolution: + { + integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.21.5': - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} - engines: {node: '>=12'} + "@esbuild/android-arm64@0.21.5": + resolution: + { + integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==, + } + engines: { node: ">=12" } cpu: [arm64] os: [android] - '@esbuild/android-arm@0.21.5': - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} - engines: {node: '>=12'} + "@esbuild/android-arm@0.21.5": + resolution: + { + integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==, + } + engines: { node: ">=12" } cpu: [arm] os: [android] - '@esbuild/android-x64@0.21.5': - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} - engines: {node: '>=12'} + "@esbuild/android-x64@0.21.5": + resolution: + { + integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==, + } + engines: { node: ">=12" } cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.21.5': - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} - engines: {node: '>=12'} + "@esbuild/darwin-arm64@0.21.5": + resolution: + { + integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==, + } + engines: { node: ">=12" } cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.21.5': - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} - engines: {node: '>=12'} + "@esbuild/darwin-x64@0.21.5": + resolution: + { + integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==, + } + engines: { node: ">=12" } cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.21.5': - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} - engines: {node: '>=12'} + "@esbuild/freebsd-arm64@0.21.5": + resolution: + { + integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==, + } + engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.21.5': - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} - engines: {node: '>=12'} + "@esbuild/freebsd-x64@0.21.5": + resolution: + { + integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.21.5': - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} - engines: {node: '>=12'} + "@esbuild/linux-arm64@0.21.5": + resolution: + { + integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==, + } + engines: { node: ">=12" } cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.21.5': - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} - engines: {node: '>=12'} + "@esbuild/linux-arm@0.21.5": + resolution: + { + integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==, + } + engines: { node: ">=12" } cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.21.5': - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} - engines: {node: '>=12'} + "@esbuild/linux-ia32@0.21.5": + resolution: + { + integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==, + } + engines: { node: ">=12" } cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.21.5': - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} - engines: {node: '>=12'} + "@esbuild/linux-loong64@0.21.5": + resolution: + { + integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==, + } + engines: { node: ">=12" } cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.21.5': - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} - engines: {node: '>=12'} + "@esbuild/linux-mips64el@0.21.5": + resolution: + { + integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==, + } + engines: { node: ">=12" } cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.21.5': - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} - engines: {node: '>=12'} + "@esbuild/linux-ppc64@0.21.5": + resolution: + { + integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.21.5': - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} - engines: {node: '>=12'} + "@esbuild/linux-riscv64@0.21.5": + resolution: + { + integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==, + } + engines: { node: ">=12" } cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.21.5': - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} - engines: {node: '>=12'} + "@esbuild/linux-s390x@0.21.5": + resolution: + { + integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==, + } + engines: { node: ">=12" } cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.21.5': - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} - engines: {node: '>=12'} + "@esbuild/linux-x64@0.21.5": + resolution: + { + integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [linux] - '@esbuild/netbsd-x64@0.21.5': - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} - engines: {node: '>=12'} + "@esbuild/netbsd-x64@0.21.5": + resolution: + { + integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==, + } + engines: { node: ">=12" } cpu: [x64] os: [netbsd] - '@esbuild/openbsd-x64@0.21.5': - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} - engines: {node: '>=12'} + "@esbuild/openbsd-x64@0.21.5": + resolution: + { + integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==, + } + engines: { node: ">=12" } cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.21.5': - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} - engines: {node: '>=12'} + "@esbuild/sunos-x64@0.21.5": + resolution: + { + integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==, + } + engines: { node: ">=12" } cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.21.5': - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} - engines: {node: '>=12'} + "@esbuild/win32-arm64@0.21.5": + resolution: + { + integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==, + } + engines: { node: ">=12" } cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.21.5': - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} - engines: {node: '>=12'} + "@esbuild/win32-ia32@0.21.5": + resolution: + { + integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==, + } + engines: { node: ">=12" } cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.21.5': - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} - engines: {node: '>=12'} + "@esbuild/win32-x64@0.21.5": + resolution: + { + integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==, + } + engines: { node: ">=12" } cpu: [x64] os: [win32] - '@floating-ui/core@1.7.1': - resolution: {integrity: sha512-azI0DrjMMfIug/ExbBaeDVJXcY0a7EPvPjb2xAJPa4HeimBX+Z18HK8QQR3jb6356SnDDdxx+hinMLcJEDdOjw==} - - '@floating-ui/dom@1.7.1': - resolution: {integrity: sha512-cwsmW/zyw5ltYTUeeYJ60CnQuPqmGwuGVhG9w0PRaRKkAyi38BT5CKrpIbb+jtahSwUl04cWzSx9ZOIxeS6RsQ==} - - '@floating-ui/utils@0.2.9': - resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} - - '@internationalized/number@3.6.3': - resolution: {integrity: sha512-p+Zh1sb6EfrfVaS86jlHGQ9HA66fJhV9x5LiE5vCbZtXEHAuhcmUZUdZ4WrFpUBfNalr2OkAJI5AcKEQF+Lebw==} - - '@isaacs/balanced-match@4.0.1': - resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} - engines: {node: 20 || >=22} - - '@isaacs/brace-expansion@5.0.0': - resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} - engines: {node: 20 || >=22} - - '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - - '@isaacs/fs-minipass@4.0.1': - resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} - engines: {node: '>=18.0.0'} - - '@istanbuljs/schema@0.1.3': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} - - '@jridgewell/resolve-uri@3.1.2': - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} - - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - - '@lit-labs/observers@2.0.5': - resolution: {integrity: sha512-DYHc3XhNgfl9RoDFMz99OvnElWIU7ncNga1tYd/9Wez4NOsMDRXsSD6LjFfpHCVfzZic6MdlVfB7+iIuWXl5Ng==} - - '@lit-labs/ssr-dom-shim@1.3.0': - resolution: {integrity: sha512-nQIWonJ6eFAvUUrSlwyHDm/aE8PBDu5kRpL0vHMg6K8fK3Diq1xdPjTnsJSwxABhaZ+5eBi1btQB5ShUTKo4nQ==} - - '@lit/reactive-element@2.1.0': - resolution: {integrity: sha512-L2qyoZSQClcBmq0qajBVbhYEcG6iK0XfLn66ifLe/RfC0/ihpc+pl0Wdn8bJ8o+hj38cG0fGXRgSS20MuXn7qA==} - - '@manypkg/find-root@1.1.0': - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} - - '@manypkg/get-packages@1.1.3': - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - - '@mapbox/node-pre-gyp@2.0.0': - resolution: {integrity: sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==} - engines: {node: '>=18'} + "@floating-ui/core@1.7.1": + resolution: + { + integrity: sha512-azI0DrjMMfIug/ExbBaeDVJXcY0a7EPvPjb2xAJPa4HeimBX+Z18HK8QQR3jb6356SnDDdxx+hinMLcJEDdOjw==, + } + + "@floating-ui/dom@1.7.1": + resolution: + { + integrity: sha512-cwsmW/zyw5ltYTUeeYJ60CnQuPqmGwuGVhG9w0PRaRKkAyi38BT5CKrpIbb+jtahSwUl04cWzSx9ZOIxeS6RsQ==, + } + + "@floating-ui/utils@0.2.9": + resolution: + { + integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==, + } + + "@internationalized/number@3.6.3": + resolution: + { + integrity: sha512-p+Zh1sb6EfrfVaS86jlHGQ9HA66fJhV9x5LiE5vCbZtXEHAuhcmUZUdZ4WrFpUBfNalr2OkAJI5AcKEQF+Lebw==, + } + + "@isaacs/balanced-match@4.0.1": + resolution: + { + integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==, + } + engines: { node: 20 || >=22 } + + "@isaacs/brace-expansion@5.0.0": + resolution: + { + integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==, + } + engines: { node: 20 || >=22 } + + "@isaacs/cliui@8.0.2": + resolution: + { + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + } + engines: { node: ">=12" } + + "@isaacs/fs-minipass@4.0.1": + resolution: + { + integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==, + } + engines: { node: ">=18.0.0" } + + "@istanbuljs/schema@0.1.3": + resolution: + { + integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, + } + engines: { node: ">=8" } + + "@jridgewell/resolve-uri@3.1.2": + resolution: + { + integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, + } + engines: { node: ">=6.0.0" } + + "@jridgewell/sourcemap-codec@1.5.0": + resolution: + { + integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==, + } + + "@jridgewell/trace-mapping@0.3.25": + resolution: + { + integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, + } + + "@lit-labs/observers@2.0.5": + resolution: + { + integrity: sha512-DYHc3XhNgfl9RoDFMz99OvnElWIU7ncNga1tYd/9Wez4NOsMDRXsSD6LjFfpHCVfzZic6MdlVfB7+iIuWXl5Ng==, + } + + "@lit-labs/ssr-dom-shim@1.3.0": + resolution: + { + integrity: sha512-nQIWonJ6eFAvUUrSlwyHDm/aE8PBDu5kRpL0vHMg6K8fK3Diq1xdPjTnsJSwxABhaZ+5eBi1btQB5ShUTKo4nQ==, + } + + "@lit/reactive-element@2.1.0": + resolution: + { + integrity: sha512-L2qyoZSQClcBmq0qajBVbhYEcG6iK0XfLn66ifLe/RfC0/ihpc+pl0Wdn8bJ8o+hj38cG0fGXRgSS20MuXn7qA==, + } + + "@manypkg/find-root@1.1.0": + resolution: + { + integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, + } + + "@manypkg/get-packages@1.1.3": + resolution: + { + integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, + } + + "@mapbox/node-pre-gyp@2.0.0": + resolution: + { + integrity: sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==, + } + engines: { node: ">=18" } hasBin: true - '@modelcontextprotocol/sdk@0.5.0': - resolution: {integrity: sha512-RXgulUX6ewvxjAG0kOpLMEdXXWkzWgaoCGaA2CwNW7cQCIphjpJhjpHSiaPdVCnisjRF/0Cm9KWHUuIoeiAblQ==} - - '@moonrepo/cli@1.39.1': - resolution: {integrity: sha512-IWxkYGO6RTuCKdXWJUngAUuGIy2NmvOxTHXl0AFGS2TGHY2Y5DlxI0ZCG4pGR0mSC5oCKzMkzBf2m5iWMY+cMQ==} + "@modelcontextprotocol/sdk@0.5.0": + resolution: + { + integrity: sha512-RXgulUX6ewvxjAG0kOpLMEdXXWkzWgaoCGaA2CwNW7cQCIphjpJhjpHSiaPdVCnisjRF/0Cm9KWHUuIoeiAblQ==, + } + + "@moonrepo/cli@1.39.1": + resolution: + { + integrity: sha512-IWxkYGO6RTuCKdXWJUngAUuGIy2NmvOxTHXl0AFGS2TGHY2Y5DlxI0ZCG4pGR0mSC5oCKzMkzBf2m5iWMY+cMQ==, + } hasBin: true - '@moonrepo/core-linux-arm64-gnu@1.39.1': - resolution: {integrity: sha512-fkRNpS/0IzNUtyaTFLf88rqQcnzJFoxkegxIMPpMlrsFYV4zM5faH5+ppGJC1jBhz8Q8uvINZmvWDRqoCab2IQ==} + "@moonrepo/core-linux-arm64-gnu@1.39.1": + resolution: + { + integrity: sha512-fkRNpS/0IzNUtyaTFLf88rqQcnzJFoxkegxIMPpMlrsFYV4zM5faH5+ppGJC1jBhz8Q8uvINZmvWDRqoCab2IQ==, + } cpu: [arm64] os: [linux] - '@moonrepo/core-linux-arm64-musl@1.39.1': - resolution: {integrity: sha512-Fjm5x8ZdcxK1PJ+ZSNCT1G5h8S6e/IyhGu4zOhjOtqyYRcH8jUH23SbaNTMOs0pFmtxTeBFM5YdVmFadpQurTg==} + "@moonrepo/core-linux-arm64-musl@1.39.1": + resolution: + { + integrity: sha512-Fjm5x8ZdcxK1PJ+ZSNCT1G5h8S6e/IyhGu4zOhjOtqyYRcH8jUH23SbaNTMOs0pFmtxTeBFM5YdVmFadpQurTg==, + } cpu: [arm64] os: [linux] - '@moonrepo/core-linux-x64-gnu@1.39.1': - resolution: {integrity: sha512-boyTSQYfBgc+V4csIJ19aCAf9e4NIhn1pGtbolcxAKIy6V44Nv7rliovDHKllnCv1sroMZHVb0UsI9M21cvPDw==} + "@moonrepo/core-linux-x64-gnu@1.39.1": + resolution: + { + integrity: sha512-boyTSQYfBgc+V4csIJ19aCAf9e4NIhn1pGtbolcxAKIy6V44Nv7rliovDHKllnCv1sroMZHVb0UsI9M21cvPDw==, + } cpu: [x64] os: [linux] - '@moonrepo/core-linux-x64-musl@1.39.1': - resolution: {integrity: sha512-O4mNkIiUG85Ra6KMlu+PtKV6EPvQkBiERu44ylePuU6prccmUtIpofiCF2CX8lpEiouklr3iA+hgfahc296f/Q==} + "@moonrepo/core-linux-x64-musl@1.39.1": + resolution: + { + integrity: sha512-O4mNkIiUG85Ra6KMlu+PtKV6EPvQkBiERu44ylePuU6prccmUtIpofiCF2CX8lpEiouklr3iA+hgfahc296f/Q==, + } cpu: [x64] os: [linux] - '@moonrepo/core-macos-arm64@1.39.1': - resolution: {integrity: sha512-QrcwbDBS6aYb3iYYe+wyuVcLKEmp8HKR0zXHUygYEOM9V1h1PHQPPTKPzC8Ta36AqeUiB7+tLe/1I5hyUkSIew==} + "@moonrepo/core-macos-arm64@1.39.1": + resolution: + { + integrity: sha512-QrcwbDBS6aYb3iYYe+wyuVcLKEmp8HKR0zXHUygYEOM9V1h1PHQPPTKPzC8Ta36AqeUiB7+tLe/1I5hyUkSIew==, + } cpu: [arm64] os: [darwin] - '@moonrepo/core-macos-x64@1.39.1': - resolution: {integrity: sha512-tveSXxvd4OMCvPjKPFQ2M3ttYEOQVoUzgFEJeVrDRXXMENUMoPQt9Cq1gFA2WWtiZwNIWhRZQl9sUXhOxo3Dqg==} + "@moonrepo/core-macos-x64@1.39.1": + resolution: + { + integrity: sha512-tveSXxvd4OMCvPjKPFQ2M3ttYEOQVoUzgFEJeVrDRXXMENUMoPQt9Cq1gFA2WWtiZwNIWhRZQl9sUXhOxo3Dqg==, + } cpu: [x64] os: [darwin] - '@moonrepo/core-windows-x64-msvc@1.39.1': - resolution: {integrity: sha512-ksEsJup7JuDxHxD40mKKGfWObwwR/lE9u5+y/TsJ4djWU1oy6P077Pb1bgbWghWJjBCXuS4iwZ7nl0oQftQn4A==} + "@moonrepo/core-windows-x64-msvc@1.39.1": + resolution: + { + integrity: sha512-ksEsJup7JuDxHxD40mKKGfWObwwR/lE9u5+y/TsJ4djWU1oy6P077Pb1bgbWghWJjBCXuS4iwZ7nl0oQftQn4A==, + } cpu: [x64] os: [win32] - '@next/env@14.2.30': - resolution: {integrity: sha512-KBiBKrDY6kxTQWGzKjQB7QirL3PiiOkV7KW98leHFjtVRKtft76Ra5qSA/SL75xT44dp6hOcqiiJ6iievLOYug==} - - '@next/swc-darwin-arm64@14.2.30': - resolution: {integrity: sha512-EAqfOTb3bTGh9+ewpO/jC59uACadRHM6TSA9DdxJB/6gxOpyV+zrbqeXiFTDy9uV6bmipFDkfpAskeaDcO+7/g==} - engines: {node: '>= 10'} + "@next/env@14.2.30": + resolution: + { + integrity: sha512-KBiBKrDY6kxTQWGzKjQB7QirL3PiiOkV7KW98leHFjtVRKtft76Ra5qSA/SL75xT44dp6hOcqiiJ6iievLOYug==, + } + + "@next/swc-darwin-arm64@14.2.30": + resolution: + { + integrity: sha512-EAqfOTb3bTGh9+ewpO/jC59uACadRHM6TSA9DdxJB/6gxOpyV+zrbqeXiFTDy9uV6bmipFDkfpAskeaDcO+7/g==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@14.2.30': - resolution: {integrity: sha512-TyO7Wz1IKE2kGv8dwQ0bmPL3s44EKVencOqwIY69myoS3rdpO1NPg5xPM5ymKu7nfX4oYJrpMxv8G9iqLsnL4A==} - engines: {node: '>= 10'} + "@next/swc-darwin-x64@14.2.30": + resolution: + { + integrity: sha512-TyO7Wz1IKE2kGv8dwQ0bmPL3s44EKVencOqwIY69myoS3rdpO1NPg5xPM5ymKu7nfX4oYJrpMxv8G9iqLsnL4A==, + } + engines: { node: ">= 10" } cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@14.2.30': - resolution: {integrity: sha512-I5lg1fgPJ7I5dk6mr3qCH1hJYKJu1FsfKSiTKoYwcuUf53HWTrEkwmMI0t5ojFKeA6Vu+SfT2zVy5NS0QLXV4Q==} - engines: {node: '>= 10'} + "@next/swc-linux-arm64-gnu@14.2.30": + resolution: + { + integrity: sha512-I5lg1fgPJ7I5dk6mr3qCH1hJYKJu1FsfKSiTKoYwcuUf53HWTrEkwmMI0t5ojFKeA6Vu+SfT2zVy5NS0QLXV4Q==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.2.30': - resolution: {integrity: sha512-8GkNA+sLclQyxgzCDs2/2GSwBc92QLMrmYAmoP2xehe5MUKBLB2cgo34Yu242L1siSkwQkiV4YLdCnjwc/Micw==} - engines: {node: '>= 10'} + "@next/swc-linux-arm64-musl@14.2.30": + resolution: + { + integrity: sha512-8GkNA+sLclQyxgzCDs2/2GSwBc92QLMrmYAmoP2xehe5MUKBLB2cgo34Yu242L1siSkwQkiV4YLdCnjwc/Micw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@14.2.30': - resolution: {integrity: sha512-8Ly7okjssLuBoe8qaRCcjGtcMsv79hwzn/63wNeIkzJVFVX06h5S737XNr7DZwlsbTBDOyI6qbL2BJB5n6TV/w==} - engines: {node: '>= 10'} + "@next/swc-linux-x64-gnu@14.2.30": + resolution: + { + integrity: sha512-8Ly7okjssLuBoe8qaRCcjGtcMsv79hwzn/63wNeIkzJVFVX06h5S737XNr7DZwlsbTBDOyI6qbL2BJB5n6TV/w==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.2.30': - resolution: {integrity: sha512-dBmV1lLNeX4mR7uI7KNVHsGQU+OgTG5RGFPi3tBJpsKPvOPtg9poyav/BYWrB3GPQL4dW5YGGgalwZ79WukbKQ==} - engines: {node: '>= 10'} + "@next/swc-linux-x64-musl@14.2.30": + resolution: + { + integrity: sha512-dBmV1lLNeX4mR7uI7KNVHsGQU+OgTG5RGFPi3tBJpsKPvOPtg9poyav/BYWrB3GPQL4dW5YGGgalwZ79WukbKQ==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@14.2.30': - resolution: {integrity: sha512-6MMHi2Qc1Gkq+4YLXAgbYslE1f9zMGBikKMdmQRHXjkGPot1JY3n5/Qrbg40Uvbi8//wYnydPnyvNhI1DMUW1g==} - engines: {node: '>= 10'} + "@next/swc-win32-arm64-msvc@14.2.30": + resolution: + { + integrity: sha512-6MMHi2Qc1Gkq+4YLXAgbYslE1f9zMGBikKMdmQRHXjkGPot1JY3n5/Qrbg40Uvbi8//wYnydPnyvNhI1DMUW1g==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [win32] - '@next/swc-win32-ia32-msvc@14.2.30': - resolution: {integrity: sha512-pVZMnFok5qEX4RT59mK2hEVtJX+XFfak+/rjHpyFh7juiT52r177bfFKhnlafm0UOSldhXjj32b+LZIOdswGTg==} - engines: {node: '>= 10'} + "@next/swc-win32-ia32-msvc@14.2.30": + resolution: + { + integrity: sha512-pVZMnFok5qEX4RT59mK2hEVtJX+XFfak+/rjHpyFh7juiT52r177bfFKhnlafm0UOSldhXjj32b+LZIOdswGTg==, + } + engines: { node: ">= 10" } cpu: [ia32] os: [win32] - '@next/swc-win32-x64-msvc@14.2.30': - resolution: {integrity: sha512-4KCo8hMZXMjpTzs3HOqOGYYwAXymXIy7PEPAXNEcEOyKqkjiDlECumrWziy+JEF0Oi4ILHGxzgQ3YiMGG2t/Lg==} - engines: {node: '>= 10'} + "@next/swc-win32-x64-msvc@14.2.30": + resolution: + { + integrity: sha512-4KCo8hMZXMjpTzs3HOqOGYYwAXymXIy7PEPAXNEcEOyKqkjiDlECumrWziy+JEF0Oi4ILHGxzgQ3YiMGG2t/Lg==, + } + engines: { node: ">= 10" } cpu: [x64] os: [win32] - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@npmcli/config@8.3.4': - resolution: {integrity: sha512-01rtHedemDNhUXdicU7s+QYz/3JyV5Naj84cvdXGH4mgCdL+agmSYaLF4LUG4vMCLzhBO8YtS0gPpH1FGvbgAw==} - engines: {node: ^16.14.0 || >=18.0.0} - - '@npmcli/git@5.0.8': - resolution: {integrity: sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==} - engines: {node: ^16.14.0 || >=18.0.0} - - '@npmcli/map-workspaces@3.0.6': - resolution: {integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - '@npmcli/name-from-folder@2.0.0': - resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - '@npmcli/package-json@5.2.1': - resolution: {integrity: sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ==} - engines: {node: ^16.14.0 || >=18.0.0} - - '@npmcli/promise-spawn@7.0.2': - resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==} - engines: {node: ^16.14.0 || >=18.0.0} - - '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - - '@rollup/pluginutils@5.2.0': - resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==} - engines: {node: '>=14.0.0'} + "@nodelib/fs.scandir@2.1.5": + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: ">= 8" } + + "@nodelib/fs.stat@2.0.5": + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, + } + engines: { node: ">= 8" } + + "@nodelib/fs.walk@1.2.8": + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: ">= 8" } + + "@npmcli/config@8.3.4": + resolution: + { + integrity: sha512-01rtHedemDNhUXdicU7s+QYz/3JyV5Naj84cvdXGH4mgCdL+agmSYaLF4LUG4vMCLzhBO8YtS0gPpH1FGvbgAw==, + } + engines: { node: ^16.14.0 || >=18.0.0 } + + "@npmcli/git@5.0.8": + resolution: + { + integrity: sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==, + } + engines: { node: ^16.14.0 || >=18.0.0 } + + "@npmcli/map-workspaces@3.0.6": + resolution: + { + integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + + "@npmcli/name-from-folder@2.0.0": + resolution: + { + integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + + "@npmcli/package-json@5.2.1": + resolution: + { + integrity: sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ==, + } + engines: { node: ^16.14.0 || >=18.0.0 } + + "@npmcli/promise-spawn@7.0.2": + resolution: + { + integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==, + } + engines: { node: ^16.14.0 || >=18.0.0 } + + "@pkgjs/parseargs@0.11.0": + resolution: + { + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, + } + engines: { node: ">=14" } + + "@rollup/pluginutils@5.2.0": + resolution: + { + integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==, + } + engines: { node: ">=14.0.0" } peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.44.1': - resolution: {integrity: sha512-JAcBr1+fgqx20m7Fwe1DxPUl/hPkee6jA6Pl7n1v2EFiktAHenTaXl5aIFjUIEsfn9w3HE4gK1lEgNGMzBDs1w==} + "@rollup/rollup-android-arm-eabi@4.44.1": + resolution: + { + integrity: sha512-JAcBr1+fgqx20m7Fwe1DxPUl/hPkee6jA6Pl7n1v2EFiktAHenTaXl5aIFjUIEsfn9w3HE4gK1lEgNGMzBDs1w==, + } cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.44.1': - resolution: {integrity: sha512-RurZetXqTu4p+G0ChbnkwBuAtwAbIwJkycw1n6GvlGlBuS4u5qlr5opix8cBAYFJgaY05TWtM+LaoFggUmbZEQ==} + "@rollup/rollup-android-arm64@4.44.1": + resolution: + { + integrity: sha512-RurZetXqTu4p+G0ChbnkwBuAtwAbIwJkycw1n6GvlGlBuS4u5qlr5opix8cBAYFJgaY05TWtM+LaoFggUmbZEQ==, + } cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.44.1': - resolution: {integrity: sha512-fM/xPesi7g2M7chk37LOnmnSTHLG/v2ggWqKj3CCA1rMA4mm5KVBT1fNoswbo1JhPuNNZrVwpTvlCVggv8A2zg==} + "@rollup/rollup-darwin-arm64@4.44.1": + resolution: + { + integrity: sha512-fM/xPesi7g2M7chk37LOnmnSTHLG/v2ggWqKj3CCA1rMA4mm5KVBT1fNoswbo1JhPuNNZrVwpTvlCVggv8A2zg==, + } cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.44.1': - resolution: {integrity: sha512-gDnWk57urJrkrHQ2WVx9TSVTH7lSlU7E3AFqiko+bgjlh78aJ88/3nycMax52VIVjIm3ObXnDL2H00e/xzoipw==} + "@rollup/rollup-darwin-x64@4.44.1": + resolution: + { + integrity: sha512-gDnWk57urJrkrHQ2WVx9TSVTH7lSlU7E3AFqiko+bgjlh78aJ88/3nycMax52VIVjIm3ObXnDL2H00e/xzoipw==, + } cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.44.1': - resolution: {integrity: sha512-wnFQmJ/zPThM5zEGcnDcCJeYJgtSLjh1d//WuHzhf6zT3Md1BvvhJnWoy+HECKu2bMxaIcfWiu3bJgx6z4g2XA==} + "@rollup/rollup-freebsd-arm64@4.44.1": + resolution: + { + integrity: sha512-wnFQmJ/zPThM5zEGcnDcCJeYJgtSLjh1d//WuHzhf6zT3Md1BvvhJnWoy+HECKu2bMxaIcfWiu3bJgx6z4g2XA==, + } cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.44.1': - resolution: {integrity: sha512-uBmIxoJ4493YATvU2c0upGz87f99e3wop7TJgOA/bXMFd2SvKCI7xkxY/5k50bv7J6dw1SXT4MQBQSLn8Bb/Uw==} + "@rollup/rollup-freebsd-x64@4.44.1": + resolution: + { + integrity: sha512-uBmIxoJ4493YATvU2c0upGz87f99e3wop7TJgOA/bXMFd2SvKCI7xkxY/5k50bv7J6dw1SXT4MQBQSLn8Bb/Uw==, + } cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.44.1': - resolution: {integrity: sha512-n0edDmSHlXFhrlmTK7XBuwKlG5MbS7yleS1cQ9nn4kIeW+dJH+ExqNgQ0RrFRew8Y+0V/x6C5IjsHrJmiHtkxQ==} + "@rollup/rollup-linux-arm-gnueabihf@4.44.1": + resolution: + { + integrity: sha512-n0edDmSHlXFhrlmTK7XBuwKlG5MbS7yleS1cQ9nn4kIeW+dJH+ExqNgQ0RrFRew8Y+0V/x6C5IjsHrJmiHtkxQ==, + } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.44.1': - resolution: {integrity: sha512-8WVUPy3FtAsKSpyk21kV52HCxB+me6YkbkFHATzC2Yd3yuqHwy2lbFL4alJOLXKljoRw08Zk8/xEj89cLQ/4Nw==} + "@rollup/rollup-linux-arm-musleabihf@4.44.1": + resolution: + { + integrity: sha512-8WVUPy3FtAsKSpyk21kV52HCxB+me6YkbkFHATzC2Yd3yuqHwy2lbFL4alJOLXKljoRw08Zk8/xEj89cLQ/4Nw==, + } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.44.1': - resolution: {integrity: sha512-yuktAOaeOgorWDeFJggjuCkMGeITfqvPgkIXhDqsfKX8J3jGyxdDZgBV/2kj/2DyPaLiX6bPdjJDTu9RB8lUPQ==} + "@rollup/rollup-linux-arm64-gnu@4.44.1": + resolution: + { + integrity: sha512-yuktAOaeOgorWDeFJggjuCkMGeITfqvPgkIXhDqsfKX8J3jGyxdDZgBV/2kj/2DyPaLiX6bPdjJDTu9RB8lUPQ==, + } cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.44.1': - resolution: {integrity: sha512-W+GBM4ifET1Plw8pdVaecwUgxmiH23CfAUj32u8knq0JPFyK4weRy6H7ooxYFD19YxBulL0Ktsflg5XS7+7u9g==} + "@rollup/rollup-linux-arm64-musl@4.44.1": + resolution: + { + integrity: sha512-W+GBM4ifET1Plw8pdVaecwUgxmiH23CfAUj32u8knq0JPFyK4weRy6H7ooxYFD19YxBulL0Ktsflg5XS7+7u9g==, + } cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.44.1': - resolution: {integrity: sha512-1zqnUEMWp9WrGVuVak6jWTl4fEtrVKfZY7CvcBmUUpxAJ7WcSowPSAWIKa/0o5mBL/Ij50SIf9tuirGx63Ovew==} + "@rollup/rollup-linux-loongarch64-gnu@4.44.1": + resolution: + { + integrity: sha512-1zqnUEMWp9WrGVuVak6jWTl4fEtrVKfZY7CvcBmUUpxAJ7WcSowPSAWIKa/0o5mBL/Ij50SIf9tuirGx63Ovew==, + } cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.44.1': - resolution: {integrity: sha512-Rl3JKaRu0LHIx7ExBAAnf0JcOQetQffaw34T8vLlg9b1IhzcBgaIdnvEbbsZq9uZp3uAH+JkHd20Nwn0h9zPjA==} + "@rollup/rollup-linux-powerpc64le-gnu@4.44.1": + resolution: + { + integrity: sha512-Rl3JKaRu0LHIx7ExBAAnf0JcOQetQffaw34T8vLlg9b1IhzcBgaIdnvEbbsZq9uZp3uAH+JkHd20Nwn0h9zPjA==, + } cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.44.1': - resolution: {integrity: sha512-j5akelU3snyL6K3N/iX7otLBIl347fGwmd95U5gS/7z6T4ftK288jKq3A5lcFKcx7wwzb5rgNvAg3ZbV4BqUSw==} + "@rollup/rollup-linux-riscv64-gnu@4.44.1": + resolution: + { + integrity: sha512-j5akelU3snyL6K3N/iX7otLBIl347fGwmd95U5gS/7z6T4ftK288jKq3A5lcFKcx7wwzb5rgNvAg3ZbV4BqUSw==, + } cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.44.1': - resolution: {integrity: sha512-ppn5llVGgrZw7yxbIm8TTvtj1EoPgYUAbfw0uDjIOzzoqlZlZrLJ/KuiE7uf5EpTpCTrNt1EdtzF0naMm0wGYg==} + "@rollup/rollup-linux-riscv64-musl@4.44.1": + resolution: + { + integrity: sha512-ppn5llVGgrZw7yxbIm8TTvtj1EoPgYUAbfw0uDjIOzzoqlZlZrLJ/KuiE7uf5EpTpCTrNt1EdtzF0naMm0wGYg==, + } cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.44.1': - resolution: {integrity: sha512-Hu6hEdix0oxtUma99jSP7xbvjkUM/ycke/AQQ4EC5g7jNRLLIwjcNwaUy95ZKBJJwg1ZowsclNnjYqzN4zwkAw==} + "@rollup/rollup-linux-s390x-gnu@4.44.1": + resolution: + { + integrity: sha512-Hu6hEdix0oxtUma99jSP7xbvjkUM/ycke/AQQ4EC5g7jNRLLIwjcNwaUy95ZKBJJwg1ZowsclNnjYqzN4zwkAw==, + } cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.44.1': - resolution: {integrity: sha512-EtnsrmZGomz9WxK1bR5079zee3+7a+AdFlghyd6VbAjgRJDbTANJ9dcPIPAi76uG05micpEL+gPGmAKYTschQw==} + "@rollup/rollup-linux-x64-gnu@4.44.1": + resolution: + { + integrity: sha512-EtnsrmZGomz9WxK1bR5079zee3+7a+AdFlghyd6VbAjgRJDbTANJ9dcPIPAi76uG05micpEL+gPGmAKYTschQw==, + } cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.44.1': - resolution: {integrity: sha512-iAS4p+J1az6Usn0f8xhgL4PaU878KEtutP4hqw52I4IO6AGoyOkHCxcc4bqufv1tQLdDWFx8lR9YlwxKuv3/3g==} + "@rollup/rollup-linux-x64-musl@4.44.1": + resolution: + { + integrity: sha512-iAS4p+J1az6Usn0f8xhgL4PaU878KEtutP4hqw52I4IO6AGoyOkHCxcc4bqufv1tQLdDWFx8lR9YlwxKuv3/3g==, + } cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.44.1': - resolution: {integrity: sha512-NtSJVKcXwcqozOl+FwI41OH3OApDyLk3kqTJgx8+gp6On9ZEt5mYhIsKNPGuaZr3p9T6NWPKGU/03Vw4CNU9qg==} + "@rollup/rollup-win32-arm64-msvc@4.44.1": + resolution: + { + integrity: sha512-NtSJVKcXwcqozOl+FwI41OH3OApDyLk3kqTJgx8+gp6On9ZEt5mYhIsKNPGuaZr3p9T6NWPKGU/03Vw4CNU9qg==, + } cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.44.1': - resolution: {integrity: sha512-JYA3qvCOLXSsnTR3oiyGws1Dm0YTuxAAeaYGVlGpUsHqloPcFjPg+X0Fj2qODGLNwQOAcCiQmHub/V007kiH5A==} + "@rollup/rollup-win32-ia32-msvc@4.44.1": + resolution: + { + integrity: sha512-JYA3qvCOLXSsnTR3oiyGws1Dm0YTuxAAeaYGVlGpUsHqloPcFjPg+X0Fj2qODGLNwQOAcCiQmHub/V007kiH5A==, + } cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.44.1': - resolution: {integrity: sha512-J8o22LuF0kTe7m+8PvW9wk3/bRq5+mRo5Dqo6+vXb7otCm3TPhYOJqOaQtGU9YMWQSL3krMnoOxMr0+9E6F3Ug==} + "@rollup/rollup-win32-x64-msvc@4.44.1": + resolution: + { + integrity: sha512-J8o22LuF0kTe7m+8PvW9wk3/bRq5+mRo5Dqo6+vXb7otCm3TPhYOJqOaQtGU9YMWQSL3krMnoOxMr0+9E6F3Ug==, + } cpu: [x64] os: [win32] - '@sindresorhus/is@4.6.0': - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - - '@sindresorhus/merge-streams@2.3.0': - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} - engines: {node: '>=18'} - - '@spectrum-css/icon@9.1.0': - resolution: {integrity: sha512-w7/Xcb6zr9wLS0et8Rb5MMdbfP2FC1/hTaiARVfos2u8MC5J3gFpyM7QIOJzgTJVQGWgRQZAAWYfqGNBmWPNmw==} + "@sindresorhus/is@4.6.0": + resolution: + { + integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, + } + engines: { node: ">=10" } + + "@sindresorhus/merge-streams@2.3.0": + resolution: + { + integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==, + } + engines: { node: ">=18" } + + "@spectrum-css/icon@9.1.0": + resolution: + { + integrity: sha512-w7/Xcb6zr9wLS0et8Rb5MMdbfP2FC1/hTaiARVfos2u8MC5J3gFpyM7QIOJzgTJVQGWgRQZAAWYfqGNBmWPNmw==, + } peerDependencies: - '@spectrum-css/tokens': '>=16.0.0 <17.0.0' + "@spectrum-css/tokens": ">=16.0.0 <17.0.0" peerDependenciesMeta: - '@spectrum-css/tokens': + "@spectrum-css/tokens": optional: true - '@spectrum-css/link@5.2.0': - resolution: {integrity: sha512-v2jo3rejLOlQvIQrXFG/otmF3rLQlbbXPsB3zx62u8JXZa83MExRToEFZJ62BtO/h62cAW6EJ5zK4sN63YO47g==} + "@spectrum-css/link@5.2.0": + resolution: + { + integrity: sha512-v2jo3rejLOlQvIQrXFG/otmF3rLQlbbXPsB3zx62u8JXZa83MExRToEFZJ62BtO/h62cAW6EJ5zK4sN63YO47g==, + } peerDependencies: - '@spectrum-css/tokens': '>=14' + "@spectrum-css/tokens": ">=14" - '@spectrum-css/page@8.2.1': - resolution: {integrity: sha512-mylgpzFk73wGyjy6hT5dlc0qGBXv20079g8LqRBR7+icubXx6xglWCulYHTWrJveOPtcJF0HS94IMkVtHAhlYA==} + "@spectrum-css/page@8.2.1": + resolution: + { + integrity: sha512-mylgpzFk73wGyjy6hT5dlc0qGBXv20079g8LqRBR7+icubXx6xglWCulYHTWrJveOPtcJF0HS94IMkVtHAhlYA==, + } peerDependencies: - '@spectrum-css/tokens': '>=14 || >=15' + "@spectrum-css/tokens": ">=14 || >=15" - '@spectrum-css/sidenav@5.2.0': - resolution: {integrity: sha512-kCSazjPwVLcPavhKgDodZ7k2vvNQ/CdrRkQKBzEYoFVXLL1c6f74O9SfkWVYqbnOHBhSp1/H3iLx8zyfogasFQ==} + "@spectrum-css/sidenav@5.2.0": + resolution: + { + integrity: sha512-kCSazjPwVLcPavhKgDodZ7k2vvNQ/CdrRkQKBzEYoFVXLL1c6f74O9SfkWVYqbnOHBhSp1/H3iLx8zyfogasFQ==, + } peerDependencies: - '@spectrum-css/icon': '>=7' - '@spectrum-css/tokens': '>=14' + "@spectrum-css/icon": ">=7" + "@spectrum-css/tokens": ">=14" peerDependenciesMeta: - '@spectrum-css/icon': + "@spectrum-css/icon": optional: true - '@spectrum-css/table@6.2.0': - resolution: {integrity: sha512-kEEG8Pdox6NsGqzHiYtGkylvFoiaQ43jmKFcr5ie9tr8M74NjHCDoO6PlE/PgZhldENi5MsSGVVy+/w6vUDhwQ==} + "@spectrum-css/table@6.2.0": + resolution: + { + integrity: sha512-kEEG8Pdox6NsGqzHiYtGkylvFoiaQ43jmKFcr5ie9tr8M74NjHCDoO6PlE/PgZhldENi5MsSGVVy+/w6vUDhwQ==, + } peerDependencies: - '@spectrum-css/button': '>=13' - '@spectrum-css/checkbox': '>=9' - '@spectrum-css/icon': '>=7' - '@spectrum-css/thumbnail': '>=6' - '@spectrum-css/tokens': '>=14' + "@spectrum-css/button": ">=13" + "@spectrum-css/checkbox": ">=9" + "@spectrum-css/icon": ">=7" + "@spectrum-css/thumbnail": ">=6" + "@spectrum-css/tokens": ">=14" peerDependenciesMeta: - '@spectrum-css/button': + "@spectrum-css/button": optional: true - '@spectrum-css/checkbox': + "@spectrum-css/checkbox": optional: true - '@spectrum-css/thumbnail': + "@spectrum-css/thumbnail": optional: true - '@spectrum-css/tokens@14.6.0': - resolution: {integrity: sha512-v/ko2A2i2v4ShHizSdRkOs0fYBVLdiQe5yN/ECFBjpamd0YJHfZGh4uBIGSG+uZjwWpHbKhRusdCRFJKJ+WNYQ==} - - '@spectrum-css/typography@6.2.0': - resolution: {integrity: sha512-yaqc4wFY3asUhh3zzdqRI5dVJow7xJ2nL2bo4AADDLT305Dtje5PYO89m+f3nTVf2utKE3H8nlJbWUG57QpFqw==} + "@spectrum-css/tokens@14.6.0": + resolution: + { + integrity: sha512-v/ko2A2i2v4ShHizSdRkOs0fYBVLdiQe5yN/ECFBjpamd0YJHfZGh4uBIGSG+uZjwWpHbKhRusdCRFJKJ+WNYQ==, + } + + "@spectrum-css/typography@6.2.0": + resolution: + { + integrity: sha512-yaqc4wFY3asUhh3zzdqRI5dVJow7xJ2nL2bo4AADDLT305Dtje5PYO89m+f3nTVf2utKE3H8nlJbWUG57QpFqw==, + } peerDependencies: - '@spectrum-css/tokens': '>=14.5.0' - - '@spectrum-web-components/action-button@0.49.0': - resolution: {integrity: sha512-InYHqkLH8VVcpFQsIZiB19IYmEur2kAfk6YEM8OguFN/2XKg5chTkgT3fQ4y8WQRLneq6JKz30S5jV/k0Vlxqg==} - - '@spectrum-web-components/alert-banner@0.49.0': - resolution: {integrity: sha512-alblEEDL0OnTmLkVH2N+UdAhHAjoNMbJc5Ecy8jk2FZpWfAOhBPCugy28NuScivWwK03fHm+ewjazSDsXb6xvw==} - - '@spectrum-web-components/base@0.49.0': - resolution: {integrity: sha512-X9BaxJClSvu9pdS2shxkottejmG6iboYL1i1LCRBvE/QoTiVAclXfKODYHH7DUnXdpsPM8oRE5V7y02APCWjfg==} - - '@spectrum-web-components/button-group@0.49.0': - resolution: {integrity: sha512-XIRNRHp1XRGjaurTv1e/D7ZslJcsMaUQdHtA2Z3tnPmuDUOcK1tgRygylTfGU4CvdJxWtpP5FMcahFjmadSfiA==} - - '@spectrum-web-components/button@0.49.0': - resolution: {integrity: sha512-zBlBvY/JZ7hE3LnBR4TJ6Au71UYCASpQoIhZPzneSNboGHhQxruLw2AScIdMTSHfDUKcTi/XJaHx3EKPjTOLQQ==} - - '@spectrum-web-components/checkbox@0.49.0': - resolution: {integrity: sha512-wmR29D3Hv96EnZBANGLmwX7zE1lKcy6oAfwuQB1Ij1W/iFG/PiBwK3i5vj/8Wk+An1gKyDui3VzJap8ddK5rQA==} - - '@spectrum-web-components/clear-button@0.49.0': - resolution: {integrity: sha512-7MfPmg9evn6lJ4s9rm+2rWUzRaGYbFv3KnU0AhSur13PuAN76A6T2mfSzkf91SepSpvkkbu7nMPiw2GYV4U/QA==} - - '@spectrum-web-components/close-button@0.49.0': - resolution: {integrity: sha512-rIIqq5N6raQki7jlg4TJcbDda0OUoZTDudcLdFLWOG/liL/ulrYusbF/eBjiYi7HcA2Rely373pksjL/H32x/A==} - - '@spectrum-web-components/field-group@0.49.0': - resolution: {integrity: sha512-Kc3PFHQi3LllvYa06fIL4nrhhEA1tIAWxqUiwEVRkYDExpdl+2zxPmwbCrLPSvTWy1UbEWafKVpRJ+kSv0GL7Q==} - - '@spectrum-web-components/field-label@0.49.0': - resolution: {integrity: sha512-TvCqfm6HR5bxHyZDj+fo/u/ekKXRpoYZ1ITX0OLKx3NuA9/BicbA55gbgbH1ejPXFlbNIW8I8VhyoL+SbdvXOQ==} - - '@spectrum-web-components/help-text@0.49.0': - resolution: {integrity: sha512-/OgFtf04M6OnqOTr07v8+R5kP7cp1iYTD/9P/8FqRMb13vcjldE2xmfriz4zHZM+IYXIHvxmfznO39G3YrtKLA==} - - '@spectrum-web-components/icon@0.49.0': - resolution: {integrity: sha512-tKgd088HFceRkvvw1WNGYGgFcrrM8famxAFRJrEj8W6Wm1m8Q48fz3BDB1V4eI3qGsiaS8AjCfOqTh07vqHyeA==} - - '@spectrum-web-components/icons-ui@0.49.0': - resolution: {integrity: sha512-f74MfIua3K/ycuqX3/Daqkr0mgSFMXH1HTURofHhN9EopQoPRl4X+PGtAIY1PMih25JLUIAzMe3j0Zmx3Mt1LQ==} - - '@spectrum-web-components/icons-workflow@0.49.0': - resolution: {integrity: sha512-id1a9t3AzbrX+v7tLjcykGXt3sSmA8dBm+xesALijEH0M+H+w3BwueyIpNdHM3TPZ3IF3tKTxBGU6qCxSpHBpg==} - - '@spectrum-web-components/iconset@0.49.0': - resolution: {integrity: sha512-vyMvYaH7d6h254ucMFuhsv05IY4IOdFKKlXf9PJO06lCmaMq6p4lViOZ+hEWmkYJ6QHn2ovD8oQXwB5+KqhYBg==} - - '@spectrum-web-components/infield-button@0.49.0': - resolution: {integrity: sha512-zxHx/gy2VWsoxERdo4czLgp6D8RfrMiarTB/Pjwy0O6bH1mJhtWGtqiDH6iaY7hr8IHGXwlNYBOoC/x6SJkCag==} - - '@spectrum-web-components/link@0.49.0': - resolution: {integrity: sha512-mwYMe2fqNIUSoJG2OCf0v1mtqkOsAJcJ/b/M0bG67eaL3KcCcrrougWvVk1XEh1qLMF7ZPVmLWT5iliPTOM2EA==} - - '@spectrum-web-components/number-field@0.49.0': - resolution: {integrity: sha512-VH1a/hwV6Dr3hxbl0FtMxwqqn1R4aWsteMaytx2+oGX57L/lY0phz8m4q4V6AYFwbwSIsx6NW8ufqbwxTge5LA==} - - '@spectrum-web-components/overlay@0.49.0': - resolution: {integrity: sha512-I7nWEXXuGBNso3e2VGi6JHTR4wQ7axIWxxPaqiuPRokpKAxsfOk6XuNivvxovUqjHhbrFiTi6wVtSrRMCQmsUg==} - - '@spectrum-web-components/popover@0.49.0': - resolution: {integrity: sha512-iDEOgorUAXKgZOnrrMZWjIPAq12BSo3EUZIF8mSUo6gRr38qsIkzwWCBL2zO9jOb6v7Z6R07rQtUfj5nRn0c6w==} - - '@spectrum-web-components/progress-circle@0.49.0': - resolution: {integrity: sha512-MXvLbLz0BHRY/KekUe1DafAGj1nmcq14VMjMaLfCv0IYNCHYjEpEKrQyTI3TRZLEa0feF4YBMAqsbOEXOf9txw==} - - '@spectrum-web-components/reactive-controllers@0.49.0': - resolution: {integrity: sha512-trmz9mdr3a3U3ZW+ZiEv+4hp8wKkIBivlt3diEqsnpJp9GJB8hIUcnERb0V/jkk9bNnLneknMocVvP0sG8BuOg==} - - '@spectrum-web-components/search@0.49.0': - resolution: {integrity: sha512-wR3G9m6WCSU+cP2A6bZNCiwRfTCUbAHMASEQuRZawvdMpesa4u4ygg7x5FYurG2uAE6RJlm1c+/rTXDBAMwsKw==} - - '@spectrum-web-components/shared@0.49.0': - resolution: {integrity: sha512-rrKxMGC+YNrey19s6NjG0dvofyh0aDTP6KJ98G9eU++AaxamazFA0bOUIeGF7N/3HoZshCFOn8CSVJIqkK8rdg==} - - '@spectrum-web-components/slider@0.49.0': - resolution: {integrity: sha512-pXGl0Zh5hQH3RQ8u9yzE3G/YuloWECT+w2av3TBGAf77G2dlP1kOtR67z77tQNrJE/I4WbB0xYZNnaQPLoP9lw==} - - '@spectrum-web-components/styles@0.49.0': - resolution: {integrity: sha512-F4AF05sZUtkcS7Z0Bb2/+c75iEnC3iHDG0l65+i38OLltZKvNUyjzp/sdWvwGF4V2V3UxE4q9xUKVETzQFfz3Q==} - - '@spectrum-web-components/switch@0.49.0': - resolution: {integrity: sha512-8FObb5va3ImztYbIPPtjibUN31LmIEhNxKnr6Cseu2pUiilw2B2SFiPaewbaLx7YZr/+f4xnRUetHHPCEkO7kw==} - - '@spectrum-web-components/textfield@0.49.0': - resolution: {integrity: sha512-aZi3M4+HdkHglA5bxTcz+A3uYbBvuoVKHpCQzCcaU4DcyBCGnL1x1FKF5E5PZKPsZ4LmJKj9JhScGvhyGBCZRA==} - - '@spectrum-web-components/theme@0.49.0': - resolution: {integrity: sha512-fgw81WsSUJL0CqKDkbeI5JgugYL9u73Ccu7bsNfnvQCGpSQ65rs/tjaDsZb2hNAiUA4LfmmOePUA0W1Pu6vNiA==} - - '@spectrum-web-components/toast@0.49.0': - resolution: {integrity: sha512-9fCPpft9L4cv6M8C/Gfxs9hi2y+Sdw4RiI0CW72Y0x+NpV9r7Tp31lb1Z4gDoUrIO2cao0xJeqE74ZjUc1TIHA==} - - '@spectrum-web-components/tooltip@0.49.0': - resolution: {integrity: sha512-j4n77sOWpFY9/VLJk/+5aDcjU/f8kyPSuukPfOMIka8VE5jFPnnbozY19bAh80syejdx0NyWKjwAwjQdRKtpfA==} - - '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - - '@swc/helpers@0.5.17': - resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} - - '@swc/helpers@0.5.5': - resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} - - '@types/concat-stream@2.0.3': - resolution: {integrity: sha512-3qe4oQAPNwVNwK4C9c8u+VJqv9kez+2MR4qJpoPFfXtgxxif1QbFusvXzK0/Wra2VX07smostI2VMmJNSpZjuQ==} - - '@types/conventional-commits-parser@5.0.1': - resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} - - '@types/debug@4.1.12': - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - - '@types/estree@1.0.8': - resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} - - '@types/is-empty@1.2.3': - resolution: {integrity: sha512-4J1l5d79hoIvsrKh5VUKVRA1aIdsOb10Hu5j3J2VfP/msDnfTdGPmNp2E1Wg+vs97Bktzo+MZePFFXSGoykYJw==} - - '@types/istanbul-lib-coverage@2.0.6': - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - - '@types/mdast@4.0.4': - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} - - '@types/ms@2.1.0': - resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - - '@types/node@12.20.55': - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - - '@types/node@22.15.33': - resolution: {integrity: sha512-wzoocdnnpSxZ+6CjW4ADCK1jVmd1S/J3ArNWfn8FDDQtRm8dkDg7TA+mvek2wNrfCgwuZxqEOiB9B1XCJ6+dbw==} - - '@types/supports-color@8.1.3': - resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==} - - '@types/text-table@0.2.5': - resolution: {integrity: sha512-hcZhlNvMkQG/k1vcZ6yHOl6WAYftQ2MLfTHcYRZ2xYZFD8tGVnE3qFV0lj1smQeDSR7/yY0PyuUalauf33bJeA==} - - '@types/trusted-types@2.0.7': - resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} - - '@types/unist@3.0.3': - resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} - - '@vercel/nft@0.29.4': - resolution: {integrity: sha512-6lLqMNX3TuycBPABycx7A9F1bHQR7kiQln6abjFbPrf5C/05qHM9M5E4PeTE59c7z8g6vHnx1Ioihb2AQl7BTA==} - engines: {node: '>=18'} + "@spectrum-css/tokens": ">=14.5.0" + + "@spectrum-web-components/action-button@0.49.0": + resolution: + { + integrity: sha512-InYHqkLH8VVcpFQsIZiB19IYmEur2kAfk6YEM8OguFN/2XKg5chTkgT3fQ4y8WQRLneq6JKz30S5jV/k0Vlxqg==, + } + + "@spectrum-web-components/alert-banner@0.49.0": + resolution: + { + integrity: sha512-alblEEDL0OnTmLkVH2N+UdAhHAjoNMbJc5Ecy8jk2FZpWfAOhBPCugy28NuScivWwK03fHm+ewjazSDsXb6xvw==, + } + + "@spectrum-web-components/base@0.49.0": + resolution: + { + integrity: sha512-X9BaxJClSvu9pdS2shxkottejmG6iboYL1i1LCRBvE/QoTiVAclXfKODYHH7DUnXdpsPM8oRE5V7y02APCWjfg==, + } + + "@spectrum-web-components/button-group@0.49.0": + resolution: + { + integrity: sha512-XIRNRHp1XRGjaurTv1e/D7ZslJcsMaUQdHtA2Z3tnPmuDUOcK1tgRygylTfGU4CvdJxWtpP5FMcahFjmadSfiA==, + } + + "@spectrum-web-components/button@0.49.0": + resolution: + { + integrity: sha512-zBlBvY/JZ7hE3LnBR4TJ6Au71UYCASpQoIhZPzneSNboGHhQxruLw2AScIdMTSHfDUKcTi/XJaHx3EKPjTOLQQ==, + } + + "@spectrum-web-components/checkbox@0.49.0": + resolution: + { + integrity: sha512-wmR29D3Hv96EnZBANGLmwX7zE1lKcy6oAfwuQB1Ij1W/iFG/PiBwK3i5vj/8Wk+An1gKyDui3VzJap8ddK5rQA==, + } + + "@spectrum-web-components/clear-button@0.49.0": + resolution: + { + integrity: sha512-7MfPmg9evn6lJ4s9rm+2rWUzRaGYbFv3KnU0AhSur13PuAN76A6T2mfSzkf91SepSpvkkbu7nMPiw2GYV4U/QA==, + } + + "@spectrum-web-components/close-button@0.49.0": + resolution: + { + integrity: sha512-rIIqq5N6raQki7jlg4TJcbDda0OUoZTDudcLdFLWOG/liL/ulrYusbF/eBjiYi7HcA2Rely373pksjL/H32x/A==, + } + + "@spectrum-web-components/field-group@0.49.0": + resolution: + { + integrity: sha512-Kc3PFHQi3LllvYa06fIL4nrhhEA1tIAWxqUiwEVRkYDExpdl+2zxPmwbCrLPSvTWy1UbEWafKVpRJ+kSv0GL7Q==, + } + + "@spectrum-web-components/field-label@0.49.0": + resolution: + { + integrity: sha512-TvCqfm6HR5bxHyZDj+fo/u/ekKXRpoYZ1ITX0OLKx3NuA9/BicbA55gbgbH1ejPXFlbNIW8I8VhyoL+SbdvXOQ==, + } + + "@spectrum-web-components/help-text@0.49.0": + resolution: + { + integrity: sha512-/OgFtf04M6OnqOTr07v8+R5kP7cp1iYTD/9P/8FqRMb13vcjldE2xmfriz4zHZM+IYXIHvxmfznO39G3YrtKLA==, + } + + "@spectrum-web-components/icon@0.49.0": + resolution: + { + integrity: sha512-tKgd088HFceRkvvw1WNGYGgFcrrM8famxAFRJrEj8W6Wm1m8Q48fz3BDB1V4eI3qGsiaS8AjCfOqTh07vqHyeA==, + } + + "@spectrum-web-components/icons-ui@0.49.0": + resolution: + { + integrity: sha512-f74MfIua3K/ycuqX3/Daqkr0mgSFMXH1HTURofHhN9EopQoPRl4X+PGtAIY1PMih25JLUIAzMe3j0Zmx3Mt1LQ==, + } + + "@spectrum-web-components/icons-workflow@0.49.0": + resolution: + { + integrity: sha512-id1a9t3AzbrX+v7tLjcykGXt3sSmA8dBm+xesALijEH0M+H+w3BwueyIpNdHM3TPZ3IF3tKTxBGU6qCxSpHBpg==, + } + + "@spectrum-web-components/iconset@0.49.0": + resolution: + { + integrity: sha512-vyMvYaH7d6h254ucMFuhsv05IY4IOdFKKlXf9PJO06lCmaMq6p4lViOZ+hEWmkYJ6QHn2ovD8oQXwB5+KqhYBg==, + } + + "@spectrum-web-components/infield-button@0.49.0": + resolution: + { + integrity: sha512-zxHx/gy2VWsoxERdo4czLgp6D8RfrMiarTB/Pjwy0O6bH1mJhtWGtqiDH6iaY7hr8IHGXwlNYBOoC/x6SJkCag==, + } + + "@spectrum-web-components/link@0.49.0": + resolution: + { + integrity: sha512-mwYMe2fqNIUSoJG2OCf0v1mtqkOsAJcJ/b/M0bG67eaL3KcCcrrougWvVk1XEh1qLMF7ZPVmLWT5iliPTOM2EA==, + } + + "@spectrum-web-components/number-field@0.49.0": + resolution: + { + integrity: sha512-VH1a/hwV6Dr3hxbl0FtMxwqqn1R4aWsteMaytx2+oGX57L/lY0phz8m4q4V6AYFwbwSIsx6NW8ufqbwxTge5LA==, + } + + "@spectrum-web-components/overlay@0.49.0": + resolution: + { + integrity: sha512-I7nWEXXuGBNso3e2VGi6JHTR4wQ7axIWxxPaqiuPRokpKAxsfOk6XuNivvxovUqjHhbrFiTi6wVtSrRMCQmsUg==, + } + + "@spectrum-web-components/popover@0.49.0": + resolution: + { + integrity: sha512-iDEOgorUAXKgZOnrrMZWjIPAq12BSo3EUZIF8mSUo6gRr38qsIkzwWCBL2zO9jOb6v7Z6R07rQtUfj5nRn0c6w==, + } + + "@spectrum-web-components/progress-circle@0.49.0": + resolution: + { + integrity: sha512-MXvLbLz0BHRY/KekUe1DafAGj1nmcq14VMjMaLfCv0IYNCHYjEpEKrQyTI3TRZLEa0feF4YBMAqsbOEXOf9txw==, + } + + "@spectrum-web-components/reactive-controllers@0.49.0": + resolution: + { + integrity: sha512-trmz9mdr3a3U3ZW+ZiEv+4hp8wKkIBivlt3diEqsnpJp9GJB8hIUcnERb0V/jkk9bNnLneknMocVvP0sG8BuOg==, + } + + "@spectrum-web-components/search@0.49.0": + resolution: + { + integrity: sha512-wR3G9m6WCSU+cP2A6bZNCiwRfTCUbAHMASEQuRZawvdMpesa4u4ygg7x5FYurG2uAE6RJlm1c+/rTXDBAMwsKw==, + } + + "@spectrum-web-components/shared@0.49.0": + resolution: + { + integrity: sha512-rrKxMGC+YNrey19s6NjG0dvofyh0aDTP6KJ98G9eU++AaxamazFA0bOUIeGF7N/3HoZshCFOn8CSVJIqkK8rdg==, + } + + "@spectrum-web-components/slider@0.49.0": + resolution: + { + integrity: sha512-pXGl0Zh5hQH3RQ8u9yzE3G/YuloWECT+w2av3TBGAf77G2dlP1kOtR67z77tQNrJE/I4WbB0xYZNnaQPLoP9lw==, + } + + "@spectrum-web-components/styles@0.49.0": + resolution: + { + integrity: sha512-F4AF05sZUtkcS7Z0Bb2/+c75iEnC3iHDG0l65+i38OLltZKvNUyjzp/sdWvwGF4V2V3UxE4q9xUKVETzQFfz3Q==, + } + + "@spectrum-web-components/switch@0.49.0": + resolution: + { + integrity: sha512-8FObb5va3ImztYbIPPtjibUN31LmIEhNxKnr6Cseu2pUiilw2B2SFiPaewbaLx7YZr/+f4xnRUetHHPCEkO7kw==, + } + + "@spectrum-web-components/textfield@0.49.0": + resolution: + { + integrity: sha512-aZi3M4+HdkHglA5bxTcz+A3uYbBvuoVKHpCQzCcaU4DcyBCGnL1x1FKF5E5PZKPsZ4LmJKj9JhScGvhyGBCZRA==, + } + + "@spectrum-web-components/theme@0.49.0": + resolution: + { + integrity: sha512-fgw81WsSUJL0CqKDkbeI5JgugYL9u73Ccu7bsNfnvQCGpSQ65rs/tjaDsZb2hNAiUA4LfmmOePUA0W1Pu6vNiA==, + } + + "@spectrum-web-components/toast@0.49.0": + resolution: + { + integrity: sha512-9fCPpft9L4cv6M8C/Gfxs9hi2y+Sdw4RiI0CW72Y0x+NpV9r7Tp31lb1Z4gDoUrIO2cao0xJeqE74ZjUc1TIHA==, + } + + "@spectrum-web-components/tooltip@0.49.0": + resolution: + { + integrity: sha512-j4n77sOWpFY9/VLJk/+5aDcjU/f8kyPSuukPfOMIka8VE5jFPnnbozY19bAh80syejdx0NyWKjwAwjQdRKtpfA==, + } + + "@swc/counter@0.1.3": + resolution: + { + integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==, + } + + "@swc/helpers@0.5.17": + resolution: + { + integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==, + } + + "@swc/helpers@0.5.5": + resolution: + { + integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==, + } + + "@types/concat-stream@2.0.3": + resolution: + { + integrity: sha512-3qe4oQAPNwVNwK4C9c8u+VJqv9kez+2MR4qJpoPFfXtgxxif1QbFusvXzK0/Wra2VX07smostI2VMmJNSpZjuQ==, + } + + "@types/conventional-commits-parser@5.0.1": + resolution: + { + integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==, + } + + "@types/debug@4.1.12": + resolution: + { + integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, + } + + "@types/estree@1.0.8": + resolution: + { + integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==, + } + + "@types/is-empty@1.2.3": + resolution: + { + integrity: sha512-4J1l5d79hoIvsrKh5VUKVRA1aIdsOb10Hu5j3J2VfP/msDnfTdGPmNp2E1Wg+vs97Bktzo+MZePFFXSGoykYJw==, + } + + "@types/istanbul-lib-coverage@2.0.6": + resolution: + { + integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==, + } + + "@types/mdast@4.0.4": + resolution: + { + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, + } + + "@types/ms@2.1.0": + resolution: + { + integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==, + } + + "@types/node@12.20.55": + resolution: + { + integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, + } + + "@types/node@22.15.33": + resolution: + { + integrity: sha512-wzoocdnnpSxZ+6CjW4ADCK1jVmd1S/J3ArNWfn8FDDQtRm8dkDg7TA+mvek2wNrfCgwuZxqEOiB9B1XCJ6+dbw==, + } + + "@types/supports-color@8.1.3": + resolution: + { + integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==, + } + + "@types/text-table@0.2.5": + resolution: + { + integrity: sha512-hcZhlNvMkQG/k1vcZ6yHOl6WAYftQ2MLfTHcYRZ2xYZFD8tGVnE3qFV0lj1smQeDSR7/yY0PyuUalauf33bJeA==, + } + + "@types/trusted-types@2.0.7": + resolution: + { + integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==, + } + + "@types/unist@3.0.3": + resolution: + { + integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==, + } + + "@vercel/nft@0.29.4": + resolution: + { + integrity: sha512-6lLqMNX3TuycBPABycx7A9F1bHQR7kiQln6abjFbPrf5C/05qHM9M5E4PeTE59c7z8g6vHnx1Ioihb2AQl7BTA==, + } + engines: { node: ">=18" } hasBin: true JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + resolution: + { + integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==, + } hasBin: true abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } abbrev@3.0.1: - resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==} - engines: {node: ^18.17.0 || >=20.5.0} + resolution: + { + integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==, + } + engines: { node: ^18.17.0 || >=20.5.0 } acorn-import-attributes@1.9.5: - resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} + resolution: + { + integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==, + } peerDependencies: acorn: ^8 acorn-walk@8.3.4: - resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==, + } + engines: { node: ">=0.4.0" } acorn@8.15.0: - resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==, + } + engines: { node: ">=0.4.0" } hasBin: true agent-base@7.1.3: - resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==, + } + engines: { node: ">= 14" } ajv-formats@3.0.1: - resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} + resolution: + { + integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==, + } peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -1308,130 +1903,229 @@ packages: optional: true ajv@8.17.1: - resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + resolution: + { + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, + } ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, + } + engines: { node: ">=6" } ansi-escapes@7.0.0: - resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==, + } + engines: { node: ">=18" } ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: ">=8" } ansi-regex@6.1.0: - resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, + } + engines: { node: ">=12" } ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: ">=4" } ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: ">=8" } ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, + } + engines: { node: ">=12" } anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, + } + engines: { node: ">= 8" } argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, + } argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } array-back@3.1.0: - resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==, + } + engines: { node: ">=6" } array-back@4.0.2: - resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==, + } + engines: { node: ">=8" } array-find-index@1.0.2: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==, + } + engines: { node: ">=0.10.0" } array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + resolution: + { + integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==, + } array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: ">=8" } arrgv@1.0.2: - resolution: {integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==, + } + engines: { node: ">=8.0.0" } arrify@3.0.0: - resolution: {integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==, + } + engines: { node: ">=12" } assertion-error@1.0.2: - resolution: {integrity: sha512-wzQs0MF+xNG9ji/rooK2bLg8XVqP+dn/IYX6qgejMtmDNB8JRLL+BoBrd4furQNgPaWhJaQRXyMXGa48lzsGtQ==} + resolution: + { + integrity: sha512-wzQs0MF+xNG9ji/rooK2bLg8XVqP+dn/IYX6qgejMtmDNB8JRLL+BoBrd4furQNgPaWhJaQRXyMXGa48lzsGtQ==, + } async-sema@3.1.1: - resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + resolution: + { + integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==, + } ava@6.4.0: - resolution: {integrity: sha512-aeFapuBZtaGwVMlFFf074SZJ0bPcdmAdJdsvhHMp+XaOnC2DgeMzopb7yyYAhulNGRJQfUK/SIBYo2PoX7+gtw==} - engines: {node: ^18.18 || ^20.8 || ^22 || ^23 || >=24} + resolution: + { + integrity: sha512-aeFapuBZtaGwVMlFFf074SZJ0bPcdmAdJdsvhHMp+XaOnC2DgeMzopb7yyYAhulNGRJQfUK/SIBYo2PoX7+gtw==, + } + engines: { node: ^18.18 || ^20.8 || ^22 || ^23 || >=24 } hasBin: true peerDependencies: - '@ava/typescript': '*' + "@ava/typescript": "*" peerDependenciesMeta: - '@ava/typescript': + "@ava/typescript": optional: true bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + resolution: + { + integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, + } balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, + } + engines: { node: ">=4" } binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, + } + engines: { node: ">=8" } bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + resolution: + { + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, + } blueimp-md5@2.19.0: - resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} + resolution: + { + integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==, + } brace-expansion@2.0.2: - resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + resolution: + { + integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==, + } braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, + } + engines: { node: ">=8" } buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + resolution: + { + integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, + } busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} + resolution: + { + integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, + } + engines: { node: ">=10.16.0" } bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, + } + engines: { node: ">= 0.8" } c8@10.1.3: - resolution: {integrity: sha512-LvcyrOAaOnrrlMpW22n690PUvxiq4Uf9WMhQwNJ9vgagkL/ph1+D4uvjvDA5XCbykrc0sx+ay6pVi9YZ1GnhyA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-LvcyrOAaOnrrlMpW22n690PUvxiq4Uf9WMhQwNJ9vgagkL/ph1+D4uvjvDA5XCbykrc0sx+ay6pVi9YZ1GnhyA==, + } + engines: { node: ">=18" } hasBin: true peerDependencies: monocart-coverage-reports: ^2 @@ -1440,1219 +2134,2188 @@ packages: optional: true callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: ">=6" } callsites@4.2.0: - resolution: {integrity: sha512-kfzR4zzQtAE9PC7CzZsjl3aBNbXWuXiSeOCdLcPpBfGW8YuCqQHcRPFDbr/BPVmd3EEPVpuFzLyuT/cUhPr4OQ==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-kfzR4zzQtAE9PC7CzZsjl3aBNbXWuXiSeOCdLcPpBfGW8YuCqQHcRPFDbr/BPVmd3EEPVpuFzLyuT/cUhPr4OQ==, + } + engines: { node: ">=12.20" } camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + resolution: + { + integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==, + } caniuse-lite@1.0.30001726: - resolution: {integrity: sha512-VQAUIUzBiZ/UnlM28fSp2CRF3ivUn1BWEvxMcVTNwpw91Py1pGbPIyIKtd+tzct9C3ouceCVdGAXxZOpZAsgdw==} + resolution: + { + integrity: sha512-VQAUIUzBiZ/UnlM28fSp2CRF3ivUn1BWEvxMcVTNwpw91Py1pGbPIyIKtd+tzct9C3ouceCVdGAXxZOpZAsgdw==, + } capital-case@1.0.4: - resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} + resolution: + { + integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==, + } cbor@10.0.3: - resolution: {integrity: sha512-72Jnj81xMsqepqdcSdf2+fflz/UDsThOHy5hj2MW5F5xzHL8Oa0KQ6I6V9CwVUPxg5pf+W9xp6W2KilaRXWWtw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-72Jnj81xMsqepqdcSdf2+fflz/UDsThOHy5hj2MW5F5xzHL8Oa0KQ6I6V9CwVUPxg5pf+W9xp6W2KilaRXWWtw==, + } + engines: { node: ">=18" } ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + resolution: + { + integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, + } chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, + } + engines: { node: ">=4" } chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: ">=10" } chalk@5.4.1: - resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + resolution: + { + integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==, + } + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } change-case@4.1.2: - resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} + resolution: + { + integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==, + } char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, + } + engines: { node: ">=10" } character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + resolution: + { + integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, + } chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + resolution: + { + integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, + } chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + resolution: + { + integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==, + } + engines: { node: ">= 8.10.0" } chownr@3.0.0: - resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==, + } + engines: { node: ">=18" } chunkd@2.0.1: - resolution: {integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==} + resolution: + { + integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==, + } ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, + } + engines: { node: ">=8" } ci-info@4.2.0: - resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==, + } + engines: { node: ">=8" } ci-parallel-vars@1.0.1: - resolution: {integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==} + resolution: + { + integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==, + } cli-cursor@5.0.0: - resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==, + } + engines: { node: ">=18" } cli-truncate@4.0.0: - resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==, + } + engines: { node: ">=18" } client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + resolution: + { + integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, + } cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, + } + engines: { node: ">=12" } clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, + } + engines: { node: ">=0.8" } code-excerpt@4.0.0: - resolution: {integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, + } + engines: { node: ">=7.0.0" } color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + resolution: + { + integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, + } comma-separated-tokens@2.0.3: - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + resolution: + { + integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==, + } command-line-args@5.2.1: - resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==, + } + engines: { node: ">=4.0.0" } command-line-usage@6.1.3: - resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==, + } + engines: { node: ">=8.0.0" } commander@12.1.0: - resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==, + } + engines: { node: ">=18" } commander@13.1.0: - resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==, + } + engines: { node: ">=18" } commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==, + } + engines: { node: ">= 10" } commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, + } + engines: { node: ">= 12" } common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + resolution: + { + integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==, + } compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + resolution: + { + integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==, + } concat-stream@2.0.0: - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} + resolution: + { + integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==, + } + engines: { "0": node >= 6.0 } concordance@5.0.4: - resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==} - engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'} + resolution: + { + integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==, + } + engines: { node: ">=10.18.0 <11 || >=12.14.0 <13 || >=14" } consola@3.4.2: - resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} - engines: {node: ^14.18.0 || >=16.10.0} + resolution: + { + integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==, + } + engines: { node: ^14.18.0 || >=16.10.0 } constant-case@3.0.4: - resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} + resolution: + { + integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==, + } content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, + } + engines: { node: ">= 0.6" } conventional-changelog-angular@7.0.0: - resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==, + } + engines: { node: ">=16" } conventional-changelog-conventionalcommits@7.0.2: - resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==, + } + engines: { node: ">=16" } conventional-commits-parser@5.0.0: - resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==, + } + engines: { node: ">=16" } hasBin: true convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + resolution: + { + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, + } convert-to-spaces@2.0.1: - resolution: {integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } cosmiconfig-typescript-loader@6.1.0: - resolution: {integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==} - engines: {node: '>=v18'} + resolution: + { + integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==, + } + engines: { node: ">=v18" } peerDependencies: - '@types/node': '*' - cosmiconfig: '>=9' - typescript: '>=5' + "@types/node": "*" + cosmiconfig: ">=9" + typescript: ">=5" cosmiconfig@9.0.0: - resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==, + } + engines: { node: ">=14" } peerDependencies: - typescript: '>=4.9.5' + typescript: ">=4.9.5" peerDependenciesMeta: typescript: optional: true cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, + } + engines: { node: ">= 8" } currently-unhandled@0.4.1: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==, + } + engines: { node: ">=0.10.0" } d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==, + } + engines: { node: ">=12" } d3-axis@3.0.0: - resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==, + } + engines: { node: ">=12" } d3-brush@3.0.0: - resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==, + } + engines: { node: ">=12" } d3-chord@3.0.1: - resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==, + } + engines: { node: ">=12" } d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==, + } + engines: { node: ">=12" } d3-contour@4.0.2: - resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==, + } + engines: { node: ">=12" } d3-delaunay@6.0.4: - resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==, + } + engines: { node: ">=12" } d3-dispatch@3.0.1: - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==, + } + engines: { node: ">=12" } d3-drag@3.0.0: - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==, + } + engines: { node: ">=12" } d3-dsv@3.0.1: - resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==, + } + engines: { node: ">=12" } hasBin: true d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==, + } + engines: { node: ">=12" } d3-fetch@3.0.1: - resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==, + } + engines: { node: ">=12" } d3-force@3.0.0: - resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==, + } + engines: { node: ">=12" } d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==, + } + engines: { node: ">=12" } d3-geo@3.1.1: - resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==, + } + engines: { node: ">=12" } d3-hierarchy@3.1.2: - resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==, + } + engines: { node: ">=12" } d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==, + } + engines: { node: ">=12" } d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==, + } + engines: { node: ">=12" } d3-polygon@3.0.1: - resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==, + } + engines: { node: ">=12" } d3-quadtree@3.0.1: - resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==, + } + engines: { node: ">=12" } d3-random@3.0.1: - resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==, + } + engines: { node: ">=12" } d3-scale-chromatic@3.1.0: - resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==, + } + engines: { node: ">=12" } d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==, + } + engines: { node: ">=12" } d3-selection@3.0.0: - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==, + } + engines: { node: ">=12" } d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==, + } + engines: { node: ">=12" } d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==, + } + engines: { node: ">=12" } d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==, + } + engines: { node: ">=12" } d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==, + } + engines: { node: ">=12" } d3-transition@3.0.1: - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==, + } + engines: { node: ">=12" } peerDependencies: d3-selection: 2 - 3 d3-zoom@3.0.0: - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==, + } + engines: { node: ">=12" } d3@7.9.0: - resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==, + } + engines: { node: ">=12" } dargs@8.1.0: - resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==, + } + engines: { node: ">=12" } data-uri-to-buffer@4.0.1: - resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==, + } + engines: { node: ">= 12" } dataloader@1.4.0: - resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + resolution: + { + integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==, + } date-time@3.1.0: - resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==, + } + engines: { node: ">=6" } debug@4.4.1: - resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==, + } + engines: { node: ">=6.0" } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true decode-named-character-reference@1.2.0: - resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} + resolution: + { + integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==, + } deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, + } + engines: { node: ">=4.0.0" } deep-object-diff@1.1.9: - resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} + resolution: + { + integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==, + } deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, + } + engines: { node: ">=0.10.0" } delaunator@5.0.1: - resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} + resolution: + { + integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==, + } depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, + } + engines: { node: ">= 0.8" } dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, + } + engines: { node: ">=6" } detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + } + engines: { node: ">=8" } detect-libc@2.0.4: - resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==, + } + engines: { node: ">=8" } devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + resolution: + { + integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, + } dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: ">=8" } dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + resolution: + { + integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, + } dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==, + } + engines: { node: ">=8" } dotenv@8.6.0: - resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==, + } + engines: { node: ">=10" } eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + } emittery@1.2.0: - resolution: {integrity: sha512-KxdRyyFcS85pH3dnU8Y5yFUm2YJdaHwcBZWrfG8o89ZY9a13/f9itbN+YG3ELbBo9Pg5zvIozstmuV8bX13q6g==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-KxdRyyFcS85pH3dnU8Y5yFUm2YJdaHwcBZWrfG8o89ZY9a13/f9itbN+YG3ELbBo9Pg5zvIozstmuV8bX13q6g==, + } + engines: { node: ">=14.16" } emoji-regex@10.4.0: - resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} + resolution: + { + integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==, + } emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } emojilib@2.4.0: - resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} + resolution: + { + integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==, + } enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, + } + engines: { node: ">=8.6" } env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==, + } + engines: { node: ">=6" } environment@1.1.0: - resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==, + } + engines: { node: ">=18" } err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + resolution: + { + integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==, + } error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } esbuild@0.21.5: - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==, + } + engines: { node: ">=12" } hasBin: true escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, + } + engines: { node: ">=6" } escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: ">=0.8.0" } escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, + } + engines: { node: ">=8" } escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, + } + engines: { node: ">=12" } esmock@2.7.1: - resolution: {integrity: sha512-YgtZ6TSwRbdqFLkJwxVCYkt0rzKpjHb0tbDqSjWvbkm8Uy5Tm5W6ixICb3FVRkAd1uQlLOXiIn7OPY4F4f18cw==} - engines: {node: '>=14.16.0'} + resolution: + { + integrity: sha512-YgtZ6TSwRbdqFLkJwxVCYkt0rzKpjHb0tbDqSjWvbkm8Uy5Tm5W6ixICb3FVRkAd1uQlLOXiIn7OPY4F4f18cw==, + } + engines: { node: ">=14.16.0" } esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, + } + engines: { node: ">=4" } hasBin: true estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: ">=0.10.0" } eventemitter3@5.0.1: - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + resolution: + { + integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, + } execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} + resolution: + { + integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, + } + engines: { node: ">=16.17" } extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + resolution: + { + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, + } extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + resolution: + { + integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, + } external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, + } + engines: { node: ">=4" } fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + resolution: + { + integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, + } fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} - engines: {node: '>=8.6.0'} + resolution: + { + integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==, + } + engines: { node: ">=8.6.0" } fast-uri@3.0.6: - resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} + resolution: + { + integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==, + } fastq@1.19.1: - resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + resolution: + { + integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==, + } fetch-blob@3.2.0: - resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} - engines: {node: ^12.20 || >= 14.13} + resolution: + { + integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==, + } + engines: { node: ^12.20 || >= 14.13 } figures@6.1.0: - resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==, + } + engines: { node: ">=18" } file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + resolution: + { + integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, + } fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, + } + engines: { node: ">=8" } find-duplicated-property-keys@1.2.9: - resolution: {integrity: sha512-sQbiPRRTGL1L9YJIIyp02Ld+2VY03tOfoI5hykUDUFgeAgIVXTajSRjO9JbERN39bei7juNJBY9qknGpupwkAw==} + resolution: + { + integrity: sha512-sQbiPRRTGL1L9YJIIyp02Ld+2VY03tOfoI5hykUDUFgeAgIVXTajSRjO9JbERN39bei7juNJBY9qknGpupwkAw==, + } hasBin: true find-replace@3.0.0: - resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==, + } + engines: { node: ">=4.0.0" } find-up-simple@1.0.1: - resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==, + } + engines: { node: ">=18" } find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, + } + engines: { node: ">=8" } find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: { node: ">=10" } find-up@7.0.0: - resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==, + } + engines: { node: ">=18" } focus-visible@5.2.1: - resolution: {integrity: sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==} + resolution: + { + integrity: sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==, + } foreground-child@3.3.1: - resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==, + } + engines: { node: ">=14" } formdata-polyfill@4.0.10: - resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} - engines: {node: '>=12.20.0'} + resolution: + { + integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==, + } + engines: { node: ">=12.20.0" } fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, + } + engines: { node: ">=12" } fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + resolution: + { + integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, + } + engines: { node: ">=6 <7 || >=8" } fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + resolution: + { + integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, + } + engines: { node: ">=6 <7 || >=8" } fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { + integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, + } + engines: { node: 6.* || 8.* || >= 10.* } get-east-asian-width@1.3.0: - resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==, + } + engines: { node: ">=18" } get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, + } + engines: { node: ">=16" } git-raw-commits@4.0.0: - resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==, + } + engines: { node: ">=16" } hasBin: true glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: { node: ">= 6" } glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + resolution: + { + integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==, + } hasBin: true glob@11.0.3: - resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==} - engines: {node: 20 || >=22} + resolution: + { + integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==, + } + engines: { node: 20 || >=22 } hasBin: true global-directory@4.0.1: - resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==, + } + engines: { node: ">=18" } globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: ">=10" } globby@14.1.0: - resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==, + } + engines: { node: ">=18" } graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, + } handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} + resolution: + { + integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==, + } + engines: { node: ">=0.4.7" } hasBin: true has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: ">=4" } has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: ">=8" } header-case@2.0.4: - resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + resolution: + { + integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==, + } hosted-git-info@7.0.2: - resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} - engines: {node: ^16.14.0 || >=18.0.0} + resolution: + { + integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==, + } + engines: { node: ^16.14.0 || >=18.0.0 } html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, + } http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, + } + engines: { node: ">= 0.8" } https-proxy-agent@7.0.6: - resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==, + } + engines: { node: ">= 14" } human-id@4.1.1: - resolution: {integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==} + resolution: + { + integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==, + } hasBin: true human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} + resolution: + { + integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, + } + engines: { node: ">=16.17.0" } husky@9.1.7: - resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==, + } + engines: { node: ">=18" } hasBin: true iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, + } + engines: { node: ">=0.10.0" } iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, + } + engines: { node: ">=0.10.0" } ignore-by-default@2.1.0: - resolution: {integrity: sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==} - engines: {node: '>=10 <11 || >=12 <13 || >=14'} + resolution: + { + integrity: sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==, + } + engines: { node: ">=10 <11 || >=12 <13 || >=14" } ignore@5.3.2: - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, + } + engines: { node: ">= 4" } ignore@6.0.2: - resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==, + } + engines: { node: ">= 4" } ignore@7.0.5: - resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==, + } + engines: { node: ">= 4" } import-fresh@3.3.1: - resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==, + } + engines: { node: ">=6" } import-meta-resolve@4.1.0: - resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + resolution: + { + integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==, + } imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: ">=0.8.19" } indent-string@5.0.0: - resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==, + } + engines: { node: ">=12" } inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } ini@4.1.1: - resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } ini@4.1.3: - resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==, + } + engines: { node: ">=12" } irregular-plurals@3.5.0: - resolution: {integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==, + } + engines: { node: ">=8" } is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, + } + engines: { node: ">=8" } is-empty@1.2.0: - resolution: {integrity: sha512-F2FnH/otLNJv0J6wc73A5Xo7oHLNnqplYqZhUu01tD54DIPvxIRSTSLkrUB/M0nHO4vo1O9PDfN4KoTxCzLh/w==} + resolution: + { + integrity: sha512-F2FnH/otLNJv0J6wc73A5Xo7oHLNnqplYqZhUu01tD54DIPvxIRSTSLkrUB/M0nHO4vo1O9PDfN4KoTxCzLh/w==, + } is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: ">=0.10.0" } is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: { node: ">=8" } is-fullwidth-code-point@4.0.0: - resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, + } + engines: { node: ">=12" } is-fullwidth-code-point@5.0.0: - resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==, + } + engines: { node: ">=18" } is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: { node: ">=0.10.0" } is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: ">=0.12.0" } is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, + } + engines: { node: ">=8" } is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, + } + engines: { node: ">=12" } is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==, + } + engines: { node: ">=0.10.0" } is-promise@4.0.0: - resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} + resolution: + { + integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==, + } is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, + } + engines: { node: ">=4" } is-text-path@2.0.0: - resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==, + } + engines: { node: ">=8" } is-unicode-supported@2.1.0: - resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==, + } + engines: { node: ">=18" } is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, + } + engines: { node: ">=0.10.0" } isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } isexe@3.1.1: - resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==, + } + engines: { node: ">=16" } istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==, + } + engines: { node: ">=8" } istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, + } + engines: { node: ">=10" } istanbul-reports@3.1.7: - resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==, + } + engines: { node: ">=8" } jackspeak@3.4.3: - resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + resolution: + { + integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, + } jackspeak@4.1.1: - resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==} - engines: {node: 20 || >=22} + resolution: + { + integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==, + } + engines: { node: 20 || >=22 } jiti@2.4.2: - resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} + resolution: + { + integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==, + } hasBin: true js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==, + } + engines: { node: ">= 0.8" } js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + } hasBin: true js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } hasBin: true json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } json-parse-even-better-errors@3.0.2: - resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + resolution: + { + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, + } json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, + } + engines: { node: ">=6" } hasBin: true jsonc-parser@3.3.1: - resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} + resolution: + { + integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==, + } jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + resolution: + { + integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, + } jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + resolution: + { + integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, + } jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} + resolution: + { + integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==, + } + engines: { "0": node >= 0.2.0 } jsonpath-plus@8.1.0: - resolution: {integrity: sha512-qVTiuKztFGw0dGhYi3WNqvddx3/SHtyDT0xJaeyz4uP0d1tkpG+0y5uYQ4OcIo1TLAz3PE/qDOW9F0uDt3+CTw==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-qVTiuKztFGw0dGhYi3WNqvddx3/SHtyDT0xJaeyz4uP0d1tkpG+0y5uYQ4OcIo1TLAz3PE/qDOW9F0uDt3+CTw==, + } + engines: { node: ">=14.0.0" } hasBin: true lilconfig@3.1.3: - resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==, + } + engines: { node: ">=14" } lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } lint-staged@15.5.2: - resolution: {integrity: sha512-YUSOLq9VeRNAo/CTaVmhGDKG+LBtA8KF1X4K5+ykMSwWST1vDxJRB2kv2COgLb1fvpCo+A/y9A0G0znNVmdx4w==} - engines: {node: '>=18.12.0'} + resolution: + { + integrity: sha512-YUSOLq9VeRNAo/CTaVmhGDKG+LBtA8KF1X4K5+ykMSwWST1vDxJRB2kv2COgLb1fvpCo+A/y9A0G0znNVmdx4w==, + } + engines: { node: ">=18.12.0" } hasBin: true listr2@8.3.3: - resolution: {integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==} - engines: {node: '>=18.0.0'} + resolution: + { + integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==, + } + engines: { node: ">=18.0.0" } lit-element@4.2.0: - resolution: {integrity: sha512-MGrXJVAI5x+Bfth/pU9Kst1iWID6GHDLEzFEnyULB/sFiRLgkd8NPK/PeeXxktA3T6EIIaq8U3KcbTU5XFcP2Q==} + resolution: + { + integrity: sha512-MGrXJVAI5x+Bfth/pU9Kst1iWID6GHDLEzFEnyULB/sFiRLgkd8NPK/PeeXxktA3T6EIIaq8U3KcbTU5XFcP2Q==, + } lit-html@3.3.0: - resolution: {integrity: sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw==} + resolution: + { + integrity: sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw==, + } lit@3.3.0: - resolution: {integrity: sha512-DGVsqsOIHBww2DqnuZzW7QsuCdahp50ojuDaBPC7jUDRpYoH0z7kHBBYZewRzer75FwtrkmkKk7iOAwSaWdBmw==} + resolution: + { + integrity: sha512-DGVsqsOIHBww2DqnuZzW7QsuCdahp50ojuDaBPC7jUDRpYoH0z7kHBBYZewRzer75FwtrkmkKk7iOAwSaWdBmw==, + } load-json-file@7.0.1: - resolution: {integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } load-plugin@6.0.3: - resolution: {integrity: sha512-kc0X2FEUZr145odl68frm+lMJuQ23+rTXYmR6TImqPtbpmXC4vVXbWKDQ9IzndA0HfyQamWfKLhzsqGSTxE63w==} + resolution: + { + integrity: sha512-kc0X2FEUZr145odl68frm+lMJuQ23+rTXYmR6TImqPtbpmXC4vVXbWKDQ9IzndA0HfyQamWfKLhzsqGSTxE63w==, + } locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, + } + engines: { node: ">=8" } locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: { node: ">=10" } locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + resolution: + { + integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, + } lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, + } lodash.kebabcase@4.1.1: - resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + resolution: + { + integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==, + } lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } lodash.mergewith@4.6.2: - resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + resolution: + { + integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, + } lodash.snakecase@4.1.1: - resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + resolution: + { + integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==, + } lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + resolution: + { + integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, + } lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + resolution: + { + integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, + } lodash.upperfirst@4.3.1: - resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + resolution: + { + integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==, + } lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } log-update@6.1.0: - resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==, + } + engines: { node: ">=18" } longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + resolution: + { + integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==, + } loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } hasBin: true lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, + } lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + resolution: + { + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, + } lru-cache@11.1.0: - resolution: {integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==} - engines: {node: 20 || >=22} + resolution: + { + integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==, + } + engines: { node: 20 || >=22 } make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, + } + engines: { node: ">=10" } markdown-extensions@2.0.0: - resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==, + } + engines: { node: ">=16" } markdown-table@3.0.4: - resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + resolution: + { + integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==, + } matcher@5.0.0: - resolution: {integrity: sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } md5-hex@3.0.1: - resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==, + } + engines: { node: ">=8" } mdast-util-find-and-replace@3.0.2: - resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + resolution: + { + integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==, + } mdast-util-from-markdown@2.0.2: - resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + resolution: + { + integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==, + } mdast-util-gfm-autolink-literal@2.0.1: - resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + resolution: + { + integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==, + } mdast-util-gfm-footnote@2.1.0: - resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + resolution: + { + integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==, + } mdast-util-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + resolution: + { + integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==, + } mdast-util-gfm-table@2.0.0: - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + resolution: + { + integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==, + } mdast-util-gfm-task-list-item@2.0.0: - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + resolution: + { + integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==, + } mdast-util-gfm@3.1.0: - resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + resolution: + { + integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==, + } mdast-util-phrasing@4.1.0: - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + resolution: + { + integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==, + } mdast-util-to-markdown@2.1.2: - resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + resolution: + { + integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==, + } mdast-util-to-string@4.0.0: - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + resolution: + { + integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==, + } memoize@10.1.0: - resolution: {integrity: sha512-MMbFhJzh4Jlg/poq1si90XRlTZRDHVqdlz2mPyGJ6kqMpyHUyVpDd5gpFAvVehW64+RA1eKE9Yt8aSLY7w2Kgg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-MMbFhJzh4Jlg/poq1si90XRlTZRDHVqdlz2mPyGJ6kqMpyHUyVpDd5gpFAvVehW64+RA1eKE9Yt8aSLY7w2Kgg==, + } + engines: { node: ">=18" } meow@12.1.1: - resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} - engines: {node: '>=16.10'} + resolution: + { + integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==, + } + engines: { node: ">=16.10" } merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: ">= 8" } micromark-core-commonmark@2.0.3: - resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + resolution: + { + integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==, + } micromark-extension-gfm-autolink-literal@2.1.0: - resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + resolution: + { + integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==, + } micromark-extension-gfm-footnote@2.1.0: - resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + resolution: + { + integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==, + } micromark-extension-gfm-strikethrough@2.1.0: - resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + resolution: + { + integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==, + } micromark-extension-gfm-table@2.1.1: - resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + resolution: + { + integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==, + } micromark-extension-gfm-tagfilter@2.0.0: - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + resolution: + { + integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==, + } micromark-extension-gfm-task-list-item@2.1.0: - resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + resolution: + { + integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==, + } micromark-extension-gfm@3.0.0: - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + resolution: + { + integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==, + } micromark-factory-destination@2.0.1: - resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + resolution: + { + integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==, + } micromark-factory-label@2.0.1: - resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + resolution: + { + integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==, + } micromark-factory-space@2.0.1: - resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + resolution: + { + integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==, + } micromark-factory-title@2.0.1: - resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + resolution: + { + integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==, + } micromark-factory-whitespace@2.0.1: - resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + resolution: + { + integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==, + } micromark-util-character@2.1.1: - resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + resolution: + { + integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==, + } micromark-util-chunked@2.0.1: - resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + resolution: + { + integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==, + } micromark-util-classify-character@2.0.1: - resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + resolution: + { + integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==, + } micromark-util-combine-extensions@2.0.1: - resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + resolution: + { + integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==, + } micromark-util-decode-numeric-character-reference@2.0.2: - resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + resolution: + { + integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==, + } micromark-util-decode-string@2.0.1: - resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + resolution: + { + integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==, + } micromark-util-encode@2.0.1: - resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + resolution: + { + integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==, + } micromark-util-html-tag-name@2.0.1: - resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + resolution: + { + integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==, + } micromark-util-normalize-identifier@2.0.1: - resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + resolution: + { + integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==, + } micromark-util-resolve-all@2.0.1: - resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + resolution: + { + integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==, + } micromark-util-sanitize-uri@2.0.1: - resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + resolution: + { + integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==, + } micromark-util-subtokenize@2.1.0: - resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + resolution: + { + integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==, + } micromark-util-symbol@2.0.1: - resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + resolution: + { + integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==, + } micromark-util-types@2.0.2: - resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + resolution: + { + integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==, + } micromark@4.0.2: - resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + resolution: + { + integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==, + } micromatch@4.0.8: - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, + } + engines: { node: ">=8.6" } mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, + } + engines: { node: ">=12" } mimic-function@5.0.1: - resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==, + } + engines: { node: ">=18" } minimatch@10.0.3: - resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==} - engines: {node: 20 || >=22} + resolution: + { + integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==, + } + engines: { node: 20 || >=22 } minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, + } + engines: { node: ">=16 || 14 >=14.17" } minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, + } + engines: { node: ">=16 || 14 >=14.17" } minizlib@3.0.2: - resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==} - engines: {node: '>= 18'} + resolution: + { + integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==, + } + engines: { node: ">= 18" } mkdirp@3.0.1: - resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==, + } + engines: { node: ">=10" } hasBin: true mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, + } + engines: { node: ">=4" } ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } nanoid@3.3.11: - resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + resolution: + { + integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, + } next@14.2.30: - resolution: {integrity: sha512-+COdu6HQrHHFQ1S/8BBsCag61jZacmvbuL2avHvQFbWa2Ox7bE+d8FyNgxRLjXQ5wtPyQwEmk85js/AuaG2Sbg==} - engines: {node: '>=18.17.0'} + resolution: + { + integrity: sha512-+COdu6HQrHHFQ1S/8BBsCag61jZacmvbuL2avHvQFbWa2Ox7bE+d8FyNgxRLjXQ5wtPyQwEmk85js/AuaG2Sbg==, + } + engines: { node: ">=18.17.0" } hasBin: true peerDependencies: - '@opentelemetry/api': ^1.1.0 - '@playwright/test': ^1.41.2 + "@opentelemetry/api": ^1.1.0 + "@playwright/test": ^1.41.2 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - '@opentelemetry/api': + "@opentelemetry/api": optional: true - '@playwright/test': + "@playwright/test": optional: true sass: optional: true nixt@0.5.1: - resolution: {integrity: sha512-FlRpYm9sopR+aN05WSTZUA68nolYbH1MRB8JnQfDquToyo1YJCTJvhKnQzNZV3XLHKcLVURWWtMgAJr5IZ2wUg==} + resolution: + { + integrity: sha512-FlRpYm9sopR+aN05WSTZUA68nolYbH1MRB8JnQfDquToyo1YJCTJvhKnQzNZV3XLHKcLVURWWtMgAJr5IZ2wUg==, + } no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + resolution: + { + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, + } node-domexception@1.0.0: - resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} - engines: {node: '>=10.5.0'} + resolution: + { + integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, + } + engines: { node: ">=10.5.0" } deprecated: Use your platform's native DOMException instead node-emoji@2.2.0: - resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==, + } + engines: { node: ">=18" } node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -2660,737 +4323,1304 @@ packages: optional: true node-fetch@3.3.2: - resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } node-gyp-build@4.8.4: - resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} + resolution: + { + integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==, + } hasBin: true nofilter@3.1.0: - resolution: {integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==} - engines: {node: '>=12.19'} + resolution: + { + integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==, + } + engines: { node: ">=12.19" } nopt@7.2.1: - resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } hasBin: true nopt@8.1.0: - resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==} - engines: {node: ^18.17.0 || >=20.5.0} + resolution: + { + integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==, + } + engines: { node: ^18.17.0 || >=20.5.0 } hasBin: true normalize-package-data@6.0.2: - resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==} - engines: {node: ^16.14.0 || >=18.0.0} + resolution: + { + integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==, + } + engines: { node: ^16.14.0 || >=18.0.0 } normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: { node: ">=0.10.0" } npm-install-checks@6.3.0: - resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } npm-normalize-package-bin@3.0.1: - resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } npm-package-arg@11.0.3: - resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==} - engines: {node: ^16.14.0 || >=18.0.0} + resolution: + { + integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==, + } + engines: { node: ^16.14.0 || >=18.0.0 } npm-pick-manifest@9.1.0: - resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==} - engines: {node: ^16.14.0 || >=18.0.0} + resolution: + { + integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==, + } + engines: { node: ^16.14.0 || >=18.0.0 } npm-run-path@5.3.0: - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, + } + engines: { node: ">=12" } onetime@7.0.0: - resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==, + } + engines: { node: ">=18" } os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, + } + engines: { node: ">=0.10.0" } outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + resolution: + { + integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, + } p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, + } + engines: { node: ">=8" } p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: ">=6" } p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: ">=10" } p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, + } + engines: { node: ">=8" } p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: { node: ">=10" } p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, + } + engines: { node: ">=6" } p-map@7.0.3: - resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==, + } + engines: { node: ">=18" } p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: ">=6" } package-config@5.0.0: - resolution: {integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==, + } + engines: { node: ">=18" } package-json-from-dist@1.0.1: - resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + resolution: + { + integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==, + } package-manager-detector@0.2.11: - resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==} + resolution: + { + integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==, + } param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + resolution: + { + integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==, + } parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: { node: ">=6" } parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: { node: ">=8" } parse-json@7.1.1: - resolution: {integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==, + } + engines: { node: ">=16" } parse-ms@4.0.0: - resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==, + } + engines: { node: ">=18" } pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + resolution: + { + integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==, + } path-case@3.0.4: - resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} + resolution: + { + integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==, + } path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: ">=8" } path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: ">=8" } path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, + } + engines: { node: ">=12" } path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} + resolution: + { + integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, + } + engines: { node: ">=16 || 14 >=14.18" } path-scurry@2.0.0: - resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} - engines: {node: 20 || >=22} + resolution: + { + integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==, + } + engines: { node: 20 || >=22 } path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: ">=8" } path-type@6.0.0: - resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==, + } + engines: { node: ">=18" } picocolors@1.1.1: - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + resolution: + { + integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, + } picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: ">=8.6" } picomatch@4.0.2: - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==, + } + engines: { node: ">=12" } pidtree@0.6.0: - resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, + } + engines: { node: ">=0.10" } hasBin: true pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, + } + engines: { node: ">=6" } plur@5.1.0: - resolution: {integrity: sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, + } + engines: { node: ^10 || ^12 || >=14 } postcss@8.5.6: - resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==, + } + engines: { node: ^10 || ^12 || >=14 } prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, + } + engines: { node: ">=10.13.0" } hasBin: true prettier@3.6.1: - resolution: {integrity: sha512-5xGWRa90Sp2+x1dQtNpIpeOQpTDBs9cZDmA/qs2vDNN2i18PdapqY7CmBeyLlMuGqXJRIOPaCaVZTLNQRWUH/A==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-5xGWRa90Sp2+x1dQtNpIpeOQpTDBs9cZDmA/qs2vDNN2i18PdapqY7CmBeyLlMuGqXJRIOPaCaVZTLNQRWUH/A==, + } + engines: { node: ">=14" } hasBin: true pretty-ms@9.2.0: - resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==, + } + engines: { node: ">=18" } proc-log@4.2.0: - resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + resolution: + { + integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==, + } peerDependencies: - bluebird: '*' + bluebird: "*" peerDependenciesMeta: bluebird: optional: true promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==, + } + engines: { node: ">=10" } quansync@0.2.10: - resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} + resolution: + { + integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==, + } queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } raw-body@3.0.0: - resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==, + } + engines: { node: ">= 0.8" } react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + resolution: + { + integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, + } peerDependencies: react: ^18.3.1 react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, + } + engines: { node: ">=0.10.0" } read-package-json-fast@3.0.2: - resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, + } + engines: { node: ">=6" } readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, + } + engines: { node: ">= 6" } readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, + } + engines: { node: ">=8.10.0" } reduce-flatten@2.0.0: - resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==, + } + engines: { node: ">=6" } remark-cli@12.0.1: - resolution: {integrity: sha512-2NAEOACoTgo+e+YAaCTODqbrWyhMVmlUyjxNCkTrDRHHQvH6+NbrnqVvQaLH/Q8Ket3v90A43dgAJmXv8y5Tkw==} + resolution: + { + integrity: sha512-2NAEOACoTgo+e+YAaCTODqbrWyhMVmlUyjxNCkTrDRHHQvH6+NbrnqVvQaLH/Q8Ket3v90A43dgAJmXv8y5Tkw==, + } hasBin: true remark-gfm@4.0.1: - resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} + resolution: + { + integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==, + } remark-github@12.0.0: - resolution: {integrity: sha512-ByefQKFN184LeiGRCabfl7zUJsdlMYWEhiLX1gpmQ11yFg6xSuOTW7LVCv0oc1x+YvUMJW23NU36sJX2RWGgvg==} + resolution: + { + integrity: sha512-ByefQKFN184LeiGRCabfl7zUJsdlMYWEhiLX1gpmQ11yFg6xSuOTW7LVCv0oc1x+YvUMJW23NU36sJX2RWGgvg==, + } remark-parse@11.0.0: - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + resolution: + { + integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==, + } remark-stringify@11.0.0: - resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + resolution: + { + integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==, + } remark@15.0.1: - resolution: {integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==} + resolution: + { + integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==, + } require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, + } + engines: { node: ">=0.10.0" } require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, + } + engines: { node: ">=0.10.0" } resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, + } + engines: { node: ">=8" } resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: { node: ">=4" } resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, + } + engines: { node: ">=8" } restore-cursor@5.1.0: - resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==, + } + engines: { node: ">=18" } retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==, + } + engines: { node: ">= 4" } reusify@1.1.0: - resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + resolution: + { + integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==, + } + engines: { iojs: ">=1.0.0", node: ">=0.10.0" } rfdc@1.4.1: - resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + resolution: + { + integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==, + } rimraf@6.0.1: - resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==} - engines: {node: 20 || >=22} + resolution: + { + integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==, + } + engines: { node: 20 || >=22 } hasBin: true robust-predicates@3.0.2: - resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} + resolution: + { + integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==, + } rollup@4.44.1: - resolution: {integrity: sha512-x8H8aPvD+xbl0Do8oez5f5o8eMS3trfCghc4HhLAnCkj7Vl0d1JWGs0UF/D886zLW2rOj2QymV/JcSSsw+XDNg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} + resolution: + { + integrity: sha512-x8H8aPvD+xbl0Do8oez5f5o8eMS3trfCghc4HhLAnCkj7Vl0d1JWGs0UF/D886zLW2rOj2QymV/JcSSsw+XDNg==, + } + engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } rw@1.3.3: - resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} + resolution: + { + integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==, + } safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + resolution: + { + integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, + } semver@7.7.2: - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==, + } + engines: { node: ">=10" } hasBin: true sentence-case@3.0.4: - resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} + resolution: + { + integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==, + } serialize-error@7.0.1: - resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, + } + engines: { node: ">=10" } setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + resolution: + { + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, + } shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: ">=8" } shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: ">=8" } shell-quote@1.8.3: - resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==, + } + engines: { node: ">= 0.4" } signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, + } + engines: { node: ">=14" } skin-tone@2.0.0: - resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==, + } + engines: { node: ">=8" } slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: ">=8" } slash@5.1.0: - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==, + } + engines: { node: ">=14.16" } slice-ansi@5.0.0: - resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, + } + engines: { node: ">=12" } slice-ansi@7.1.0: - resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==, + } + engines: { node: ">=18" } snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + resolution: + { + integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, + } source-map-js@1.2.1: - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, + } + engines: { node: ">=0.10.0" } source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, + } + engines: { node: ">=0.10.0" } spawndamnit@3.0.1: - resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==} + resolution: + { + integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==, + } spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + resolution: + { + integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, + } spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + resolution: + { + integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, + } spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, + } spdx-license-ids@3.0.22: - resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==} + resolution: + { + integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==, + } split2@4.2.0: - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} - engines: {node: '>= 10.x'} + resolution: + { + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, + } + engines: { node: ">= 10.x" } sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, + } + engines: { node: ">=10" } statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, + } + engines: { node: ">= 0.8" } streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, + } + engines: { node: ">=10.0.0" } string-argv@0.3.2: - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} - engines: {node: '>=0.6.19'} + resolution: + { + integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, + } + engines: { node: ">=0.6.19" } string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: { node: ">=8" } string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, + } + engines: { node: ">=12" } string-width@6.1.0: - resolution: {integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==, + } + engines: { node: ">=16" } string-width@7.2.0: - resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, + } + engines: { node: ">=18" } string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: ">=8" } strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, + } + engines: { node: ">=12" } strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: ">=4" } strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, + } + engines: { node: ">=12" } style-dictionary-sets@2.3.0: - resolution: {integrity: sha512-XWYZOLTqVOxdYYlF7dDnJeh27BSRxRMmivRVOFWRCvIiHhaqK7V6HxMCegVpnGCi028+BTbkYndm6evA8SiFyg==} + resolution: + { + integrity: sha512-XWYZOLTqVOxdYYlF7dDnJeh27BSRxRMmivRVOFWRCvIiHhaqK7V6HxMCegVpnGCi028+BTbkYndm6evA8SiFyg==, + } style-dictionary@3.9.2: - resolution: {integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-M2pcQ6hyRtqHOh+NyT6T05R3pD/gwNpuhREBKvxC1En0vyywx+9Wy9nXWT1SZ9ePzv1vAo65ItnpA16tT9ZUCg==, + } + engines: { node: ">=12.0.0" } hasBin: true styled-jsx@5.1.1: - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + } + engines: { node: ">= 12.0.0" } peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + "@babel/core": "*" + babel-plugin-macros: "*" + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true babel-plugin-macros: optional: true supertap@3.0.1: - resolution: {integrity: sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: ">=4" } supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: { node: ">=8" } supports-color@9.4.0: - resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==, + } + engines: { node: ">=12" } table-layout@1.0.2: - resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==, + } + engines: { node: ">=8.0.0" } tar@7.4.3: - resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==, + } + engines: { node: ">=18" } temp-dir@3.0.0: - resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==, + } + engines: { node: ">=14.16" } term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, + } + engines: { node: ">=8" } test-exclude@7.0.1: - resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==, + } + engines: { node: ">=18" } text-extensions@2.4.0: - resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==, + } + engines: { node: ">=8" } text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } time-zone@1.0.0: - resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==, + } + engines: { node: ">=4" } tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + resolution: + { + integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==, + } tinyexec@1.0.1: - resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} + resolution: + { + integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==, + } tmp-promise@3.0.3: - resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==} + resolution: + { + integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==, + } tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, + } + engines: { node: ">=0.6.0" } tmp@0.2.3: - resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} - engines: {node: '>=14.14'} + resolution: + { + integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==, + } + engines: { node: ">=14.14" } to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: { node: ">=8.0" } to-vfile@8.0.0: - resolution: {integrity: sha512-IcmH1xB5576MJc9qcfEC/m/nQCFt3fzMHz45sSlgJyTWjRbKW1HAkJpuf3DgE57YzIlZcwcBZA5ENQbBo4aLkg==} + resolution: + { + integrity: sha512-IcmH1xB5576MJc9qcfEC/m/nQCFt3fzMHz45sSlgJyTWjRbKW1HAkJpuf3DgE57YzIlZcwcBZA5ENQbBo4aLkg==, + } toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, + } + engines: { node: ">=0.6" } tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + resolution: + { + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, + } trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + resolution: + { + integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, + } tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + resolution: + { + integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, + } type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, + } + engines: { node: ">=10" } type-fest@3.13.1: - resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, + } + engines: { node: ">=14.16" } typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + resolution: + { + integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==, + } typescript@5.8.3: - resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==, + } + engines: { node: ">=14.17" } hasBin: true typical@4.0.0: - resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==, + } + engines: { node: ">=8" } typical@5.2.0: - resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==, + } + engines: { node: ">=8" } uglify-js@3.19.3: - resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==, + } + engines: { node: ">=0.8.0" } hasBin: true undici-types@6.21.0: - resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + resolution: + { + integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==, + } unicode-emoji-modifier-base@1.0.0: - resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==, + } + engines: { node: ">=4" } unicorn-magic@0.1.0: - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==, + } + engines: { node: ">=18" } unicorn-magic@0.3.0: - resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==, + } + engines: { node: ">=18" } unified-args@11.0.1: - resolution: {integrity: sha512-WEQghE91+0s3xPVs0YW6a5zUduNLjmANswX7YbBfksHNDGMjHxaWCql4SR7c9q0yov/XiIEdk6r/LqfPjaYGcw==} + resolution: + { + integrity: sha512-WEQghE91+0s3xPVs0YW6a5zUduNLjmANswX7YbBfksHNDGMjHxaWCql4SR7c9q0yov/XiIEdk6r/LqfPjaYGcw==, + } unified-engine@11.2.2: - resolution: {integrity: sha512-15g/gWE7qQl9tQ3nAEbMd5h9HV1EACtFs6N9xaRBZICoCwnNGbal1kOs++ICf4aiTdItZxU2s/kYWhW7htlqJg==} + resolution: + { + integrity: sha512-15g/gWE7qQl9tQ3nAEbMd5h9HV1EACtFs6N9xaRBZICoCwnNGbal1kOs++ICf4aiTdItZxU2s/kYWhW7htlqJg==, + } unified@11.0.5: - resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + resolution: + { + integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==, + } unist-util-inspect@8.1.0: - resolution: {integrity: sha512-mOlg8Mp33pR0eeFpo5d2902ojqFFOKMMG2hF8bmH7ZlhnmjFgh0NI3/ZDwdaBJNbvrS7LZFVrBVtIE9KZ9s7vQ==} + resolution: + { + integrity: sha512-mOlg8Mp33pR0eeFpo5d2902ojqFFOKMMG2hF8bmH7ZlhnmjFgh0NI3/ZDwdaBJNbvrS7LZFVrBVtIE9KZ9s7vQ==, + } unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + resolution: + { + integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==, + } unist-util-stringify-position@4.0.0: - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + resolution: + { + integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, + } unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + resolution: + { + integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, + } unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + resolution: + { + integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==, + } universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, + } + engines: { node: ">= 4.0.0" } universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, + } + engines: { node: ">= 10.0.0" } unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, + } + engines: { node: ">= 0.8" } upper-case-first@2.0.2: - resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} + resolution: + { + integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==, + } upper-case@2.0.2: - resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} + resolution: + { + integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==, + } util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } uuid@11.1.0: - resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==} + resolution: + { + integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==, + } hasBin: true v8-to-istanbul@9.3.0: - resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} - engines: {node: '>=10.12.0'} + resolution: + { + integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==, + } + engines: { node: ">=10.12.0" } validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + resolution: + { + integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, + } validate-npm-package-name@5.0.1: - resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } vfile-message@4.0.3: - resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} + resolution: + { + integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==, + } vfile-reporter@8.1.1: - resolution: {integrity: sha512-qxRZcnFSQt6pWKn3PAk81yLK2rO2i7CDXpy8v8ZquiEOMLSnPw6BMSi9Y1sUCwGGl7a9b3CJT1CKpnRF7pp66g==} + resolution: + { + integrity: sha512-qxRZcnFSQt6pWKn3PAk81yLK2rO2i7CDXpy8v8ZquiEOMLSnPw6BMSi9Y1sUCwGGl7a9b3CJT1CKpnRF7pp66g==, + } vfile-sort@4.0.0: - resolution: {integrity: sha512-lffPI1JrbHDTToJwcq0rl6rBmkjQmMuXkAxsZPRS9DXbaJQvc642eCg6EGxcX2i1L+esbuhq+2l9tBll5v8AeQ==} + resolution: + { + integrity: sha512-lffPI1JrbHDTToJwcq0rl6rBmkjQmMuXkAxsZPRS9DXbaJQvc642eCg6EGxcX2i1L+esbuhq+2l9tBll5v8AeQ==, + } vfile-statistics@3.0.0: - resolution: {integrity: sha512-/qlwqwWBWFOmpXujL/20P+Iuydil0rZZNglR+VNm6J0gpLHwuVM5s7g2TfVoswbXjZ4HuIhLMySEyIw5i7/D8w==} + resolution: + { + integrity: sha512-/qlwqwWBWFOmpXujL/20P+Iuydil0rZZNglR+VNm6J0gpLHwuVM5s7g2TfVoswbXjZ4HuIhLMySEyIw5i7/D8w==, + } vfile@6.0.3: - resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + resolution: + { + integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==, + } vite@5.4.19: - resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==} - engines: {node: ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==, + } + engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - less: '*' + "@types/node": ^18.0.0 || >=20.0.0 + less: "*" lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' + sass: "*" + sass-embedded: "*" + stylus: "*" + sugarss: "*" terser: ^5.4.0 peerDependenciesMeta: - '@types/node': + "@types/node": optional: true less: optional: true @@ -3408,114 +5638,179 @@ packages: optional: true walk-up-path@3.0.1: - resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==} + resolution: + { + integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==, + } web-streams-polyfill@3.3.3: - resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==, + } + engines: { node: ">= 8" } webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, + } well-known-symbols@2.0.0: - resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==, + } + engines: { node: ">=6" } whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + resolution: + { + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, + } which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: ">= 8" } hasBin: true which@4.0.0: - resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==} - engines: {node: ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==, + } + engines: { node: ^16.13.0 || >=18.0.0 } hasBin: true wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + resolution: + { + integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==, + } wordwrapjs@4.0.1: - resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==, + } + engines: { node: ">=8.0.0" } wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: { node: ">=10" } wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, + } + engines: { node: ">=12" } wrap-ansi@9.0.0: - resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==, + } + engines: { node: ">=18" } write-file-atomic@6.0.0: - resolution: {integrity: sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ==} - engines: {node: ^18.17.0 || >=20.5.0} + resolution: + { + integrity: sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ==, + } + engines: { node: ^18.17.0 || >=20.5.0 } y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, + } + engines: { node: ">=10" } yallist@5.0.0: - resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==, + } + engines: { node: ">=18" } yaml@2.8.0: - resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==} - engines: {node: '>= 14.6'} + resolution: + { + integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==, + } + engines: { node: ">= 14.6" } hasBin: true yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: { node: ">=12" } yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, + } + engines: { node: ">=12" } yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: ">=10" } yocto-queue@1.2.1: - resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==, + } + engines: { node: ">=12.20" } zod@3.25.76: - resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} + resolution: + { + integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==, + } zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + resolution: + { + integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, + } snapshots: + "@action-validator/core@0.6.0": {} - '@action-validator/core@0.6.0': {} - - '@babel/code-frame@7.27.1': + "@babel/code-frame@7.27.1": dependencies: - '@babel/helper-validator-identifier': 7.27.1 + "@babel/helper-validator-identifier": 7.27.1 js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/helper-validator-identifier@7.27.1': {} + "@babel/helper-validator-identifier@7.27.1": {} - '@babel/runtime@7.27.6': {} + "@babel/runtime@7.27.6": {} - '@bcoe/v8-coverage@1.0.2': {} + "@bcoe/v8-coverage@1.0.2": {} - '@changesets/apply-release-plan@7.0.12': + "@changesets/apply-release-plan@7.0.12": dependencies: - '@changesets/config': 3.1.1 - '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.4 - '@changesets/should-skip-package': 0.1.2 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/config": 3.1.1 + "@changesets/get-version-range-type": 0.4.0 + "@changesets/git": 3.0.4 + "@changesets/should-skip-package": 0.1.2 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 @@ -3524,44 +5819,44 @@ snapshots: resolve-from: 5.0.0 semver: 7.7.2 - '@changesets/assemble-release-plan@6.0.9': + "@changesets/assemble-release-plan@6.0.9": dependencies: - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.3 - '@changesets/should-skip-package': 0.1.2 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.3 + "@changesets/should-skip-package": 0.1.2 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 semver: 7.7.2 - '@changesets/changelog-git@0.2.1': + "@changesets/changelog-git@0.2.1": dependencies: - '@changesets/types': 6.1.0 + "@changesets/types": 6.1.0 - '@changesets/changelog-github@0.5.1': + "@changesets/changelog-github@0.5.1": dependencies: - '@changesets/get-github-info': 0.6.0 - '@changesets/types': 6.1.0 + "@changesets/get-github-info": 0.6.0 + "@changesets/types": 6.1.0 dotenv: 8.6.0 transitivePeerDependencies: - encoding - '@changesets/cli@2.29.5': - dependencies: - '@changesets/apply-release-plan': 7.0.12 - '@changesets/assemble-release-plan': 6.0.9 - '@changesets/changelog-git': 0.2.1 - '@changesets/config': 3.1.1 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.3 - '@changesets/get-release-plan': 4.0.13 - '@changesets/git': 3.0.4 - '@changesets/logger': 0.1.1 - '@changesets/pre': 2.0.2 - '@changesets/read': 0.6.5 - '@changesets/should-skip-package': 0.1.2 - '@changesets/types': 6.1.0 - '@changesets/write': 0.4.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/cli@2.29.5": + dependencies: + "@changesets/apply-release-plan": 7.0.12 + "@changesets/assemble-release-plan": 6.0.9 + "@changesets/changelog-git": 0.2.1 + "@changesets/config": 3.1.1 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.3 + "@changesets/get-release-plan": 4.0.13 + "@changesets/git": 3.0.4 + "@changesets/logger": 0.1.1 + "@changesets/pre": 2.0.2 + "@changesets/read": 0.6.5 + "@changesets/should-skip-package": 0.1.2 + "@changesets/types": 6.1.0 + "@changesets/write": 0.4.0 + "@manypkg/get-packages": 1.1.3 ansi-colors: 4.1.3 ci-info: 3.9.0 enquirer: 2.4.1 @@ -3576,152 +5871,152 @@ snapshots: spawndamnit: 3.0.1 term-size: 2.2.1 - '@changesets/config@3.1.1': + "@changesets/config@3.1.1": dependencies: - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.3 - '@changesets/logger': 0.1.1 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.3 + "@changesets/logger": 0.1.1 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.8 - '@changesets/errors@0.2.0': + "@changesets/errors@0.2.0": dependencies: extendable-error: 0.1.7 - '@changesets/get-dependents-graph@2.1.3': + "@changesets/get-dependents-graph@2.1.3": dependencies: - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 picocolors: 1.1.1 semver: 7.7.2 - '@changesets/get-github-info@0.6.0': + "@changesets/get-github-info@0.6.0": dependencies: dataloader: 1.4.0 node-fetch: 2.7.0 transitivePeerDependencies: - encoding - '@changesets/get-release-plan@4.0.13': + "@changesets/get-release-plan@4.0.13": dependencies: - '@changesets/assemble-release-plan': 6.0.9 - '@changesets/config': 3.1.1 - '@changesets/pre': 2.0.2 - '@changesets/read': 0.6.5 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/assemble-release-plan": 6.0.9 + "@changesets/config": 3.1.1 + "@changesets/pre": 2.0.2 + "@changesets/read": 0.6.5 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 - '@changesets/get-version-range-type@0.4.0': {} + "@changesets/get-version-range-type@0.4.0": {} - '@changesets/git@3.0.4': + "@changesets/git@3.0.4": dependencies: - '@changesets/errors': 0.2.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/errors": 0.2.0 + "@manypkg/get-packages": 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.8 spawndamnit: 3.0.1 - '@changesets/logger@0.1.1': + "@changesets/logger@0.1.1": dependencies: picocolors: 1.1.1 - '@changesets/parse@0.4.1': + "@changesets/parse@0.4.1": dependencies: - '@changesets/types': 6.1.0 + "@changesets/types": 6.1.0 js-yaml: 3.14.1 - '@changesets/pre@2.0.2': + "@changesets/pre@2.0.2": dependencies: - '@changesets/errors': 0.2.0 - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/errors": 0.2.0 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 - '@changesets/read@0.6.5': + "@changesets/read@0.6.5": dependencies: - '@changesets/git': 3.0.4 - '@changesets/logger': 0.1.1 - '@changesets/parse': 0.4.1 - '@changesets/types': 6.1.0 + "@changesets/git": 3.0.4 + "@changesets/logger": 0.1.1 + "@changesets/parse": 0.4.1 + "@changesets/types": 6.1.0 fs-extra: 7.0.1 p-filter: 2.1.0 picocolors: 1.1.1 - '@changesets/should-skip-package@0.1.2': + "@changesets/should-skip-package@0.1.2": dependencies: - '@changesets/types': 6.1.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/types": 6.1.0 + "@manypkg/get-packages": 1.1.3 - '@changesets/types@4.1.0': {} + "@changesets/types@4.1.0": {} - '@changesets/types@6.1.0': {} + "@changesets/types@6.1.0": {} - '@changesets/write@0.4.0': + "@changesets/write@0.4.0": dependencies: - '@changesets/types': 6.1.0 + "@changesets/types": 6.1.0 fs-extra: 7.0.1 human-id: 4.1.1 prettier: 2.8.8 - '@commitlint/cli@19.8.1(@types/node@22.15.33)(typescript@5.8.3)': + "@commitlint/cli@19.8.1(@types/node@22.15.33)(typescript@5.8.3)": dependencies: - '@commitlint/format': 19.8.1 - '@commitlint/lint': 19.8.1 - '@commitlint/load': 19.8.1(@types/node@22.15.33)(typescript@5.8.3) - '@commitlint/read': 19.8.1 - '@commitlint/types': 19.8.1 + "@commitlint/format": 19.8.1 + "@commitlint/lint": 19.8.1 + "@commitlint/load": 19.8.1(@types/node@22.15.33)(typescript@5.8.3) + "@commitlint/read": 19.8.1 + "@commitlint/types": 19.8.1 tinyexec: 1.0.1 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - typescript - '@commitlint/config-conventional@19.8.1': + "@commitlint/config-conventional@19.8.1": dependencies: - '@commitlint/types': 19.8.1 + "@commitlint/types": 19.8.1 conventional-changelog-conventionalcommits: 7.0.2 - '@commitlint/config-validator@19.8.1': + "@commitlint/config-validator@19.8.1": dependencies: - '@commitlint/types': 19.8.1 + "@commitlint/types": 19.8.1 ajv: 8.17.1 - '@commitlint/ensure@19.8.1': + "@commitlint/ensure@19.8.1": dependencies: - '@commitlint/types': 19.8.1 + "@commitlint/types": 19.8.1 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 lodash.startcase: 4.4.0 lodash.upperfirst: 4.3.1 - '@commitlint/execute-rule@19.8.1': {} + "@commitlint/execute-rule@19.8.1": {} - '@commitlint/format@19.8.1': + "@commitlint/format@19.8.1": dependencies: - '@commitlint/types': 19.8.1 + "@commitlint/types": 19.8.1 chalk: 5.4.1 - '@commitlint/is-ignored@19.8.1': + "@commitlint/is-ignored@19.8.1": dependencies: - '@commitlint/types': 19.8.1 + "@commitlint/types": 19.8.1 semver: 7.7.2 - '@commitlint/lint@19.8.1': + "@commitlint/lint@19.8.1": dependencies: - '@commitlint/is-ignored': 19.8.1 - '@commitlint/parse': 19.8.1 - '@commitlint/rules': 19.8.1 - '@commitlint/types': 19.8.1 + "@commitlint/is-ignored": 19.8.1 + "@commitlint/parse": 19.8.1 + "@commitlint/rules": 19.8.1 + "@commitlint/types": 19.8.1 - '@commitlint/load@19.8.1(@types/node@22.15.33)(typescript@5.8.3)': + "@commitlint/load@19.8.1(@types/node@22.15.33)(typescript@5.8.3)": dependencies: - '@commitlint/config-validator': 19.8.1 - '@commitlint/execute-rule': 19.8.1 - '@commitlint/resolve-extends': 19.8.1 - '@commitlint/types': 19.8.1 + "@commitlint/config-validator": 19.8.1 + "@commitlint/execute-rule": 19.8.1 + "@commitlint/resolve-extends": 19.8.1 + "@commitlint/types": 19.8.1 chalk: 5.4.1 cosmiconfig: 9.0.0(typescript@5.8.3) cosmiconfig-typescript-loader: 6.1.0(@types/node@22.15.33)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3) @@ -3729,143 +6024,143 @@ snapshots: lodash.merge: 4.6.2 lodash.uniq: 4.5.0 transitivePeerDependencies: - - '@types/node' + - "@types/node" - typescript - '@commitlint/message@19.8.1': {} + "@commitlint/message@19.8.1": {} - '@commitlint/parse@19.8.1': + "@commitlint/parse@19.8.1": dependencies: - '@commitlint/types': 19.8.1 + "@commitlint/types": 19.8.1 conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 - '@commitlint/read@19.8.1': + "@commitlint/read@19.8.1": dependencies: - '@commitlint/top-level': 19.8.1 - '@commitlint/types': 19.8.1 + "@commitlint/top-level": 19.8.1 + "@commitlint/types": 19.8.1 git-raw-commits: 4.0.0 minimist: 1.2.8 tinyexec: 1.0.1 - '@commitlint/resolve-extends@19.8.1': + "@commitlint/resolve-extends@19.8.1": dependencies: - '@commitlint/config-validator': 19.8.1 - '@commitlint/types': 19.8.1 + "@commitlint/config-validator": 19.8.1 + "@commitlint/types": 19.8.1 global-directory: 4.0.1 import-meta-resolve: 4.1.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 - '@commitlint/rules@19.8.1': + "@commitlint/rules@19.8.1": dependencies: - '@commitlint/ensure': 19.8.1 - '@commitlint/message': 19.8.1 - '@commitlint/to-lines': 19.8.1 - '@commitlint/types': 19.8.1 + "@commitlint/ensure": 19.8.1 + "@commitlint/message": 19.8.1 + "@commitlint/to-lines": 19.8.1 + "@commitlint/types": 19.8.1 - '@commitlint/to-lines@19.8.1': {} + "@commitlint/to-lines@19.8.1": {} - '@commitlint/top-level@19.8.1': + "@commitlint/top-level@19.8.1": dependencies: find-up: 7.0.0 - '@commitlint/types@19.8.1': + "@commitlint/types@19.8.1": dependencies: - '@types/conventional-commits-parser': 5.0.1 + "@types/conventional-commits-parser": 5.0.1 chalk: 5.4.1 - '@esbuild/aix-ppc64@0.21.5': + "@esbuild/aix-ppc64@0.21.5": optional: true - '@esbuild/android-arm64@0.21.5': + "@esbuild/android-arm64@0.21.5": optional: true - '@esbuild/android-arm@0.21.5': + "@esbuild/android-arm@0.21.5": optional: true - '@esbuild/android-x64@0.21.5': + "@esbuild/android-x64@0.21.5": optional: true - '@esbuild/darwin-arm64@0.21.5': + "@esbuild/darwin-arm64@0.21.5": optional: true - '@esbuild/darwin-x64@0.21.5': + "@esbuild/darwin-x64@0.21.5": optional: true - '@esbuild/freebsd-arm64@0.21.5': + "@esbuild/freebsd-arm64@0.21.5": optional: true - '@esbuild/freebsd-x64@0.21.5': + "@esbuild/freebsd-x64@0.21.5": optional: true - '@esbuild/linux-arm64@0.21.5': + "@esbuild/linux-arm64@0.21.5": optional: true - '@esbuild/linux-arm@0.21.5': + "@esbuild/linux-arm@0.21.5": optional: true - '@esbuild/linux-ia32@0.21.5': + "@esbuild/linux-ia32@0.21.5": optional: true - '@esbuild/linux-loong64@0.21.5': + "@esbuild/linux-loong64@0.21.5": optional: true - '@esbuild/linux-mips64el@0.21.5': + "@esbuild/linux-mips64el@0.21.5": optional: true - '@esbuild/linux-ppc64@0.21.5': + "@esbuild/linux-ppc64@0.21.5": optional: true - '@esbuild/linux-riscv64@0.21.5': + "@esbuild/linux-riscv64@0.21.5": optional: true - '@esbuild/linux-s390x@0.21.5': + "@esbuild/linux-s390x@0.21.5": optional: true - '@esbuild/linux-x64@0.21.5': + "@esbuild/linux-x64@0.21.5": optional: true - '@esbuild/netbsd-x64@0.21.5': + "@esbuild/netbsd-x64@0.21.5": optional: true - '@esbuild/openbsd-x64@0.21.5': + "@esbuild/openbsd-x64@0.21.5": optional: true - '@esbuild/sunos-x64@0.21.5': + "@esbuild/sunos-x64@0.21.5": optional: true - '@esbuild/win32-arm64@0.21.5': + "@esbuild/win32-arm64@0.21.5": optional: true - '@esbuild/win32-ia32@0.21.5': + "@esbuild/win32-ia32@0.21.5": optional: true - '@esbuild/win32-x64@0.21.5': + "@esbuild/win32-x64@0.21.5": optional: true - '@floating-ui/core@1.7.1': + "@floating-ui/core@1.7.1": dependencies: - '@floating-ui/utils': 0.2.9 + "@floating-ui/utils": 0.2.9 - '@floating-ui/dom@1.7.1': + "@floating-ui/dom@1.7.1": dependencies: - '@floating-ui/core': 1.7.1 - '@floating-ui/utils': 0.2.9 + "@floating-ui/core": 1.7.1 + "@floating-ui/utils": 0.2.9 - '@floating-ui/utils@0.2.9': {} + "@floating-ui/utils@0.2.9": {} - '@internationalized/number@3.6.3': + "@internationalized/number@3.6.3": dependencies: - '@swc/helpers': 0.5.17 + "@swc/helpers": 0.5.17 - '@isaacs/balanced-match@4.0.1': {} + "@isaacs/balanced-match@4.0.1": {} - '@isaacs/brace-expansion@5.0.0': + "@isaacs/brace-expansion@5.0.0": dependencies: - '@isaacs/balanced-match': 4.0.1 + "@isaacs/balanced-match": 4.0.1 - '@isaacs/cliui@8.0.2': + "@isaacs/cliui@8.0.2": dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 @@ -3874,49 +6169,49 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@isaacs/fs-minipass@4.0.1': + "@isaacs/fs-minipass@4.0.1": dependencies: minipass: 7.1.2 - '@istanbuljs/schema@0.1.3': {} + "@istanbuljs/schema@0.1.3": {} - '@jridgewell/resolve-uri@3.1.2': {} + "@jridgewell/resolve-uri@3.1.2": {} - '@jridgewell/sourcemap-codec@1.5.0': {} + "@jridgewell/sourcemap-codec@1.5.0": {} - '@jridgewell/trace-mapping@0.3.25': + "@jridgewell/trace-mapping@0.3.25": dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 + "@jridgewell/resolve-uri": 3.1.2 + "@jridgewell/sourcemap-codec": 1.5.0 - '@lit-labs/observers@2.0.5': + "@lit-labs/observers@2.0.5": dependencies: - '@lit/reactive-element': 2.1.0 + "@lit/reactive-element": 2.1.0 lit-html: 3.3.0 - '@lit-labs/ssr-dom-shim@1.3.0': {} + "@lit-labs/ssr-dom-shim@1.3.0": {} - '@lit/reactive-element@2.1.0': + "@lit/reactive-element@2.1.0": dependencies: - '@lit-labs/ssr-dom-shim': 1.3.0 + "@lit-labs/ssr-dom-shim": 1.3.0 - '@manypkg/find-root@1.1.0': + "@manypkg/find-root@1.1.0": dependencies: - '@babel/runtime': 7.27.6 - '@types/node': 12.20.55 + "@babel/runtime": 7.27.6 + "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 - '@manypkg/get-packages@1.1.3': + "@manypkg/get-packages@1.1.3": dependencies: - '@babel/runtime': 7.27.6 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 + "@babel/runtime": 7.27.6 + "@changesets/types": 4.1.0 + "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 - '@mapbox/node-pre-gyp@2.0.0': + "@mapbox/node-pre-gyp@2.0.0": dependencies: consola: 3.4.2 detect-libc: 2.0.4 @@ -3929,90 +6224,90 @@ snapshots: - encoding - supports-color - '@modelcontextprotocol/sdk@0.5.0': + "@modelcontextprotocol/sdk@0.5.0": dependencies: content-type: 1.0.5 raw-body: 3.0.0 zod: 3.25.76 - '@moonrepo/cli@1.39.1': + "@moonrepo/cli@1.39.1": dependencies: detect-libc: 2.0.4 optionalDependencies: - '@moonrepo/core-linux-arm64-gnu': 1.39.1 - '@moonrepo/core-linux-arm64-musl': 1.39.1 - '@moonrepo/core-linux-x64-gnu': 1.39.1 - '@moonrepo/core-linux-x64-musl': 1.39.1 - '@moonrepo/core-macos-arm64': 1.39.1 - '@moonrepo/core-macos-x64': 1.39.1 - '@moonrepo/core-windows-x64-msvc': 1.39.1 - - '@moonrepo/core-linux-arm64-gnu@1.39.1': + "@moonrepo/core-linux-arm64-gnu": 1.39.1 + "@moonrepo/core-linux-arm64-musl": 1.39.1 + "@moonrepo/core-linux-x64-gnu": 1.39.1 + "@moonrepo/core-linux-x64-musl": 1.39.1 + "@moonrepo/core-macos-arm64": 1.39.1 + "@moonrepo/core-macos-x64": 1.39.1 + "@moonrepo/core-windows-x64-msvc": 1.39.1 + + "@moonrepo/core-linux-arm64-gnu@1.39.1": optional: true - '@moonrepo/core-linux-arm64-musl@1.39.1': + "@moonrepo/core-linux-arm64-musl@1.39.1": optional: true - '@moonrepo/core-linux-x64-gnu@1.39.1': + "@moonrepo/core-linux-x64-gnu@1.39.1": optional: true - '@moonrepo/core-linux-x64-musl@1.39.1': + "@moonrepo/core-linux-x64-musl@1.39.1": optional: true - '@moonrepo/core-macos-arm64@1.39.1': + "@moonrepo/core-macos-arm64@1.39.1": optional: true - '@moonrepo/core-macos-x64@1.39.1': + "@moonrepo/core-macos-x64@1.39.1": optional: true - '@moonrepo/core-windows-x64-msvc@1.39.1': + "@moonrepo/core-windows-x64-msvc@1.39.1": optional: true - '@next/env@14.2.30': {} + "@next/env@14.2.30": {} - '@next/swc-darwin-arm64@14.2.30': + "@next/swc-darwin-arm64@14.2.30": optional: true - '@next/swc-darwin-x64@14.2.30': + "@next/swc-darwin-x64@14.2.30": optional: true - '@next/swc-linux-arm64-gnu@14.2.30': + "@next/swc-linux-arm64-gnu@14.2.30": optional: true - '@next/swc-linux-arm64-musl@14.2.30': + "@next/swc-linux-arm64-musl@14.2.30": optional: true - '@next/swc-linux-x64-gnu@14.2.30': + "@next/swc-linux-x64-gnu@14.2.30": optional: true - '@next/swc-linux-x64-musl@14.2.30': + "@next/swc-linux-x64-musl@14.2.30": optional: true - '@next/swc-win32-arm64-msvc@14.2.30': + "@next/swc-win32-arm64-msvc@14.2.30": optional: true - '@next/swc-win32-ia32-msvc@14.2.30': + "@next/swc-win32-ia32-msvc@14.2.30": optional: true - '@next/swc-win32-x64-msvc@14.2.30': + "@next/swc-win32-x64-msvc@14.2.30": optional: true - '@nodelib/fs.scandir@2.1.5': + "@nodelib/fs.scandir@2.1.5": dependencies: - '@nodelib/fs.stat': 2.0.5 + "@nodelib/fs.stat": 2.0.5 run-parallel: 1.2.0 - '@nodelib/fs.stat@2.0.5': {} + "@nodelib/fs.stat@2.0.5": {} - '@nodelib/fs.walk@1.2.8': + "@nodelib/fs.walk@1.2.8": dependencies: - '@nodelib/fs.scandir': 2.1.5 + "@nodelib/fs.scandir": 2.1.5 fastq: 1.19.1 - '@npmcli/config@8.3.4': + "@npmcli/config@8.3.4": dependencies: - '@npmcli/map-workspaces': 3.0.6 - '@npmcli/package-json': 5.2.1 + "@npmcli/map-workspaces": 3.0.6 + "@npmcli/package-json": 5.2.1 ci-info: 4.2.0 ini: 4.1.3 nopt: 7.2.1 @@ -4022,9 +6317,9 @@ snapshots: transitivePeerDependencies: - bluebird - '@npmcli/git@5.0.8': + "@npmcli/git@5.0.8": dependencies: - '@npmcli/promise-spawn': 7.0.2 + "@npmcli/promise-spawn": 7.0.2 ini: 4.1.3 lru-cache: 10.4.3 npm-pick-manifest: 9.1.0 @@ -4036,18 +6331,18 @@ snapshots: transitivePeerDependencies: - bluebird - '@npmcli/map-workspaces@3.0.6': + "@npmcli/map-workspaces@3.0.6": dependencies: - '@npmcli/name-from-folder': 2.0.0 + "@npmcli/name-from-folder": 2.0.0 glob: 10.4.5 minimatch: 9.0.5 read-package-json-fast: 3.0.2 - '@npmcli/name-from-folder@2.0.0': {} + "@npmcli/name-from-folder@2.0.0": {} - '@npmcli/package-json@5.2.1': + "@npmcli/package-json@5.2.1": dependencies: - '@npmcli/git': 5.0.8 + "@npmcli/git": 5.0.8 glob: 10.4.5 hosted-git-info: 7.0.2 json-parse-even-better-errors: 3.0.2 @@ -4057,362 +6352,362 @@ snapshots: transitivePeerDependencies: - bluebird - '@npmcli/promise-spawn@7.0.2': + "@npmcli/promise-spawn@7.0.2": dependencies: which: 4.0.0 - '@pkgjs/parseargs@0.11.0': + "@pkgjs/parseargs@0.11.0": optional: true - '@rollup/pluginutils@5.2.0(rollup@4.44.1)': + "@rollup/pluginutils@5.2.0(rollup@4.44.1)": dependencies: - '@types/estree': 1.0.8 + "@types/estree": 1.0.8 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: rollup: 4.44.1 - '@rollup/rollup-android-arm-eabi@4.44.1': + "@rollup/rollup-android-arm-eabi@4.44.1": optional: true - '@rollup/rollup-android-arm64@4.44.1': + "@rollup/rollup-android-arm64@4.44.1": optional: true - '@rollup/rollup-darwin-arm64@4.44.1': + "@rollup/rollup-darwin-arm64@4.44.1": optional: true - '@rollup/rollup-darwin-x64@4.44.1': + "@rollup/rollup-darwin-x64@4.44.1": optional: true - '@rollup/rollup-freebsd-arm64@4.44.1': + "@rollup/rollup-freebsd-arm64@4.44.1": optional: true - '@rollup/rollup-freebsd-x64@4.44.1': + "@rollup/rollup-freebsd-x64@4.44.1": optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.44.1': + "@rollup/rollup-linux-arm-gnueabihf@4.44.1": optional: true - '@rollup/rollup-linux-arm-musleabihf@4.44.1': + "@rollup/rollup-linux-arm-musleabihf@4.44.1": optional: true - '@rollup/rollup-linux-arm64-gnu@4.44.1': + "@rollup/rollup-linux-arm64-gnu@4.44.1": optional: true - '@rollup/rollup-linux-arm64-musl@4.44.1': + "@rollup/rollup-linux-arm64-musl@4.44.1": optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.44.1': + "@rollup/rollup-linux-loongarch64-gnu@4.44.1": optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.44.1': + "@rollup/rollup-linux-powerpc64le-gnu@4.44.1": optional: true - '@rollup/rollup-linux-riscv64-gnu@4.44.1': + "@rollup/rollup-linux-riscv64-gnu@4.44.1": optional: true - '@rollup/rollup-linux-riscv64-musl@4.44.1': + "@rollup/rollup-linux-riscv64-musl@4.44.1": optional: true - '@rollup/rollup-linux-s390x-gnu@4.44.1': + "@rollup/rollup-linux-s390x-gnu@4.44.1": optional: true - '@rollup/rollup-linux-x64-gnu@4.44.1': + "@rollup/rollup-linux-x64-gnu@4.44.1": optional: true - '@rollup/rollup-linux-x64-musl@4.44.1': + "@rollup/rollup-linux-x64-musl@4.44.1": optional: true - '@rollup/rollup-win32-arm64-msvc@4.44.1': + "@rollup/rollup-win32-arm64-msvc@4.44.1": optional: true - '@rollup/rollup-win32-ia32-msvc@4.44.1': + "@rollup/rollup-win32-ia32-msvc@4.44.1": optional: true - '@rollup/rollup-win32-x64-msvc@4.44.1': + "@rollup/rollup-win32-x64-msvc@4.44.1": optional: true - '@sindresorhus/is@4.6.0': {} + "@sindresorhus/is@4.6.0": {} - '@sindresorhus/merge-streams@2.3.0': {} + "@sindresorhus/merge-streams@2.3.0": {} - '@spectrum-css/icon@9.1.0(@spectrum-css/tokens@14.6.0)': + "@spectrum-css/icon@9.1.0(@spectrum-css/tokens@14.6.0)": optionalDependencies: - '@spectrum-css/tokens': 14.6.0 + "@spectrum-css/tokens": 14.6.0 - '@spectrum-css/link@5.2.0(@spectrum-css/tokens@14.6.0)': + "@spectrum-css/link@5.2.0(@spectrum-css/tokens@14.6.0)": dependencies: - '@spectrum-css/tokens': 14.6.0 + "@spectrum-css/tokens": 14.6.0 - '@spectrum-css/page@8.2.1(@spectrum-css/tokens@14.6.0)': + "@spectrum-css/page@8.2.1(@spectrum-css/tokens@14.6.0)": dependencies: - '@spectrum-css/tokens': 14.6.0 + "@spectrum-css/tokens": 14.6.0 - '@spectrum-css/sidenav@5.2.0(@spectrum-css/icon@9.1.0(@spectrum-css/tokens@14.6.0))(@spectrum-css/tokens@14.6.0)': + "@spectrum-css/sidenav@5.2.0(@spectrum-css/icon@9.1.0(@spectrum-css/tokens@14.6.0))(@spectrum-css/tokens@14.6.0)": dependencies: - '@spectrum-css/tokens': 14.6.0 + "@spectrum-css/tokens": 14.6.0 optionalDependencies: - '@spectrum-css/icon': 9.1.0(@spectrum-css/tokens@14.6.0) + "@spectrum-css/icon": 9.1.0(@spectrum-css/tokens@14.6.0) - '@spectrum-css/table@6.2.0(@spectrum-css/icon@9.1.0(@spectrum-css/tokens@14.6.0))(@spectrum-css/tokens@14.6.0)': + "@spectrum-css/table@6.2.0(@spectrum-css/icon@9.1.0(@spectrum-css/tokens@14.6.0))(@spectrum-css/tokens@14.6.0)": dependencies: - '@spectrum-css/icon': 9.1.0(@spectrum-css/tokens@14.6.0) - '@spectrum-css/tokens': 14.6.0 + "@spectrum-css/icon": 9.1.0(@spectrum-css/tokens@14.6.0) + "@spectrum-css/tokens": 14.6.0 - '@spectrum-css/tokens@14.6.0': {} + "@spectrum-css/tokens@14.6.0": {} - '@spectrum-css/typography@6.2.0(@spectrum-css/tokens@14.6.0)': + "@spectrum-css/typography@6.2.0(@spectrum-css/tokens@14.6.0)": dependencies: - '@spectrum-css/tokens': 14.6.0 + "@spectrum-css/tokens": 14.6.0 - '@spectrum-web-components/action-button@0.49.0': + "@spectrum-web-components/action-button@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/button': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/icons-ui': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/button": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/icons-ui": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/alert-banner@0.49.0': + "@spectrum-web-components/alert-banner@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/button': 0.49.0 - '@spectrum-web-components/icons-workflow': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/button": 0.49.0 + "@spectrum-web-components/icons-workflow": 0.49.0 - '@spectrum-web-components/base@0.49.0': + "@spectrum-web-components/base@0.49.0": dependencies: lit: 3.3.0 - '@spectrum-web-components/button-group@0.49.0': + "@spectrum-web-components/button-group@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/button': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/button": 0.49.0 - '@spectrum-web-components/button@0.49.0': + "@spectrum-web-components/button@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/clear-button': 0.49.0 - '@spectrum-web-components/close-button': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/icons-ui': 0.49.0 - '@spectrum-web-components/progress-circle': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/clear-button": 0.49.0 + "@spectrum-web-components/close-button": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/icons-ui": 0.49.0 + "@spectrum-web-components/progress-circle": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/checkbox@0.49.0': + "@spectrum-web-components/checkbox@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/icons-ui': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/icons-ui": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/clear-button@0.49.0': + "@spectrum-web-components/clear-button@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 + "@spectrum-web-components/base": 0.49.0 - '@spectrum-web-components/close-button@0.49.0': + "@spectrum-web-components/close-button@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 + "@spectrum-web-components/base": 0.49.0 - '@spectrum-web-components/field-group@0.49.0': + "@spectrum-web-components/field-group@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/help-text': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/help-text": 0.49.0 - '@spectrum-web-components/field-label@0.49.0': + "@spectrum-web-components/field-label@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/icons-ui': 0.49.0 - '@spectrum-web-components/reactive-controllers': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/icons-ui": 0.49.0 + "@spectrum-web-components/reactive-controllers": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/help-text@0.49.0': + "@spectrum-web-components/help-text@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/icons-workflow': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/icons-workflow": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/icon@0.49.0': + "@spectrum-web-components/icon@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/iconset': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/iconset": 0.49.0 - '@spectrum-web-components/icons-ui@0.49.0': + "@spectrum-web-components/icons-ui@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/iconset': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/iconset": 0.49.0 - '@spectrum-web-components/icons-workflow@0.49.0': + "@spectrum-web-components/icons-workflow@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 - '@spectrum-web-components/iconset@0.49.0': + "@spectrum-web-components/iconset@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 + "@spectrum-web-components/base": 0.49.0 - '@spectrum-web-components/infield-button@0.49.0': + "@spectrum-web-components/infield-button@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/button': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/button": 0.49.0 - '@spectrum-web-components/link@0.49.0': + "@spectrum-web-components/link@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/number-field@0.49.0': + "@spectrum-web-components/number-field@0.49.0": dependencies: - '@internationalized/number': 3.6.3 - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/icons-ui': 0.49.0 - '@spectrum-web-components/infield-button': 0.49.0 - '@spectrum-web-components/reactive-controllers': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 - '@spectrum-web-components/textfield': 0.49.0 + "@internationalized/number": 3.6.3 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/icons-ui": 0.49.0 + "@spectrum-web-components/infield-button": 0.49.0 + "@spectrum-web-components/reactive-controllers": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 + "@spectrum-web-components/textfield": 0.49.0 - '@spectrum-web-components/overlay@0.49.0': + "@spectrum-web-components/overlay@0.49.0": dependencies: - '@floating-ui/dom': 1.7.1 - '@floating-ui/utils': 0.2.9 - '@spectrum-web-components/action-button': 0.49.0 - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/reactive-controllers': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 - '@spectrum-web-components/theme': 0.49.0 + "@floating-ui/dom": 1.7.1 + "@floating-ui/utils": 0.2.9 + "@spectrum-web-components/action-button": 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/reactive-controllers": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 + "@spectrum-web-components/theme": 0.49.0 - '@spectrum-web-components/popover@0.49.0': + "@spectrum-web-components/popover@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/overlay': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/overlay": 0.49.0 - '@spectrum-web-components/progress-circle@0.49.0': + "@spectrum-web-components/progress-circle@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/reactive-controllers@0.49.0': + "@spectrum-web-components/reactive-controllers@0.49.0": dependencies: lit: 3.3.0 - '@spectrum-web-components/search@0.49.0': + "@spectrum-web-components/search@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/button': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/icons-workflow': 0.49.0 - '@spectrum-web-components/textfield': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/button": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/icons-workflow": 0.49.0 + "@spectrum-web-components/textfield": 0.49.0 - '@spectrum-web-components/shared@0.49.0': + "@spectrum-web-components/shared@0.49.0": dependencies: - '@lit-labs/observers': 2.0.5 - '@spectrum-web-components/base': 0.49.0 + "@lit-labs/observers": 2.0.5 + "@spectrum-web-components/base": 0.49.0 focus-visible: 5.2.1 - '@spectrum-web-components/slider@0.49.0': + "@spectrum-web-components/slider@0.49.0": dependencies: - '@internationalized/number': 3.6.3 - '@lit-labs/observers': 2.0.5 - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/field-label': 0.49.0 - '@spectrum-web-components/number-field': 0.49.0 - '@spectrum-web-components/reactive-controllers': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 - '@spectrum-web-components/theme': 0.49.0 + "@internationalized/number": 3.6.3 + "@lit-labs/observers": 2.0.5 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/field-label": 0.49.0 + "@spectrum-web-components/number-field": 0.49.0 + "@spectrum-web-components/reactive-controllers": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 + "@spectrum-web-components/theme": 0.49.0 - '@spectrum-web-components/styles@0.49.0': + "@spectrum-web-components/styles@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 + "@spectrum-web-components/base": 0.49.0 - '@spectrum-web-components/switch@0.49.0': + "@spectrum-web-components/switch@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/checkbox': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/checkbox": 0.49.0 - '@spectrum-web-components/textfield@0.49.0': + "@spectrum-web-components/textfield@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/help-text': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/icons-ui': 0.49.0 - '@spectrum-web-components/icons-workflow': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/help-text": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/icons-ui": 0.49.0 + "@spectrum-web-components/icons-workflow": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/theme@0.49.0': + "@spectrum-web-components/theme@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/styles': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/styles": 0.49.0 - '@spectrum-web-components/toast@0.49.0': + "@spectrum-web-components/toast@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/button': 0.49.0 - '@spectrum-web-components/icon': 0.49.0 - '@spectrum-web-components/icons-workflow': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/button": 0.49.0 + "@spectrum-web-components/icon": 0.49.0 + "@spectrum-web-components/icons-workflow": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@spectrum-web-components/tooltip@0.49.0': + "@spectrum-web-components/tooltip@0.49.0": dependencies: - '@spectrum-web-components/base': 0.49.0 - '@spectrum-web-components/overlay': 0.49.0 - '@spectrum-web-components/reactive-controllers': 0.49.0 - '@spectrum-web-components/shared': 0.49.0 + "@spectrum-web-components/base": 0.49.0 + "@spectrum-web-components/overlay": 0.49.0 + "@spectrum-web-components/reactive-controllers": 0.49.0 + "@spectrum-web-components/shared": 0.49.0 - '@swc/counter@0.1.3': {} + "@swc/counter@0.1.3": {} - '@swc/helpers@0.5.17': + "@swc/helpers@0.5.17": dependencies: tslib: 2.8.1 - '@swc/helpers@0.5.5': + "@swc/helpers@0.5.5": dependencies: - '@swc/counter': 0.1.3 + "@swc/counter": 0.1.3 tslib: 2.8.1 - '@types/concat-stream@2.0.3': + "@types/concat-stream@2.0.3": dependencies: - '@types/node': 22.15.33 + "@types/node": 22.15.33 - '@types/conventional-commits-parser@5.0.1': + "@types/conventional-commits-parser@5.0.1": dependencies: - '@types/node': 22.15.33 + "@types/node": 22.15.33 - '@types/debug@4.1.12': + "@types/debug@4.1.12": dependencies: - '@types/ms': 2.1.0 + "@types/ms": 2.1.0 - '@types/estree@1.0.8': {} + "@types/estree@1.0.8": {} - '@types/is-empty@1.2.3': {} + "@types/is-empty@1.2.3": {} - '@types/istanbul-lib-coverage@2.0.6': {} + "@types/istanbul-lib-coverage@2.0.6": {} - '@types/mdast@4.0.4': + "@types/mdast@4.0.4": dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 - '@types/ms@2.1.0': {} + "@types/ms@2.1.0": {} - '@types/node@12.20.55': {} + "@types/node@12.20.55": {} - '@types/node@22.15.33': + "@types/node@22.15.33": dependencies: undici-types: 6.21.0 - '@types/supports-color@8.1.3': {} + "@types/supports-color@8.1.3": {} - '@types/text-table@0.2.5': {} + "@types/text-table@0.2.5": {} - '@types/trusted-types@2.0.7': {} + "@types/trusted-types@2.0.7": {} - '@types/unist@3.0.3': {} + "@types/unist@3.0.3": {} - '@vercel/nft@0.29.4(rollup@4.44.1)': + "@vercel/nft@0.29.4(rollup@4.44.1)": dependencies: - '@mapbox/node-pre-gyp': 2.0.0 - '@rollup/pluginutils': 5.2.0(rollup@4.44.1) + "@mapbox/node-pre-gyp": 2.0.0 + "@rollup/pluginutils": 5.2.0(rollup@4.44.1) acorn: 8.15.0 acorn-import-attributes: 1.9.5(acorn@8.15.0) async-sema: 3.1.1 @@ -4511,7 +6806,7 @@ snapshots: ava@6.4.0(rollup@4.44.1): dependencies: - '@vercel/nft': 0.29.4(rollup@4.44.1) + "@vercel/nft": 0.29.4(rollup@4.44.1) acorn: 8.15.0 acorn-walk: 8.3.4 ansi-styles: 6.2.1 @@ -4590,8 +6885,8 @@ snapshots: c8@10.1.3: dependencies: - '@bcoe/v8-coverage': 1.0.2 - '@istanbuljs/schema': 0.1.3 + "@bcoe/v8-coverage": 1.0.2 + "@istanbuljs/schema": 0.1.3 find-up: 5.0.0 foreground-child: 3.3.1 istanbul-lib-coverage: 3.2.2 @@ -4798,7 +7093,7 @@ snapshots: cosmiconfig-typescript-loader@6.1.0(@types/node@22.15.33)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3): dependencies: - '@types/node': 22.15.33 + "@types/node": 22.15.33 cosmiconfig: 9.0.0(typescript@5.8.3) jiti: 2.4.2 typescript: 5.8.3 @@ -5058,29 +7353,29 @@ snapshots: esbuild@0.21.5: optionalDependencies: - '@esbuild/aix-ppc64': 0.21.5 - '@esbuild/android-arm': 0.21.5 - '@esbuild/android-arm64': 0.21.5 - '@esbuild/android-x64': 0.21.5 - '@esbuild/darwin-arm64': 0.21.5 - '@esbuild/darwin-x64': 0.21.5 - '@esbuild/freebsd-arm64': 0.21.5 - '@esbuild/freebsd-x64': 0.21.5 - '@esbuild/linux-arm': 0.21.5 - '@esbuild/linux-arm64': 0.21.5 - '@esbuild/linux-ia32': 0.21.5 - '@esbuild/linux-loong64': 0.21.5 - '@esbuild/linux-mips64el': 0.21.5 - '@esbuild/linux-ppc64': 0.21.5 - '@esbuild/linux-riscv64': 0.21.5 - '@esbuild/linux-s390x': 0.21.5 - '@esbuild/linux-x64': 0.21.5 - '@esbuild/netbsd-x64': 0.21.5 - '@esbuild/openbsd-x64': 0.21.5 - '@esbuild/sunos-x64': 0.21.5 - '@esbuild/win32-arm64': 0.21.5 - '@esbuild/win32-ia32': 0.21.5 - '@esbuild/win32-x64': 0.21.5 + "@esbuild/aix-ppc64": 0.21.5 + "@esbuild/android-arm": 0.21.5 + "@esbuild/android-arm64": 0.21.5 + "@esbuild/android-x64": 0.21.5 + "@esbuild/darwin-arm64": 0.21.5 + "@esbuild/darwin-x64": 0.21.5 + "@esbuild/freebsd-arm64": 0.21.5 + "@esbuild/freebsd-x64": 0.21.5 + "@esbuild/linux-arm": 0.21.5 + "@esbuild/linux-arm64": 0.21.5 + "@esbuild/linux-ia32": 0.21.5 + "@esbuild/linux-loong64": 0.21.5 + "@esbuild/linux-mips64el": 0.21.5 + "@esbuild/linux-ppc64": 0.21.5 + "@esbuild/linux-riscv64": 0.21.5 + "@esbuild/linux-s390x": 0.21.5 + "@esbuild/linux-x64": 0.21.5 + "@esbuild/netbsd-x64": 0.21.5 + "@esbuild/openbsd-x64": 0.21.5 + "@esbuild/sunos-x64": 0.21.5 + "@esbuild/win32-arm64": 0.21.5 + "@esbuild/win32-ia32": 0.21.5 + "@esbuild/win32-x64": 0.21.5 escalade@3.2.0: {} @@ -5128,8 +7423,8 @@ snapshots: fast-glob@3.3.3: dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 + "@nodelib/fs.stat": 2.0.5 + "@nodelib/fs.walk": 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.8 @@ -5264,7 +7559,7 @@ snapshots: globby@14.1.0: dependencies: - '@sindresorhus/merge-streams': 2.3.0 + "@sindresorhus/merge-streams": 2.3.0 fast-glob: 3.3.3 ignore: 7.0.5 path-type: 6.0.0 @@ -5420,13 +7715,13 @@ snapshots: jackspeak@3.4.3: dependencies: - '@isaacs/cliui': 8.0.2 + "@isaacs/cliui": 8.0.2 optionalDependencies: - '@pkgjs/parseargs': 0.11.0 + "@pkgjs/parseargs": 0.11.0 jackspeak@4.1.1: dependencies: - '@isaacs/cliui': 8.0.2 + "@isaacs/cliui": 8.0.2 jiti@2.4.2: {} @@ -5499,17 +7794,17 @@ snapshots: lit-element@4.2.0: dependencies: - '@lit-labs/ssr-dom-shim': 1.3.0 - '@lit/reactive-element': 2.1.0 + "@lit-labs/ssr-dom-shim": 1.3.0 + "@lit/reactive-element": 2.1.0 lit-html: 3.3.0 lit-html@3.3.0: dependencies: - '@types/trusted-types': 2.0.7 + "@types/trusted-types": 2.0.7 lit@3.3.0: dependencies: - '@lit/reactive-element': 2.1.0 + "@lit/reactive-element": 2.1.0 lit-element: 4.2.0 lit-html: 3.3.0 @@ -5517,7 +7812,7 @@ snapshots: load-plugin@6.0.3: dependencies: - '@npmcli/config': 8.3.4 + "@npmcli/config": 8.3.4 import-meta-resolve: 4.1.0 transitivePeerDependencies: - bluebird @@ -5594,15 +7889,15 @@ snapshots: mdast-util-find-and-replace@3.0.2: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 escape-string-regexp: 5.0.0 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 mdast-util-from-markdown@2.0.2: dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 + "@types/mdast": 4.0.4 + "@types/unist": 3.0.3 decode-named-character-reference: 1.2.0 devlop: 1.1.0 mdast-util-to-string: 4.0.0 @@ -5618,7 +7913,7 @@ snapshots: mdast-util-gfm-autolink-literal@2.0.1: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 ccount: 2.0.1 devlop: 1.1.0 mdast-util-find-and-replace: 3.0.2 @@ -5626,7 +7921,7 @@ snapshots: mdast-util-gfm-footnote@2.1.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 @@ -5636,7 +7931,7 @@ snapshots: mdast-util-gfm-strikethrough@2.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: @@ -5644,7 +7939,7 @@ snapshots: mdast-util-gfm-table@2.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 markdown-table: 3.0.4 mdast-util-from-markdown: 2.0.2 @@ -5654,7 +7949,7 @@ snapshots: mdast-util-gfm-task-list-item@2.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.2 mdast-util-to-markdown: 2.1.2 @@ -5675,13 +7970,13 @@ snapshots: mdast-util-phrasing@4.1.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 unist-util-is: 6.0.0 mdast-util-to-markdown@2.1.2: dependencies: - '@types/mdast': 4.0.4 - '@types/unist': 3.0.3 + "@types/mdast": 4.0.4 + "@types/unist": 3.0.3 longest-streak: 3.1.0 mdast-util-phrasing: 4.1.0 mdast-util-to-string: 4.0.0 @@ -5692,7 +7987,7 @@ snapshots: mdast-util-to-string@4.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 memoize@10.1.0: dependencies: @@ -5875,7 +8170,7 @@ snapshots: micromark@4.0.2: dependencies: - '@types/debug': 4.1.12 + "@types/debug": 4.1.12 debug: 4.4.1 decode-named-character-reference: 1.2.0 devlop: 1.1.0 @@ -5906,7 +8201,7 @@ snapshots: minimatch@10.0.3: dependencies: - '@isaacs/brace-expansion': 5.0.0 + "@isaacs/brace-expansion": 5.0.0 minimatch@9.0.5: dependencies: @@ -5932,8 +8227,8 @@ snapshots: next@14.2.30(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@next/env': 14.2.30 - '@swc/helpers': 0.5.5 + "@next/env": 14.2.30 + "@swc/helpers": 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001726 graceful-fs: 4.2.11 @@ -5942,17 +8237,17 @@ snapshots: react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.1(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 14.2.30 - '@next/swc-darwin-x64': 14.2.30 - '@next/swc-linux-arm64-gnu': 14.2.30 - '@next/swc-linux-arm64-musl': 14.2.30 - '@next/swc-linux-x64-gnu': 14.2.30 - '@next/swc-linux-x64-musl': 14.2.30 - '@next/swc-win32-arm64-msvc': 14.2.30 - '@next/swc-win32-ia32-msvc': 14.2.30 - '@next/swc-win32-x64-msvc': 14.2.30 + "@next/swc-darwin-arm64": 14.2.30 + "@next/swc-darwin-x64": 14.2.30 + "@next/swc-linux-arm64-gnu": 14.2.30 + "@next/swc-linux-arm64-musl": 14.2.30 + "@next/swc-linux-x64-gnu": 14.2.30 + "@next/swc-linux-x64-musl": 14.2.30 + "@next/swc-win32-arm64-msvc": 14.2.30 + "@next/swc-win32-ia32-msvc": 14.2.30 + "@next/swc-win32-x64-msvc": 14.2.30 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" - babel-plugin-macros nixt@0.5.1: @@ -5970,7 +8265,7 @@ snapshots: node-emoji@2.2.0: dependencies: - '@sindresorhus/is': 4.6.0 + "@sindresorhus/is": 4.6.0 char-regex: 1.0.2 emojilib: 2.4.0 skin-tone: 2.0.0 @@ -6097,14 +8392,14 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.27.1 + "@babel/code-frame": 7.27.1 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 parse-json@7.1.1: dependencies: - '@babel/code-frame': 7.27.1 + "@babel/code-frame": 7.27.1 error-ex: 1.3.2 json-parse-even-better-errors: 3.0.2 lines-and-columns: 2.0.4 @@ -6244,7 +8539,7 @@ snapshots: remark-gfm@4.0.1: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-gfm: 3.1.0 micromark-extension-gfm: 3.0.0 remark-parse: 11.0.0 @@ -6255,7 +8550,7 @@ snapshots: remark-github@12.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-find-and-replace: 3.0.2 mdast-util-to-string: 4.0.0 to-vfile: 8.0.0 @@ -6264,7 +8559,7 @@ snapshots: remark-parse@11.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-from-markdown: 2.0.2 micromark-util-types: 2.0.2 unified: 11.0.5 @@ -6273,13 +8568,13 @@ snapshots: remark-stringify@11.0.0: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 mdast-util-to-markdown: 2.1.2 unified: 11.0.5 remark@15.0.1: dependencies: - '@types/mdast': 4.0.4 + "@types/mdast": 4.0.4 remark-parse: 11.0.0 remark-stringify: 11.0.0 unified: 11.0.5 @@ -6318,28 +8613,28 @@ snapshots: rollup@4.44.1: dependencies: - '@types/estree': 1.0.8 + "@types/estree": 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.44.1 - '@rollup/rollup-android-arm64': 4.44.1 - '@rollup/rollup-darwin-arm64': 4.44.1 - '@rollup/rollup-darwin-x64': 4.44.1 - '@rollup/rollup-freebsd-arm64': 4.44.1 - '@rollup/rollup-freebsd-x64': 4.44.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.44.1 - '@rollup/rollup-linux-arm-musleabihf': 4.44.1 - '@rollup/rollup-linux-arm64-gnu': 4.44.1 - '@rollup/rollup-linux-arm64-musl': 4.44.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.44.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.44.1 - '@rollup/rollup-linux-riscv64-gnu': 4.44.1 - '@rollup/rollup-linux-riscv64-musl': 4.44.1 - '@rollup/rollup-linux-s390x-gnu': 4.44.1 - '@rollup/rollup-linux-x64-gnu': 4.44.1 - '@rollup/rollup-linux-x64-musl': 4.44.1 - '@rollup/rollup-win32-arm64-msvc': 4.44.1 - '@rollup/rollup-win32-ia32-msvc': 4.44.1 - '@rollup/rollup-win32-x64-msvc': 4.44.1 + "@rollup/rollup-android-arm-eabi": 4.44.1 + "@rollup/rollup-android-arm64": 4.44.1 + "@rollup/rollup-darwin-arm64": 4.44.1 + "@rollup/rollup-darwin-x64": 4.44.1 + "@rollup/rollup-freebsd-arm64": 4.44.1 + "@rollup/rollup-freebsd-x64": 4.44.1 + "@rollup/rollup-linux-arm-gnueabihf": 4.44.1 + "@rollup/rollup-linux-arm-musleabihf": 4.44.1 + "@rollup/rollup-linux-arm64-gnu": 4.44.1 + "@rollup/rollup-linux-arm64-musl": 4.44.1 + "@rollup/rollup-linux-loongarch64-gnu": 4.44.1 + "@rollup/rollup-linux-powerpc64le-gnu": 4.44.1 + "@rollup/rollup-linux-riscv64-gnu": 4.44.1 + "@rollup/rollup-linux-riscv64-musl": 4.44.1 + "@rollup/rollup-linux-s390x-gnu": 4.44.1 + "@rollup/rollup-linux-x64-gnu": 4.44.1 + "@rollup/rollup-linux-x64-musl": 4.44.1 + "@rollup/rollup-win32-arm64-msvc": 4.44.1 + "@rollup/rollup-win32-ia32-msvc": 4.44.1 + "@rollup/rollup-win32-x64-msvc": 4.44.1 fsevents: 2.3.3 run-parallel@1.2.0: @@ -6527,7 +8822,7 @@ snapshots: tar@7.4.3: dependencies: - '@isaacs/fs-minipass': 4.0.1 + "@isaacs/fs-minipass": 4.0.1 chownr: 3.0.0 minipass: 7.1.2 minizlib: 3.0.2 @@ -6540,7 +8835,7 @@ snapshots: test-exclude@7.0.1: dependencies: - '@istanbuljs/schema': 0.1.3 + "@istanbuljs/schema": 0.1.3 glob: 10.4.5 minimatch: 9.0.5 @@ -6607,7 +8902,7 @@ snapshots: unified-args@11.0.1: dependencies: - '@types/text-table': 0.2.5 + "@types/text-table": 0.2.5 chalk: 5.4.1 chokidar: 3.6.0 comma-separated-tokens: 2.0.3 @@ -6622,11 +8917,11 @@ snapshots: unified-engine@11.2.2: dependencies: - '@types/concat-stream': 2.0.3 - '@types/debug': 4.1.12 - '@types/is-empty': 1.2.3 - '@types/node': 22.15.33 - '@types/unist': 3.0.3 + "@types/concat-stream": 2.0.3 + "@types/debug": 4.1.12 + "@types/is-empty": 1.2.3 + "@types/node": 22.15.33 + "@types/unist": 3.0.3 concat-stream: 2.0.0 debug: 4.4.1 extend: 3.0.2 @@ -6649,7 +8944,7 @@ snapshots: unified@11.0.5: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 bail: 2.0.2 devlop: 1.1.0 extend: 3.0.2 @@ -6659,24 +8954,24 @@ snapshots: unist-util-inspect@8.1.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-is@6.0.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-stringify-position@4.0.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-visit-parents@6.0.1: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-is: 6.0.0 unist-util-visit@5.0.0: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 @@ -6700,8 +8995,8 @@ snapshots: v8-to-istanbul@9.3.0: dependencies: - '@jridgewell/trace-mapping': 0.3.25 - '@types/istanbul-lib-coverage': 2.0.6 + "@jridgewell/trace-mapping": 0.3.25 + "@types/istanbul-lib-coverage": 2.0.6 convert-source-map: 2.0.0 validate-npm-package-license@3.0.4: @@ -6713,12 +9008,12 @@ snapshots: vfile-message@4.0.3: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 unist-util-stringify-position: 4.0.0 vfile-reporter@8.1.1: dependencies: - '@types/supports-color': 8.1.3 + "@types/supports-color": 8.1.3 string-width: 6.1.0 supports-color: 9.4.0 unist-util-stringify-position: 4.0.0 @@ -6739,7 +9034,7 @@ snapshots: vfile@6.0.3: dependencies: - '@types/unist': 3.0.3 + "@types/unist": 3.0.3 vfile-message: 4.0.3 vite@5.4.19(@types/node@22.15.33): @@ -6748,7 +9043,7 @@ snapshots: postcss: 8.5.6 rollup: 4.44.1 optionalDependencies: - '@types/node': 22.15.33 + "@types/node": 22.15.33 fsevents: 2.3.3 walk-up-path@3.0.1: {} diff --git a/tools/changeset-linter/CHANGELOG.md b/tools/changeset-linter/CHANGELOG.md index acb100bf..89eceeba 100644 --- a/tools/changeset-linter/CHANGELOG.md +++ b/tools/changeset-linter/CHANGELOG.md @@ -4,7 +4,7 @@ ### Patch Changes -- [#582](https://github.com/adobe/spectrum-tokens/pull/582) [`a0a188e`](https://github.com/adobe/spectrum-tokens/commit/a0a188ec8ff8a7a3cc554c14487569a9eb4ba31e) Thanks [@GarthDB](https://github.com/GarthDB)! - fix(changeset-linter): add pattern recognition for component schema diff reports +- [#582](https://github.com/adobe/spectrum-design-data/pull/582) [`a0a188e`](https://github.com/adobe/spectrum-design-data/commit/a0a188ec8ff8a7a3cc554c14487569a9eb4ba31e) Thanks [@GarthDB](https://github.com/GarthDB)! - fix(changeset-linter): add pattern recognition for component schema diff reports - Add `## Component Schema Diff Report` pattern to exempt component diff sections from length limits - Add `Generated using @adobe/spectrum-component-diff-generator` pattern for tool-generated content - Ensures changesets with automated diff reports don't trigger false positive length warnings diff --git a/tools/component-diff-generator/CHANGELOG.md b/tools/component-diff-generator/CHANGELOG.md index 72aca048..6e1131c3 100644 --- a/tools/component-diff-generator/CHANGELOG.md +++ b/tools/component-diff-generator/CHANGELOG.md @@ -4,7 +4,7 @@ ### Minor Changes -- [#613](https://github.com/adobe/spectrum-tokens/pull/613) [`433efdd`](https://github.com/adobe/spectrum-tokens/commit/433efdd18f9b0842ae55acac3cd0fbc1e5e5db58) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(component-diff): enhance property change descriptions +- [#613](https://github.com/adobe/spectrum-design-data/pull/613) [`433efdd`](https://github.com/adobe/spectrum-design-data/commit/433efdd18f9b0842ae55acac3cd0fbc1e5e5db58) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(component-diff): enhance property change descriptions Improves diff reporting with clear change descriptions instead of confusing "deleted + added" reports. Fixes incorrect breaking change classification. @@ -18,7 +18,7 @@ ### Patch Changes -- [#613](https://github.com/adobe/spectrum-tokens/pull/613) [`433efdd`](https://github.com/adobe/spectrum-tokens/commit/433efdd18f9b0842ae55acac3cd0fbc1e5e5db58) Thanks [@GarthDB](https://github.com/GarthDB)! - fix(component-diff): correctly identify property updates vs deletions +- [#613](https://github.com/adobe/spectrum-design-data/pull/613) [`433efdd`](https://github.com/adobe/spectrum-design-data/commit/433efdd18f9b0842ae55acac3cd0fbc1e5e5db58) Thanks [@GarthDB](https://github.com/GarthDB)! - fix(component-diff): correctly identify property updates vs deletions Fixes issue where removing `default: null` values and updating enum arrays were incorrectly reported as property deletions (breaking changes) instead of @@ -38,7 +38,7 @@ ### Patch Changes -- [`50a6e4b`](https://github.com/adobe/spectrum-tokens/commit/50a6e4b265a1cd9da47563b4cac4456c6781ffcc) Thanks [@GarthDB](https://github.com/GarthDB)! - Fix null data handling in markdown report generation +- [`50a6e4b`](https://github.com/adobe/spectrum-design-data/commit/50a6e4b265a1cd9da47563b4cac4456c6781ffcc) Thanks [@GarthDB](https://github.com/GarthDB)! - Fix null data handling in markdown report generation Improve error handling in generateMarkdownReport function to properly validate diffResult input and prevent "Cannot read properties of null" errors during CI diff report generation. This fixes failures in the changeset release process when generating component schema diff reports. @@ -46,14 +46,14 @@ ### Patch Changes -- Updated dependencies [[`2a137c3`](https://github.com/adobe/spectrum-tokens/commit/2a137c376bd1b7a4cc445db6bb70d8466389d5e6)]: +- Updated dependencies [[`2a137c3`](https://github.com/adobe/spectrum-design-data/commit/2a137c376bd1b7a4cc445db6bb70d8466389d5e6)]: - @adobe/spectrum-diff-core@1.1.1 ## 1.3.0 ### Minor Changes -- [`6fe3d3a`](https://github.com/adobe/spectrum-tokens/commit/6fe3d3a64e0da4e07cef86e70590b5af65a70470) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(diff-tools): improve error handling and GitHub PR comment format +- [`6fe3d3a`](https://github.com/adobe/spectrum-design-data/commit/6fe3d3a64e0da4e07cef86e70590b5af65a70470) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(diff-tools): improve error handling and GitHub PR comment format - Align component diff generator GitHub PR comment format with token diff style - Add comprehensive error handling and test coverage for both tools - Improve reliability and developer experience with consistent tooling @@ -62,7 +62,7 @@ ### Minor Changes -- [#577](https://github.com/adobe/spectrum-tokens/pull/577) [`e4053fb`](https://github.com/adobe/spectrum-tokens/commit/e4053fb7a92c000c6c6efde1766766e8fa6aa0d2) Thanks [@GarthDB](https://github.com/GarthDB)! - **feat(diff-tools): improve error handling and GitHub PR comment format** +- [#577](https://github.com/adobe/spectrum-design-data/pull/577) [`e4053fb`](https://github.com/adobe/spectrum-design-data/commit/e4053fb7a92c000c6c6efde1766766e8fa6aa0d2) Thanks [@GarthDB](https://github.com/GarthDB)! - **feat(diff-tools): improve error handling and GitHub PR comment format** This update significantly improves both diff tools with better error handling, comprehensive test coverage, and enhanced GitHub PR comment formatting. @@ -112,7 +112,7 @@ ### Minor Changes -- [#573](https://github.com/adobe/spectrum-tokens/pull/573) [`cd74579`](https://github.com/adobe/spectrum-tokens/commit/cd745798b88a137ee6fac8734cc872626fd09060) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(tools): add component schema diff generator with shared core library +- [#573](https://github.com/adobe/spectrum-design-data/pull/573) [`cd74579`](https://github.com/adobe/spectrum-design-data/commit/cd745798b88a137ee6fac8734cc872626fd09060) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(tools): add component schema diff generator with shared core library **New Tools:** - `@adobe/spectrum-component-diff-generator` - CLI tool for comparing component schemas between versions/branches @@ -143,5 +143,5 @@ ### Patch Changes -- Updated dependencies [[`cd74579`](https://github.com/adobe/spectrum-tokens/commit/cd745798b88a137ee6fac8734cc872626fd09060)]: +- Updated dependencies [[`cd74579`](https://github.com/adobe/spectrum-design-data/commit/cd745798b88a137ee6fac8734cc872626fd09060)]: - @adobe/spectrum-diff-core@1.1.0 diff --git a/tools/diff-generator/CHANGELOG.md b/tools/diff-generator/CHANGELOG.md index 83a43642..2d6dac91 100644 --- a/tools/diff-generator/CHANGELOG.md +++ b/tools/diff-generator/CHANGELOG.md @@ -4,14 +4,14 @@ ### Patch Changes -- Updated dependencies [[`2a137c3`](https://github.com/adobe/spectrum-tokens/commit/2a137c376bd1b7a4cc445db6bb70d8466389d5e6)]: +- Updated dependencies [[`2a137c3`](https://github.com/adobe/spectrum-design-data/commit/2a137c376bd1b7a4cc445db6bb70d8466389d5e6)]: - @adobe/spectrum-diff-core@1.1.1 ## 2.5.0 ### Minor Changes -- [`6fe3d3a`](https://github.com/adobe/spectrum-tokens/commit/6fe3d3a64e0da4e07cef86e70590b5af65a70470) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(diff-tools): improve error handling and GitHub PR comment format +- [`6fe3d3a`](https://github.com/adobe/spectrum-design-data/commit/6fe3d3a64e0da4e07cef86e70590b5af65a70470) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(diff-tools): improve error handling and GitHub PR comment format - Align component diff generator GitHub PR comment format with token diff style - Add comprehensive error handling and test coverage for both tools - Improve reliability and developer experience with consistent tooling @@ -20,7 +20,7 @@ ### Minor Changes -- [#577](https://github.com/adobe/spectrum-tokens/pull/577) [`e4053fb`](https://github.com/adobe/spectrum-tokens/commit/e4053fb7a92c000c6c6efde1766766e8fa6aa0d2) Thanks [@GarthDB](https://github.com/GarthDB)! - **feat(diff-tools): improve error handling and GitHub PR comment format** +- [#577](https://github.com/adobe/spectrum-design-data/pull/577) [`e4053fb`](https://github.com/adobe/spectrum-design-data/commit/e4053fb7a92c000c6c6efde1766766e8fa6aa0d2) Thanks [@GarthDB](https://github.com/GarthDB)! - **feat(diff-tools): improve error handling and GitHub PR comment format** This update significantly improves both diff tools with better error handling, comprehensive test coverage, and enhanced GitHub PR comment formatting. @@ -70,14 +70,14 @@ ### Patch Changes -- Updated dependencies [[`cd74579`](https://github.com/adobe/spectrum-tokens/commit/cd745798b88a137ee6fac8734cc872626fd09060)]: +- Updated dependencies [[`cd74579`](https://github.com/adobe/spectrum-design-data/commit/cd745798b88a137ee6fac8734cc872626fd09060)]: - @adobe/spectrum-diff-core@1.1.0 ## 2.3.0 ### Minor Changes -- [#549](https://github.com/adobe/spectrum-tokens/pull/549) [`32db4f1`](https://github.com/adobe/spectrum-tokens/commit/32db4f1de2c6895b2fca7144add7978b751c87a0) Thanks [@GarthDB](https://github.com/GarthDB)! - **Performance Optimization: Introduce High-Performance Diff Algorithm** +- [#549](https://github.com/adobe/spectrum-design-data/pull/549) [`32db4f1`](https://github.com/adobe/spectrum-design-data/commit/32db4f1de2c6895b2fca7144add7978b751c87a0) Thanks [@GarthDB](https://github.com/GarthDB)! - **Performance Optimization: Introduce High-Performance Diff Algorithm** This release introduces significant performance improvements to the token diff generation process: @@ -107,20 +107,20 @@ ### Patch Changes -- Updated dependencies [[`32db4f1`](https://github.com/adobe/spectrum-tokens/commit/32db4f1de2c6895b2fca7144add7978b751c87a0)]: +- Updated dependencies [[`32db4f1`](https://github.com/adobe/spectrum-design-data/commit/32db4f1de2c6895b2fca7144add7978b751c87a0)]: - @adobe/optimized-diff@2.0.0 ## 2.2.1 ### Patch Changes -- [#542](https://github.com/adobe/spectrum-tokens/pull/542) [`0086702`](https://github.com/adobe/spectrum-tokens/commit/0086702ff124460246a0d2cb166e96552d852d11) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed missing github-api-key.js file in published package. +- [#542](https://github.com/adobe/spectrum-design-data/pull/542) [`0086702`](https://github.com/adobe/spectrum-design-data/commit/0086702ff124460246a0d2cb166e96552d852d11) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed missing github-api-key.js file in published package. ## 2.2.0 ### Minor Changes -- [#540](https://github.com/adobe/spectrum-tokens/pull/540) [`47692c3`](https://github.com/adobe/spectrum-tokens/commit/47692c3d3a1bc388ce02f098aef491277e08779d) Thanks [@GarthDB](https://github.com/GarthDB)! - # Improve code quality and developer experience +- [#540](https://github.com/adobe/spectrum-design-data/pull/540) [`47692c3`](https://github.com/adobe/spectrum-design-data/commit/47692c3d3a1bc388ce02f098aef491277e08779d) Thanks [@GarthDB](https://github.com/GarthDB)! - # Improve code quality and developer experience - Remove unused dependencies (`emojilib`, `inquirer`, `tar`, `tmp-promise`) reducing package size - Add comprehensive ESLint configuration with enhanced error detection and auto-fixing - Replace experimental JSON imports with standard approach to eliminate Node.js warnings @@ -136,7 +136,7 @@ ### Minor Changes -- [#530](https://github.com/adobe/spectrum-tokens/pull/530) [`9b891f8`](https://github.com/adobe/spectrum-tokens/commit/9b891f86b0162144f2be614cec55bfa23b6bf041) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(diff-generator): add Handlebars formatter support with templates +- [#530](https://github.com/adobe/spectrum-design-data/pull/530) [`9b891f8`](https://github.com/adobe/spectrum-design-data/commit/9b891f86b0162144f2be614cec55bfa23b6bf041) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(diff-generator): add Handlebars formatter support with templates Added comprehensive Handlebars support to the token diff generator: - **New Handlebars formatter**: Added `formatterHandlebars.js` with support for custom template rendering @@ -155,7 +155,7 @@ ### Major Changes -- [`312a3d2`](https://github.com/adobe/spectrum-tokens/commit/312a3d263bb0d72cd40db180a19c4d5282d5649d) Thanks [@GarthDB](https://github.com/GarthDB)! - The latest version of [commander](https://www.npmjs.com/package/commander) requires that each option short flag can only consist of a single character. +- [`312a3d2`](https://github.com/adobe/spectrum-design-data/commit/312a3d263bb0d72cd40db180a19c4d5282d5649d) Thanks [@GarthDB](https://github.com/GarthDB)! - The latest version of [commander](https://www.npmjs.com/package/commander) requires that each option short flag can only consist of a single character. Changes: @@ -172,7 +172,7 @@ ### Minor Changes -- [#443](https://github.com/adobe/spectrum-tokens/pull/443) [`b371af5`](https://github.com/adobe/spectrum-tokens/commit/b371af50645fe04ef4aef286b7350e3113a4ff3a) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Format and output command line options added. +- [#443](https://github.com/adobe/spectrum-design-data/pull/443) [`b371af5`](https://github.com/adobe/spectrum-design-data/commit/b371af50645fe04ef4aef286b7350e3113a4ff3a) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - Format and output command line options added. ``` Options: @@ -194,34 +194,34 @@ ### Minor Changes -- [`254ba19`](https://github.com/adobe/spectrum-tokens/commit/254ba1927b78d8c5cefbdb4fe35f3aff162efaee) Thanks [@GarthDB](https://github.com/GarthDB)! - minor fixes to diff tool comparisons +- [`254ba19`](https://github.com/adobe/spectrum-design-data/commit/254ba1927b78d8c5cefbdb4fe35f3aff162efaee) Thanks [@GarthDB](https://github.com/GarthDB)! - minor fixes to diff tool comparisons ## 1.1.2 ### Patch Changes -- [#430](https://github.com/adobe/spectrum-tokens/pull/430) [`fccd972`](https://github.com/adobe/spectrum-tokens/commit/fccd97294e300ff6e755334c3bff83da0caf1247) Thanks [@GarthDB](https://github.com/GarthDB)! - Fix version number in cli using a prepare script in the package.json file +- [#430](https://github.com/adobe/spectrum-design-data/pull/430) [`fccd972`](https://github.com/adobe/spectrum-design-data/commit/fccd97294e300ff6e755334c3bff83da0caf1247) Thanks [@GarthDB](https://github.com/GarthDB)! - Fix version number in cli using a prepare script in the package.json file ## 1.1.1 ### Patch Changes -- [#423](https://github.com/adobe/spectrum-tokens/pull/423) [`9a36be0`](https://github.com/adobe/spectrum-tokens/commit/9a36be01e5c0305dea7d8d9bdbd33c86d9a53399) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed issue when version number was hardcoded. +- [#423](https://github.com/adobe/spectrum-design-data/pull/423) [`9a36be0`](https://github.com/adobe/spectrum-design-data/commit/9a36be01e5c0305dea7d8d9bdbd33c86d9a53399) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed issue when version number was hardcoded. ## 1.1.0 ### Minor Changes -- [#407](https://github.com/adobe/spectrum-tokens/pull/407) [`c186fb8`](https://github.com/adobe/spectrum-tokens/commit/c186fb8e2129bc2f4e40aa00b06984b34cabe63b) Thanks [@GarthDB](https://github.com/GarthDB)! - Replaced --test with --local to make it easier to compare released changes with a local branch' +- [#407](https://github.com/adobe/spectrum-design-data/pull/407) [`c186fb8`](https://github.com/adobe/spectrum-design-data/commit/c186fb8e2129bc2f4e40aa00b06984b34cabe63b) Thanks [@GarthDB](https://github.com/GarthDB)! - Replaced --test with --local to make it easier to compare released changes with a local branch' ## 1.0.1 ### Patch Changes -- [#394](https://github.com/adobe/spectrum-tokens/pull/394) [`71b38bd`](https://github.com/adobe/spectrum-tokens/commit/71b38bd99262e707ba6333a4d14d1e90ab95d502) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed author +- [#394](https://github.com/adobe/spectrum-design-data/pull/394) [`71b38bd`](https://github.com/adobe/spectrum-design-data/commit/71b38bd99262e707ba6333a4d14d1e90ab95d502) Thanks [@GarthDB](https://github.com/GarthDB)! - Fixed author ## 1.0.0 ### Major Changes -- [#344](https://github.com/adobe/spectrum-tokens/pull/344) [`8a021e0`](https://github.com/adobe/spectrum-tokens/commit/8a021e0593d5d1bc190bbe6472747135f735791c) Thanks [@shirlsli](https://github.com/shirlsli)! - Initial release of the token diff generator library and cli +- [#344](https://github.com/adobe/spectrum-design-data/pull/344) [`8a021e0`](https://github.com/adobe/spectrum-design-data/commit/8a021e0593d5d1bc190bbe6472747135f735791c) Thanks [@shirlsli](https://github.com/shirlsli)! - Initial release of the token diff generator library and cli diff --git a/tools/diff-generator/src/lib/file-import.js b/tools/diff-generator/src/lib/file-import.js index 8556c969..0a196821 100644 --- a/tools/diff-generator/src/lib/file-import.js +++ b/tools/diff-generator/src/lib/file-import.js @@ -15,7 +15,7 @@ import path from "path"; import { glob } from "glob"; const source = "https://raw.githubusercontent.com/"; -const defaultRepo = "adobe/spectrum-tokens/"; +const defaultRepo = "adobe/spectrum-design-data/"; // ===== PHASE 1: PURE UTILITY FUNCTIONS (easily testable) ===== @@ -279,7 +279,7 @@ export class TokenLoader { return result; } catch (error) { - const repoInfo = givenRepo || "adobe/spectrum-tokens"; + const repoInfo = givenRepo || "adobe/spectrum-design-data"; const versionInfo = givenVersion ? `version ${givenVersion}` : `branch ${givenLocation || "main"}`; diff --git a/tools/diff-generator/test/fileImportMain.test.js b/tools/diff-generator/test/fileImportMain.test.js index 60264a64..370423a9 100644 --- a/tools/diff-generator/test/fileImportMain.test.js +++ b/tools/diff-generator/test/fileImportMain.test.js @@ -24,7 +24,7 @@ test("fileImport - default export function", async (t) => { ["color-palette.json"], // givenTokenNames - no src/ prefix (gets added automatically) null, // givenVersion "main", // givenLocation - use main branch - "adobe/spectrum-tokens", // givenRepo + "adobe/spectrum-design-data", // givenRepo null, // githubAPIKey ); @@ -38,7 +38,7 @@ test("fileImport - default export with version", async (t) => { ["color-palette.json"], // no src/ prefix "@adobe/spectrum-tokens@12.26.0", null, // givenLocation - "adobe/spectrum-tokens", + "adobe/spectrum-design-data", null, ); @@ -177,7 +177,7 @@ test("Integration - fileImport to loadLocalData workflow (coverage test)", async ["color-palette.json"], // no src/ prefix null, "main", - "adobe/spectrum-tokens", + "adobe/spectrum-design-data", null, ); diff --git a/tools/diff-generator/test/fileImportRefactored.test.js b/tools/diff-generator/test/fileImportRefactored.test.js index e009098e..767c3030 100644 --- a/tools/diff-generator/test/fileImportRefactored.test.js +++ b/tools/diff-generator/test/fileImportRefactored.test.js @@ -40,7 +40,7 @@ test("buildTokenURL - constructs URL with default repo", (t) => { const url = buildTokenURL("color-aliases.json", "v1.0.0", "main", ""); t.is( url, - "https://raw.githubusercontent.com/adobe/spectrum-tokens/v1.0.0/packages/tokens/color-aliases.json", + "https://raw.githubusercontent.com/adobe/spectrum-design-data/v1.0.0/packages/tokens/color-aliases.json", ); }); @@ -48,7 +48,7 @@ test("buildTokenURL - constructs URL with null repo", (t) => { const url = buildTokenURL("color-aliases.json", "v1.0.0", "main", null); t.is( url, - "https://raw.githubusercontent.com/adobe/spectrum-tokens/v1.0.0/packages/tokens/color-aliases.json", + "https://raw.githubusercontent.com/adobe/spectrum-design-data/v1.0.0/packages/tokens/color-aliases.json", ); }); diff --git a/tools/optimized-diff/CHANGELOG.md b/tools/optimized-diff/CHANGELOG.md index bde9e4ad..0ba3e9ed 100644 --- a/tools/optimized-diff/CHANGELOG.md +++ b/tools/optimized-diff/CHANGELOG.md @@ -4,7 +4,7 @@ ### Major Changes -- [#549](https://github.com/adobe/spectrum-tokens/pull/549) [`32db4f1`](https://github.com/adobe/spectrum-tokens/commit/32db4f1de2c6895b2fca7144add7978b751c87a0) Thanks [@GarthDB](https://github.com/GarthDB)! - **Performance Optimization: Introduce High-Performance Diff Algorithm** +- [#549](https://github.com/adobe/spectrum-design-data/pull/549) [`32db4f1`](https://github.com/adobe/spectrum-design-data/commit/32db4f1de2c6895b2fca7144add7978b751c87a0) Thanks [@GarthDB](https://github.com/GarthDB)! - **Performance Optimization: Introduce High-Performance Diff Algorithm** This release introduces significant performance improvements to the token diff generation process: diff --git a/tools/release-analyzer/CHANGELOG.md b/tools/release-analyzer/CHANGELOG.md index e661e84f..b4fd7df2 100644 --- a/tools/release-analyzer/CHANGELOG.md +++ b/tools/release-analyzer/CHANGELOG.md @@ -4,7 +4,7 @@ ### Minor Changes -- [#566](https://github.com/adobe/spectrum-tokens/pull/566) [`e0de953`](https://github.com/adobe/spectrum-tokens/commit/e0de953fb8ef5aba92782838094eeec3a4c78321) Thanks [@GarthDB](https://github.com/GarthDB)! - Add release timeline visualization and analysis tools for Spectrum Tokens change tracking. +- [#566](https://github.com/adobe/spectrum-design-data/pull/566) [`e0de953`](https://github.com/adobe/spectrum-design-data/commit/e0de953fb8ef5aba92782838094eeec3a4c78321) Thanks [@GarthDB](https://github.com/GarthDB)! - Add release timeline visualization and analysis tools for Spectrum Tokens change tracking. This adds new internal tooling for analyzing and visualizing the frequency and scope of Spectrum Tokens releases: - **Release Analyzer Tool** (`tools/release-analyzer/`): Parses git tags and CHANGELOG.md to extract release data and change scope metrics diff --git a/tools/spectrum-design-data-mcp/CHANGELOG.md b/tools/spectrum-design-data-mcp/CHANGELOG.md index 0e5ce3db..c7791f55 100644 --- a/tools/spectrum-design-data-mcp/CHANGELOG.md +++ b/tools/spectrum-design-data-mcp/CHANGELOG.md @@ -4,42 +4,49 @@ ### Patch Changes -* Updated dependencies \[[`ee2ceb5`](https://github.com/adobe/spectrum-tokens/commit/ee2ceb541dea5eb9b5267c861e44bfd804fd33a7)]: - * [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)@5.0.1 +* Updated dependencies \[[`ee2ceb5`](https://github.com/adobe/spectrum-design-data/commit/ee2ceb541dea5eb9b5267c861e44bfd804fd33a7)]: + * @adobe/spectrum-component-api-schemas@[5.0.1](https://github.com/adobe/spectrum-component-api-schemas/releases/tag/@adobe/spectrum-component-api-schemas@5.0.1) ## 1.0.10 ### Patch Changes -* Updated dependencies \[[`f64bee3`](https://github.com/adobe/spectrum-tokens/commit/f64bee3900c874775f2d3424516786a0d644d057)]: - * [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-tokens)@13.16.0 +* Updated dependencies \[[`f64bee3`](https://github.com/adobe/spectrum-design-data/commit/f64bee3900c874775f2d3424516786a0d644d057)]: + * @adobe/spectrum-tokens@[13.16.0](https://github.com/adobe/spectrum-design-data/releases/tag/@adobe/spectrum-tokens@13.16.0) + +## 1.0.10 + +### Patch Changes + +* Updated dependencies \[[`f64bee3`](https://github.com/adobe/spectrum-design-data/commit/f64bee3900c874775f2d3424516786a0d644d057)]: + * @adobe/spectrum-tokens@[13.16.0](https://github.com/adobe/spectrum-design-data/releases/tag/@adobe/spectrum-tokens@13.16.0) ## 1.0.9 ### Patch Changes -* Updated dependencies \[[`a772572`](https://github.com/adobe/spectrum-tokens/commit/a772572de88c54d279c20d7148f6ac91eb941d2a)]: - * [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)@5.0.0 +* Updated dependencies \[[`a772572`](https://github.com/adobe/spectrum-design-data/commit/a772572de88c54d279c20d7148f6ac91eb941d2a)]: + * @adobe/spectrum-component-api-schemas@[5.0.0](https://github.com/adobe/spectrum-component-api-schemas/releases/tag/@adobe/spectrum-component-api-schemas@5.0.0) ## 1.0.8 ### Patch Changes -* Updated dependencies \[[`433efdd`](https://github.com/adobe/spectrum-tokens/commit/433efdd18f9b0842ae55acac3cd0fbc1e5e5db58)]: - * [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)@4.0.0 +* Updated dependencies \[[`433efdd`](https://github.com/adobe/spectrum-design-data/commit/433efdd18f9b0842ae55acac3cd0fbc1e5e5db58)]: + * [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)[**@4**](https://github.com/4).0.0 ## 1.0.7 ### Patch Changes -* Updated dependencies \[[`13d9202`](https://github.com/adobe/spectrum-tokens/commit/13d920273c02c78d3748522de6a7c7ee39b39814)]: - * [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)@3.0.0 +* Updated dependencies \[[`13d9202`](https://github.com/adobe/spectrum-design-data/commit/13d920273c02c78d3748522de6a7c7ee39b39814)]: + * [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)[**@3**](https://github.com/3).0.0 ## 1.0.6 ### Patch Changes -* [#595](https://github.com/adobe/spectrum-tokens/pull/595) [`53bc11e`](https://github.com/adobe/spectrum-tokens/commit/53bc11e1bfcc3a839cfc5dfbd63f59cc5e87a1c3) Thanks [@GarthDB](https://github.com/GarthDB)! - Enhanced documentation with security and configuration improvements +* [#595](https://github.com/adobe/spectrum-design-data/pull/595) [`53bc11e`](https://github.com/adobe/spectrum-design-data/commit/53bc11e1bfcc3a839cfc5dfbd63f59cc5e87a1c3) Thanks [@GarthDB](https://github.com/GarthDB)! - Enhanced documentation with security and configuration improvements * Add multiple MCP configuration options including recommended npx usage * Add npm provenance support for enhanced supply-chain security @@ -55,42 +62,42 @@ ### Patch Changes -* Updated dependencies \[[`1e860c4`](https://github.com/adobe/spectrum-tokens/commit/1e860c4436c58ceca6f4500ea7e24d6d8cdd20c8)]: - * [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-tokens)@13.15.1 +* Updated dependencies \[[`1e860c4`](https://github.com/adobe/spectrum-design-data/commit/1e860c4436c58ceca6f4500ea7e24d6d8cdd20c8)]: + * @adobe/spectrum-tokens@[13.15.1](https://github.com/adobe/spectrum-design-data/releases/tag/@adobe/spectrum-tokens@13.15.1) ## 1.0.4 ### Patch Changes -* Updated dependencies \[[`3df7197`](https://github.com/adobe/spectrum-tokens/commit/3df7197e7da23c9bb107f7dfcd935b5c62a86041)]: - * [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-tokens)@13.15.0 +* Updated dependencies \[[`3df7197`](https://github.com/adobe/spectrum-design-data/commit/3df7197e7da23c9bb107f7dfcd935b5c62a86041)]: + * @adobe/spectrum-tokens@[13.15.0](https://github.com/adobe/spectrum-design-data/releases/tag/@adobe/spectrum-tokens@13.15.0) ## 1.0.3 ### Patch Changes -* Updated dependencies \[[`b4df84e`](https://github.com/adobe/spectrum-tokens/commit/b4df84e2f2ca246332907f9ddda94438288dd98e)]: - * [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-tokens)@13.14.1 +* Updated dependencies \[[`b4df84e`](https://github.com/adobe/spectrum-design-data/commit/b4df84e2f2ca246332907f9ddda94438288dd98e)]: + * @adobe/spectrum-tokens@[13.14.1](https://github.com/adobe/spectrum-design-data/releases/tag/@adobe/spectrum-tokens@13.14.1) ## 1.0.2 ### Patch Changes -* Updated dependencies \[[`336f672`](https://github.com/adobe/spectrum-tokens/commit/336f67216dfd875f0feb65c10059d9f3fe6dcaf7)]: - * [**@adobe/spectrum-tokens**](https://github.com/adobe/spectrum-tokens)@13.14.0 +* Updated dependencies \[[`336f672`](https://github.com/adobe/spectrum-design-data/commit/336f67216dfd875f0feb65c10059d9f3fe6dcaf7)]: + * @adobe/spectrum-tokens@[13.14.0](https://github.com/adobe/spectrum-design-data/releases/tag/@adobe/spectrum-tokens@13.14.0) ## 1.0.1 ### Patch Changes -* Updated dependencies \[[`163fe7c`](https://github.com/adobe/spectrum-tokens/commit/163fe7c13bb00c639d202195a398126b6c25b58f)]: - * [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)@2.0.0 +* Updated dependencies \[[`163fe7c`](https://github.com/adobe/spectrum-design-data/commit/163fe7c13bb00c639d202195a398126b6c25b58f)]: + * [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)[**@2**](https://github.com/2).0.0 ## 1.0.0 ### Major Changes -* [#568](https://github.com/adobe/spectrum-tokens/pull/568) [`34028ea`](https://github.com/adobe/spectrum-tokens/commit/34028eaf2ba3940baa8044fda2655adc6153fb97) Thanks [@GarthDB](https://github.com/GarthDB)! - Initial release of Spectrum Design Data MCP server +* [#568](https://github.com/adobe/spectrum-design-data/pull/568) [`34028ea`](https://github.com/adobe/spectrum-design-data/commit/34028eaf2ba3940baa8044fda2655adc6153fb97) Thanks [@GarthDB](https://github.com/GarthDB)! - Initial release of Spectrum Design Data MCP server This is the first release of the Model Context Protocol server that provides AI tools with structured access to Adobe Spectrum design system data, including design tokens and component API schemas. diff --git a/tools/spectrum-design-data-mcp/README.md b/tools/spectrum-design-data-mcp/README.md index 92b403ba..6a8cb7a6 100644 --- a/tools/spectrum-design-data-mcp/README.md +++ b/tools/spectrum-design-data-mcp/README.md @@ -6,13 +6,13 @@ A Model Context Protocol (MCP) server that provides AI tools with structured acc This MCP server enables AI assistants to query and interact with Spectrum design data through a standardized protocol. It provides access to: -- **Design Tokens**: Color palettes, typography, layout tokens, and semantic tokens -- **Component Schemas**: API definitions and validation schemas for Spectrum components -- **Future**: Component anatomy, design patterns, and guidelines +* **Design Tokens**: Color palettes, typography, layout tokens, and semantic tokens +* **Component Schemas**: API definitions and validation schemas for Spectrum components +* **Future**: Component anatomy, design patterns, and guidelines ## Prerequisites -- **Node.js 20+** +* **Node.js 20+** ## Installation @@ -31,7 +31,7 @@ npm audit signatures Or clone and run locally: ```bash -git clone https://github.com/adobe/spectrum-tokens.git +git clone https://github.com/adobe/spectrum-design-data.git cd spectrum-tokens/tools/spectrum-design-data-mcp pnpm install ``` @@ -54,20 +54,20 @@ The server runs locally and communicates via stdio with MCP-compatible AI client #### Token Tools -- **`query-tokens`**: Search and retrieve design tokens by name, type, or category -- **`find-tokens-by-use-case`** ⭐: Find appropriate tokens for specific component use cases (e.g., "button background", "text color", "error state") -- **`get-component-tokens`** ⭐: Get all tokens related to a specific component type -- **`get-design-recommendations`** ⭐: Get token recommendations for design decisions and component states -- **`get-token-categories`**: List all available token categories -- **`get-token-details`**: Get detailed information about a specific token +* **`query-tokens`**: Search and retrieve design tokens by name, type, or category +* **`find-tokens-by-use-case`** ⭐: Find appropriate tokens for specific component use cases (e.g., "button background", "text color", "error state") +* **`get-component-tokens`** ⭐: Get all tokens related to a specific component type +* **`get-design-recommendations`** ⭐: Get token recommendations for design decisions and component states +* **`get-token-categories`**: List all available token categories +* **`get-token-details`**: Get detailed information about a specific token #### Schema Tools -- **`query-component-schemas`**: Search component API schemas -- **`get-component-schema`**: Get the complete schema for a specific component -- **`list-components`**: List all available components with schemas -- **`validate-component-props`**: Validate component properties against schemas -- **`get-type-schemas`**: Get type definitions used in schemas +* **`query-component-schemas`**: Search component API schemas +* **`get-component-schema`**: Get the complete schema for a specific component +* **`list-components`**: List all available components with schemas +* **`validate-component-props`**: Validate component properties against schemas +* **`get-type-schemas`**: Get type definitions used in schemas ## Configuration @@ -253,7 +253,7 @@ npm audit ### Building from Source ```bash -git clone https://github.com/adobe/spectrum-tokens.git +git clone https://github.com/adobe/spectrum-design-data.git cd spectrum-tokens pnpm install cd tools/spectrum-design-data-mcp @@ -283,16 +283,16 @@ src/ ### Supply Chain Security -- **🔐 NPM Provenance**: Published with npm provenance attestations for verifiable builds -- **🛡️ Security Audits**: Regular dependency security audits -- **📦 Verified Packages**: All dependencies are audited and verified +* **🔐 NPM Provenance**: Published with npm provenance attestations for verifiable builds +* **🛡️ Security Audits**: Regular dependency security audits +* **📦 Verified Packages**: All dependencies are audited and verified ### Best Practices -- Always verify package integrity using `npm audit signatures` -- Keep the package updated to the latest version -- Use npx for the most secure and up-to-date execution -- Report security issues through the [GitHub security advisory](https://github.com/adobe/spectrum-tokens/security/advisories) +* Always verify package integrity using `npm audit signatures` +* Keep the package updated to the latest version +* Use npx for the most secure and up-to-date execution +* Report security issues through the [GitHub security advisory](https://github.com/adobe/spectrum-design-data/security/advisories) ## License @@ -304,6 +304,6 @@ This project is part of the Spectrum Design System. Please see the main [contrib ## Support -- Create an [issue](https://github.com/adobe/spectrum-tokens/issues) for bug reports or feature requests -- Check the [documentation](https://github.com/adobe/spectrum-tokens/tree/main/tools/spectrum-design-data-mcp) for detailed guides -- Review [existing issues](https://github.com/adobe/spectrum-tokens/issues?q=label%3Amcp) for solutions +* Create an [issue](https://github.com/adobe/spectrum-design-data/issues) for bug reports or feature requests +* Check the [documentation](https://github.com/adobe/spectrum-design-data/tree/main/tools/spectrum-design-data-mcp) for detailed guides +* Review [existing issues](https://github.com/adobe/spectrum-design-data/issues?q=label%3Amcp) for solutions diff --git a/tools/spectrum-diff-core/CHANGELOG.md b/tools/spectrum-diff-core/CHANGELOG.md index 346647a9..a462b0db 100644 --- a/tools/spectrum-diff-core/CHANGELOG.md +++ b/tools/spectrum-diff-core/CHANGELOG.md @@ -4,7 +4,7 @@ ### Patch Changes -- [`2a137c3`](https://github.com/adobe/spectrum-tokens/commit/2a137c376bd1b7a4cc445db6bb70d8466389d5e6) Thanks [@GarthDB](https://github.com/GarthDB)! - fix(ci): resolve GitHub Actions output formatting for empty diff reports +- [`2a137c3`](https://github.com/adobe/spectrum-design-data/commit/2a137c376bd1b7a4cc445db6bb70d8466389d5e6) Thanks [@GarthDB](https://github.com/GarthDB)! - fix(ci): resolve GitHub Actions output formatting for empty diff reports This patch ensures component diff workflows handle empty output correctly without causing EOF delimiter errors in GitHub Actions. @@ -12,7 +12,7 @@ ### Minor Changes -- [#573](https://github.com/adobe/spectrum-tokens/pull/573) [`cd74579`](https://github.com/adobe/spectrum-tokens/commit/cd745798b88a137ee6fac8734cc872626fd09060) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(tools): add component schema diff generator with shared core library +- [#573](https://github.com/adobe/spectrum-design-data/pull/573) [`cd74579`](https://github.com/adobe/spectrum-design-data/commit/cd745798b88a137ee6fac8734cc872626fd09060) Thanks [@GarthDB](https://github.com/GarthDB)! - feat(tools): add component schema diff generator with shared core library **New Tools:** - `@adobe/spectrum-component-diff-generator` - CLI tool for comparing component schemas between versions/branches diff --git a/tools/token-changeset-generator/CHANGELOG.md b/tools/token-changeset-generator/CHANGELOG.md index 0a8cb904..b154cf62 100644 --- a/tools/token-changeset-generator/CHANGELOG.md +++ b/tools/token-changeset-generator/CHANGELOG.md @@ -11,14 +11,14 @@ ### Patch Changes -- Updated dependencies [[`6fe3d3a`](https://github.com/adobe/spectrum-tokens/commit/6fe3d3a64e0da4e07cef86e70590b5af65a70470)]: +- Updated dependencies [[`6fe3d3a`](https://github.com/adobe/spectrum-design-data/commit/6fe3d3a64e0da4e07cef86e70590b5af65a70470)]: - @adobe/token-diff-generator@2.5.0 ## 0.2.2 ### Patch Changes -- Updated dependencies [[`e4053fb`](https://github.com/adobe/spectrum-tokens/commit/e4053fb7a92c000c6c6efde1766766e8fa6aa0d2)]: +- Updated dependencies [[`e4053fb`](https://github.com/adobe/spectrum-design-data/commit/e4053fb7a92c000c6c6efde1766766e8fa6aa0d2)]: - @adobe/token-diff-generator@2.4.0 ## 0.2.1 @@ -32,7 +32,7 @@ ### Minor Changes -- [#559](https://github.com/adobe/spectrum-tokens/pull/559) [`d77ced3`](https://github.com/adobe/spectrum-tokens/commit/d77ced33a56092e71a7d9d14c5768bb9bb295eeb) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - ## New Token Changeset Generator Tool +- [#559](https://github.com/adobe/spectrum-design-data/pull/559) [`d77ced3`](https://github.com/adobe/spectrum-design-data/commit/d77ced33a56092e71a7d9d14c5768bb9bb295eeb) Thanks [@mrcjhicks](https://github.com/mrcjhicks)! - ## New Token Changeset Generator Tool Added a new command line tool `@adobe/token-changeset-generator` to automate the creation of changeset files for Spectrum token changes synced from tokens studio. @@ -50,8 +50,8 @@ ```bash token-changeset generate \ - --tokens-studio-pr https://github.com/adobe/spectrum-tokens-studio-data/pull/275 \ - --spectrum-tokens-pr https://github.com/adobe/spectrum-tokens/pull/559 + --tokens-studio-pr https://github.com/adobe/spectrum-design-data-studio-data/pull/275 \ + --spectrum-tokens-pr https://github.com/adobe/spectrum-design-data/pull/559 ``` This tool streamlines the workflow for maintainers when syncing token changes from the design team's tokens studio data repository. diff --git a/tools/token-changeset-generator/README.md b/tools/token-changeset-generator/README.md index 8e750032..6cbd1de9 100644 --- a/tools/token-changeset-generator/README.md +++ b/tools/token-changeset-generator/README.md @@ -10,16 +10,16 @@ token-changeset generate --tokens-studio-pr --spectrum-tokens-pr